Commit Graph

105816 Commits

Author SHA1 Message Date
Tom Saeger
5989515b94 lib: trivial spelling fixes 2017-04-19 19:37:55 -05:00
aszlig
e662e035f9
nixos/systemd-boot-builder: Don't write .pyc files
This has surfaced since d990aa7163.

The "simpleUefiGummiboot" installer test fails since this commit,
because that commit introduced a small check to verify whether the store
was altered.

While installing NixOS for the first time, the store is usually in
/mnt/nix/store and without the read-only bind mount that's preventing
programs from altering the store.

So after nixos-install is done creating the system closure and setting
it as the active system profile, the bootloader is written from the
closure inside the chroot. The systemd-boot-builder is invoked during
this step, which adds .pyc files for various Python modules of the
Python 3 store path, which in turn invalidates the hash of the Python 3
store path itself.

At the time the system is booted up again, the nix-store is verified and
fails with something like this:

path /nix/store/zvm545rqc4d97caqq9h7344bnd06jhzb-python3-3.5.3 was
modified! expected hash
b2c975f4b8d197443fbb09690fb3f6545e165dd44c9309d7d6df2fce0579ebeb, got
bccca19f39c9d26d857ccf1fb72818b2b817967e6d497a25a1283e36ed0acf01

Running the interpreter with the -B argument prevents Python from
writing those byte code files:

https://docs.python.org/3/using/cmdline.html#cmdoption-B

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-20 00:37:02 +02:00
Joachim Fasting
0602b9d194
torbrowser: 6.5.1 -> 6.5.2 2017-04-20 00:21:43 +02:00
Joachim Fasting
9902d63e84
grsecurity: 4.9.22-201704120836 -> 4.9.23-201704181901 2017-04-20 00:21:41 +02:00
John Ericson
124c4b10c4 Merge pull request #25032 from dmjio/patch-1
Disable parallel building
2017-04-19 16:23:00 -04:00
David Johnson
d8e87fc0c4 Disable parallel building 2017-04-19 15:20:51 -05:00
Bjørn Forsman
ff252c799d Fix typo in comment 2017-04-19 20:30:44 +02:00
Benno Fünfstück
042e268612 Revert "aspell: only set ASPELL_CONF from NIX_PROFILES in wrapper if unset"
This reverts commit 399065f226.

I am blind, this was already checked above. Thanks @bjornfor for noticing.
2017-04-19 20:21:36 +02:00
Benno Fünfstück
149656581d Merge pull request #24601 from pbogdan/unclutter
unclutter: Fix default value of $DISPLAY
2017-04-19 18:40:43 +02:00
Thomas Tuegel
12a3590cc7 Merge pull request #25019 from peterhoeg/f/db
dropbox: use wmctrl from nixpkgs
2017-04-19 10:25:51 -05:00
Tim Steinbach
553bf09ba9 Merge pull request #25011 from benley/oraclejdk
oraclejdk: 8u121 -> 8u131
2017-04-19 11:24:50 -04:00
Benno Fünfstück
399065f226 aspell: only set ASPELL_CONF from NIX_PROFILES in wrapper if unset 2017-04-19 17:14:51 +02:00
Benno Fünfstück
792135a218 Merge pull request #24425 from lpenz/aspellconf
Set aspell's data-dir through ASPELL_CONF in a wrapper
2017-04-19 17:11:53 +02:00
Peter Hoeg
c4c33eaca1 dropbox: use wmctrl from nixpkgs 2017-04-19 20:56:18 +08:00
Jörg Thalheim
6bbc02589b Merge pull request #25003 from romildo/upd.greybird
greybird: 2017-02-26 -> 3.22.3
2017-04-19 14:01:50 +02:00
Jörg Thalheim
96260d6f09 Merge pull request #25017 from matthiasbeyer/update-mutt
mutt: 1.8.1 -> 1.8.2
2017-04-19 13:44:20 +02:00
Jörg Thalheim
465b484947 Merge pull request #25018 from armijnhemel/radare2
radare2: 1.3.0 -> 1.4.0
2017-04-19 13:40:18 +02:00
Armijn Hemel
192659af57 radare2: 1.3.0 -> 1.4.0 2017-04-19 12:23:45 +02:00
Matthias Beyer
2052ff856f mutt: 1.8.1 -> 1.8.2 2017-04-19 11:26:25 +02:00
Jörg Thalheim
3a8a027c44 Merge pull request #25013 from amiloradovsky/dale
dale: 20170416 -> 20170419
2017-04-19 10:22:16 +02:00
Jörg Thalheim
024cbbd520
iana-etc: 20170328 -> 20170417 2017-04-19 08:29:31 +02:00
Andrew Miloradovsky
30b774a5c7 dale: 20170416 -> 20170419
- now builds on x86-32 too (+ tests)
- fairer platforms declaration
- corrected the license information
2017-04-19 05:46:35 +00:00
Benjamin Staffin
ad0ad62c31
oraclejdk: 8u121 -> 8u131 2017-04-19 00:13:17 -04:00
aszlig
b017935103
vlc: Fix build for Qt >= 5.7.0
This basically does something similar than the AUR build:

https://aur.archlinux.org/packages/vlc-qt5/

On our side, all there is to do is to force compiling using C++11 mode
and use a patch that the AUR package took from the following upstream
patchwork URL:

https://patches.videolan.org/patch/14061/

Instead of passing CXXFLAGS to the configure script, I'm using sed here
to make sure we don't override flags figured out by configure.

For example if ./configure is used with CXXFLAGS=-std=c++11 appended or
prepended, we have something like:

... -I../include   -std=c++11 -Wall -Wextra -Wsign-compare ...

While if we don't do that at all, we have something like:

... -I../include   -g -O2 -Wall -Wextra -Wsign-compare ...

Another way would be to use NIX_CFLAGS_COMPILE, but that would affect
even compilation of C code and thus resulting in a bunch of warnings
like this:

cc1: warning: command line option '-std=c++11' is valid for C++/ObjC++
              but not for C

So with our approach the flags during build look much better:

... -I../include   -std=c++11 -g -O2 -Wall -Wextra -Wsign-compare ...

Another thing I've changed is that the vlc_qt5 attribute in
all-packages.nix now uses the latest Qt 5 version, because the build for
Qt >= 5.7.0 is now no longer broken.

I've also ordered the preConfigure attribute before the configureFlags
attribute, because it makes more sense in terms of context (pre ->
configure -> post).

Tested by building on x86_64-linux with libsForQt56.vlc, libsForQt58.vlc
and vlc (the Qt 4 version, just to be sure I didn't accidentally break
it).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @ttuegel
2017-04-19 05:09:47 +02:00
Jaka Hudoklin
e0b0a07a74 Merge pull request #23073 from volth/libguestfs-1.34
libguestfs: 1.29.5 -> 1.36.3
2017-04-19 02:01:54 +02:00
Joachim F
1dcb587d93 Merge pull request #24888 from Ralith/electron
electron: 1.4.15 -> 1.6.2
2017-04-18 21:47:33 +01:00
Jörg Thalheim
dc017e634c Merge pull request #25001 from jb55/new/pidgin-carbons
pidgin-carbons: init at 0.1.3
2017-04-18 22:46:51 +02:00
Joachim F
0d6caccfb4 Merge pull request #24979 from mdorman/emacs-updates
Automated Emacs package updates
2017-04-18 21:37:48 +01:00
Benno Fünfstück
bc09640d91 Merge pull request #24977 from dsprenkels/master
mpDris2: 0.6 -> 0.7
2017-04-18 22:29:06 +02:00
Jörg Thalheim
f27206c952 Merge pull request #24993 from romildo/upd.elementary-icon-theme
elementary-icon-theme: 4.0.1.1 -> 4.0.3
2017-04-18 22:09:15 +02:00
Jörg Thalheim
6231781930 Merge pull request #24992 from romildo/upd.mate
mate-themes: 3.22.7 -> 3.22.10, mate-icon-theme: 1.18.0 -> 1.18.1
2017-04-18 22:09:01 +02:00
armijnhemel
a8c8d5a588 upx: 3.91 -> 3.93
* moved from sourceforge to github
2017-04-18 21:49:54 +02:00
Jörg Thalheim
41b43c0b64 Merge pull request #25000 from NickHu/fdr
fdr: fix Qt library dependency
2017-04-18 21:46:20 +02:00
Jörg Thalheim
032cf416ef Merge pull request #25002 from romildo/upd.flat-plat
flat-plat: 2016-12-03 -> 20170323
2017-04-18 21:41:34 +02:00
James ‘Twey’ Kay
cba00cb44b
git-lfs: 1.3.1 -> 2.0.2
fixes #25004
2017-04-18 21:39:12 +02:00
Masayuki Takeda
733cc23a1b
slock: add configFile support
fixes #24994
2017-04-18 21:06:17 +02:00
John Ericson
1eabc23961 Merge pull request #24980 from Ericson2314/platform-normalization
Doc for Platform Normalization
2017-04-18 13:34:56 -04:00
Vincent Laporte
0c8cf28091 ocamlPackages.llvm: fix hash 2017-04-18 17:32:18 +00:00
Vincent Laporte
2230009e7d ocaml: 4.04.0 -> 4.04.1 2017-04-18 17:19:16 +00:00
Vincent Laporte
ca47895d7f ocamlPackages.batteries: 2.5.3 -> 2.6.0 2017-04-18 17:19:16 +00:00
Daiderd Jordan
da811a56b5 Merge pull request #24976 from hamishmack/darwin-icons
defaultIconTheme: Enable darwin support
2017-04-18 19:16:43 +02:00
romildo
ca3d37ffbe greybird: 2017-02-26 -> 3.22.3 2017-04-18 13:54:31 -03:00
Benno Fünfstück
eb1e63505a wai-app-file-cgi: remove outdated overrides 2017-04-18 18:52:06 +02:00
John Ericson
c13457fe58 doc: Document the structure of {build,host,target}Platforms
Worthwhile to do now that #24610 makes it less abysmal.
2017-04-18 12:48:16 -04:00
romildo
e7a3186d28 flat-plat: 2016-12-03 -> 20170323 2017-04-18 13:41:10 -03:00
Benjamin Staffin
2c14055aaa Merge pull request #24990 from jlesquembre/git-recent
git-recent: init at 1.0.3
2017-04-18 12:33:05 -04:00
William Casarin
36bd9d2463 pidgin-carbons: init at 0.1.3
Implements XMPP extension XEP-0280: Message Carbons for pidgin
2017-04-18 09:26:05 -07:00
Nick Hu
e0bf92950c fdr: fix Qt library dependency 2017-04-18 17:09:54 +01:00
Jörg Thalheim
b2ed3db94a Merge pull request #24962 from makefu/modules/command-not-found/refactor
Refactor command-not-found
2017-04-18 17:18:20 +02:00
Daan Sprenkels
0479e68db9 mpDris2: 0.6 -> 0.7 2017-04-18 14:38:24 +02:00