jackhill/guix/guix.git
8 years agognu: linux-libre: Update to 4.5.3.
Mark H Weaver [Thu, 5 May 2016 12:48:07 +0000 (08:48 -0400)]
gnu: linux-libre: Update to 4.5.3.

* gnu/packages/linux.scm (linux-libre): Update to 4.5.3.

8 years agognu: linux-libre-4.4: Update to 4.4.9.
Mark H Weaver [Thu, 5 May 2016 12:44:52 +0000 (08:44 -0400)]
gnu: linux-libre-4.4: Update to 4.4.9.

* gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.9.

8 years agognu: linux-libre-4.1: Update to 4.1.23.
Mark H Weaver [Thu, 5 May 2016 11:56:37 +0000 (07:56 -0400)]
gnu: linux-libre-4.1: Update to 4.1.23.

* gnu/packages/linux.scm (linux-libre-4.1): Update to 4.1.23.

8 years agoemacs: main: Use (guix combinators).
Alex Kost [Thu, 5 May 2016 08:26:55 +0000 (11:26 +0300)]
emacs: main: Use (guix combinators).

Reported by rsiddharth on #guix.
This is a followup to commit 958dd3ce68733bcd5c1231424c7e4ad39e67594a.

* emacs/guix-main.scm: Use (guix combinators) module as 'memoize' moved there.

8 years agognu: libressl: Update to 2.3.4 [security fixes].
Leo Famulari [Thu, 5 May 2016 06:16:17 +0000 (02:16 -0400)]
gnu: libressl: Update to 2.3.4 [security fixes].

Fixes CVE-2016-{2105, 2106, 2107, 2108, 2109}.

* gnu/packages/tls.scm (libressl): Update to 2.3.4.

8 years agobuild: Add 'run-system-tests.scm'.
Ludovic Courtès [Wed, 4 May 2016 21:56:42 +0000 (23:56 +0200)]
build: Add 'run-system-tests.scm'.

This file was meant to be added as part of
commit e9f693d06f94bd96488c3910dba6504f94a6b6f9.

* build-aux/run-system-tests.scm: New file.
* Makefile.am (EXTRA_DIST): Add it.

8 years agotests: Add whole-system test.
Ludovic Courtès [Wed, 4 May 2016 21:33:59 +0000 (23:33 +0200)]
tests: Add whole-system test.

* gnu/system/vm.scm (virtualized-operating-system): Export.
* gnu/tests/base.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* Makefile.am (check-system): New target.

8 years agoAdd (gnu tests) and (gnu build marionette).
Ludovic Courtès [Wed, 4 May 2016 21:31:08 +0000 (23:31 +0200)]
Add (gnu tests) and (gnu build marionette).

* gnu/build/marionette.scm, gnu/tests.scm: New files.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add them.
* gnu/system/vm.scm (common-qemu-options): Remove '-serial stdio'.

8 years agosystem: Add procedures to access user accounts and service names.
Ludovic Courtès [Wed, 4 May 2016 20:48:28 +0000 (22:48 +0200)]
system: Add procedures to access user accounts and service names.

* gnu/system.scm (operating-system-user-accounts)
(operating-system-shepherd-service-names): New procedures.

8 years agognu: java-qdox: Escape "@" in description.
Ludovic Courtès [Wed, 4 May 2016 15:51:44 +0000 (17:51 +0200)]
gnu: java-qdox: Escape "@" in description.

* gnu/packages/java.scm (java-qdox-1.12)[description]: Use "@@tag", not
"@tag".

8 years agobuild: Preserve stderr for shell tests.
Ludovic Courtès [Wed, 4 May 2016 15:49:32 +0000 (17:49 +0200)]
build: Preserve stderr for shell tests.

Fixes a regression introduced in
a9edb211e733b8b34e67ec3b4450567e9376986f where the .log files of the .sh
tests would not contain stderr.

* build-aux/test-env.in: Redirect stderr only when --quiet-stderr is
passed.
* Makefile.am (SCM_LOG_DRIVER): Add --quiet-stderr.

8 years agoutils: Move combinators to (guix combinators).
Ludovic Courtès [Wed, 4 May 2016 15:35:47 +0000 (17:35 +0200)]
utils: Move combinators to (guix combinators).

* guix/utils.scm (compile-time-value, memoize, fold2)
(fold-tree, fold-tree-leaves): Move to...
* guix/combinators: ... here.  New file.
* tests/utils.scm ("fold2, 1 list", "fold2, 2 lists")
(fold-tree tests): Move to...
* tests/combinators.scm: ... here.  New file.
* Makefile.am (MODULES, SCM_TESTS): Add them.
* gnu/packages.scm, gnu/packages/bootstrap.scm,
gnu/services/herd.scm, guix/build-system/gnu.scm,
guix/build-system/python.scm, guix/derivations.scm,
guix/gnu-maintenance.scm, guix/import/elpa.scm,
guix/scripts/archive.scm, guix/scripts/build.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/scripts/size.scm, guix/scripts/substitute.scm,
guix/serialization.scm, guix/store.scm, guix/ui.scm: Adjust imports
accordingly.

8 years agoutils: Remove 'split'.
Ludovic Courtès [Wed, 4 May 2016 15:02:15 +0000 (17:02 +0200)]
utils: Remove 'split'.

This procedure was redundant with SRFI-1's 'break'.

* guix/utils.scm (split): Remove.
* tests/utils.scm ("split, element is in list")
("split, element is not in list"): Remove.

8 years agoenvironment: Use 'break' instead of 'split'.
Ludovic Courtès [Wed, 4 May 2016 14:59:31 +0000 (16:59 +0200)]
environment: Use 'break' instead of 'split'.

* guix/scripts/environment.scm (parse-args): Use 'break' instead of
'split'.

8 years agoservices: herd: Move UI handling to 'guix system'.
Ludovic Courtès [Wed, 4 May 2016 14:38:22 +0000 (16:38 +0200)]
services: herd: Move UI handling to 'guix system'.

This makes (gnu services herd) independent of (guix ui).

* gnu/services/herd.scm (&shepherd-error, &service-not-found-error)
(&action-not-found-error, &action-exception-error)
(&unknown-shepherd-error): New error condition types.
(report-action-error): Remove.
(raise-shepherd-error): New procedure.
(display-message): Do not use 'info' and '_'.
(invoke-action): Use 'raise-shepherd-error' instead of
'report-action-error'.  Do not use 'warning'.
(current-services): Do not use 'warning'.
* guix/scripts/system.scm (with-shepherd-error-handling): New macro.
(report-shepherd-error, call-with-service-upgrade-info): New
procedures.
(upgrade-shepherd-services): Use it.

8 years agognu: tvtime: Update to 1.0.10.
Alex Kost [Mon, 2 May 2016 10:42:33 +0000 (13:42 +0300)]
gnu: tvtime: Update to 1.0.10.

* gnu/packages/tv.scm (tvtime): Update to 1.0.10.
[source]: Remove patches.
[inputs]: Add 'alsa-lib'.
* gnu/packages/patches/tvtime-gcc41.patch,
gnu/packages/patches/tvtime-pngoutput.patch,
gnu/packages/patches/tvtime-videodev2.patch,
gnu/packages/patches/tvtime-xmltv.patch: Remove files.
* gnu/local.mk (dist_patch_DATA): Remove them.

8 years agognu: libcue: Update to 2.1.0.
Alex Kost [Mon, 2 May 2016 08:06:08 +0000 (11:06 +0300)]
gnu: libcue: Update to 2.1.0.

* gnu/packages/cdrom.scm (libcue): Update to 2.1.0.
[build-system]: Use 'cmake-build-system' (the upstream moved to it).
[native-inputs]: Add 'bison' and 'flex'.

8 years agoUpdate .mailmap.
Alex Kost [Fri, 29 Apr 2016 09:34:25 +0000 (12:34 +0300)]
Update .mailmap.

* .mailmap: Add new entries for Danny Milosavljevic, Nils Gillmann and
  Raymond Nicholson.

8 years agognu: gnupg: Update to 2.1.12.
Efraim Flashner [Wed, 4 May 2016 19:19:52 +0000 (22:19 +0300)]
gnu: gnupg: Update to 2.1.12.

* gnu/packages/gnupg.scm (gnupg): Update to 2.1.12.
[source]: Remove patch.
* gnu/packages/patches/gnupg-simple-query-ignore-status-messages.patch:
Remove file.
* gnu/local.mk (dist_patch_DATA): Remove reference.

8 years agognu: jemalloc: Update to 4.1.0.
Jelle Licht [Sat, 30 Apr 2016 22:09:41 +0000 (00:09 +0200)]
gnu: jemalloc: Update to 4.1.0.

* gnu/packages/jemalloc.scm (jemalloc): Upodate to 4.1.0.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
8 years agognu: imlib2: Update to 1.4.9 [fixes CVE-2011-5326, CVE-2016-{3993,3994}].
Mark H Weaver [Wed, 4 May 2016 17:49:10 +0000 (13:49 -0400)]
gnu: imlib2: Update to 1.4.9 [fixes CVE-2011-5326, CVE-2016-{3993,3994}].

* gnu/packages/image.scm (imlib2): Update to 1.4.9.
[source]: Remove patch.
* gnu/packages/patches/imlib2-CVE-2016-4024.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.

8 years agognu: imagemagick: Update to 6.9.3-10.
David Thompson [Wed, 4 May 2016 16:46:01 +0000 (12:46 -0400)]
gnu: imagemagick: Update to 6.9.3-10.

Fixes CVE-2016–3714.

* gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.3-10.
[source]: Remove patch.
* gnu/packages/patches/imagemagick-test-segv.patch: Delete.
* gnu/local.mk (dist_patch_DATA): Remove patch file from distribution.

8 years agognu: bitlbee: Incorporate upstream pre-release patches.
Andy Wingo [Wed, 20 Apr 2016 08:17:28 +0000 (10:17 +0200)]
gnu: bitlbee: Incorporate upstream pre-release patches.

* gnu/packages/messaging.scm (%bitlbee-buddy-nick-change-patch):
(%bitlbee-always-use-nicks-patch): New variables.
(bitlbee): Add new patches.

8 years agognu: bitlbee: Update to 3.4.2.
Andy Wingo [Wed, 20 Apr 2016 07:38:46 +0000 (09:38 +0200)]
gnu: bitlbee: Update to 3.4.2.

* gnu/packages/messaging.scm (bitlbee): Update to 3.4.2.

8 years agognu: edirect: Update to 4.10.
Ricardo Wurmus [Wed, 4 May 2016 14:44:55 +0000 (16:44 +0200)]
gnu: edirect: Update to 4.10.

* gnu/packages/bioinformatics.scm (edirect): Update to 4.10.

8 years agognu: Add pinentry-qt.
Efraim Flashner [Tue, 26 Apr 2016 13:39:31 +0000 (16:39 +0300)]
gnu: Add pinentry-qt.

* gnu/packages/gnupg.scm (pinentry-qt): New variable.

8 years agognu: Add pinentry-tty.
Efraim Flashner [Tue, 26 Apr 2016 13:29:21 +0000 (16:29 +0300)]
gnu: Add pinentry-tty.

* gnu/packages/gnupg.scm (pinentry-tty): New variable.
[arguments]: Add pinentry-tty flag.
(pinentry-gtk2): Inherit from pinentry-tty.
[inputs]: Use gtk+-2, glib for pinentry-gtk2 only.
[description]: Modify description based on inputs.

8 years agognu: pinentry: Rename to pinentry-gtk2.
Efraim Flashner [Thu, 28 Apr 2016 02:20:45 +0000 (05:20 +0300)]
gnu: pinentry: Rename to pinentry-gtk2.

* gnu/packages/gnupg.scm (pinentry): Rename to pinentry-gtk2.
Define pinentry as pinentry-gtk2.

8 years agognu: cross: Fix typo.
Ludovic Courtès [Tue, 3 May 2016 21:43:49 +0000 (23:43 +0200)]
gnu: cross: Fix typo.

* gnu/packages/cross-base.scm (cross-gcc-arguments): Remove erroneous
'else' introduced in efc4eb147512fa7a2c6d74d9b296cfc22b1ef198.

8 years agognu: Add nlopt.
Roel Janssen [Tue, 3 May 2016 12:30:25 +0000 (14:30 +0200)]
gnu: Add nlopt.

* gnu/packages/maths.scm (nlopt): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
8 years agognu: redeclipse: Rename to red-eclipse.
Andreas Enge [Tue, 3 May 2016 19:25:31 +0000 (21:25 +0200)]
gnu: redeclipse: Rename to red-eclipse.

* gnu/packages/games.scm (redeclipse): Rename to...
(red-eclipse): ...this.

This is a follow-up to commit 5b8a85431dd746eb975d70fe31aeb05609946d80,
which changed only the name field of the package.

8 years agognu: Rename redeclipse package to red-eclipse.
Kei Yamashita [Tue, 3 May 2016 16:04:38 +0000 (12:04 -0400)]
gnu: Rename redeclipse package to red-eclipse.

* gnu/packages/games.scm (redeclipse): Rename to...
(red-eclipse): ...this.

Signed-off-by: Andreas Enge <andreas@enge.fr>
8 years agognu: openssl: Replace with 1.0.2h [security fixes].
Mark H Weaver [Tue, 3 May 2016 17:06:00 +0000 (13:06 -0400)]
gnu: openssl: Replace with 1.0.2h [security fixes].

Fixes CVE-2016-{2105,2106,2107,2109,2176}.

* gnu/packages/tls.scm (openssl)[replacement]: New field.
(openssl/fixed): New variable.

8 years agognu: gcc: Add 6.1.0.
Ludovic Courtès [Tue, 3 May 2016 15:34:54 +0000 (17:34 +0200)]
gnu: gcc: Add 6.1.0.

* gnu/packages/gcc.scm (gcc-6): New variable.
* gnu/packages/commencement.scm (gcc-toolchain-6): New variable.

8 years agognu: cross: Use CROSS_*_INCLUDE_PATH for system headers.
Jan Nieuwenhuizen [Fri, 29 Apr 2016 15:12:22 +0000 (17:12 +0200)]
gnu: cross: Use CROSS_*_INCLUDE_PATH for system headers.

* gnu/packages/patches/gcc-cross-environment-variables.patch: Also use CROSS_
variants: CROSS_C_INCLUDE_PATH, CROSS_CPLUS_INCLUDE_PATH,
CROSS_OBJC_INCLUDE_PATH, CROSS_OBJCPLUS_INCLUDE_PATH to be used for system
libraries, see
https://lists.gnu.org/archive/html/guix-devel/2016-04/msg00620.html.
* gnu/packages/cross-base.scm (cross-gcc, cross-gcc-arguments, cross-libc):
Use CROSS_*_INCLUDE_PATH (WAS: CPATH).

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
8 years agosyscalls: Wrap TCSA* constants in 'tcsetattr-action' macro.
Ludovic Courtès [Mon, 2 May 2016 06:59:57 +0000 (08:59 +0200)]
syscalls: Wrap TCSA* constants in 'tcsetattr-action' macro.

* guix/build/syscalls.scm (tcsetattr-action): New macro.
(TCSANOW, TCSADRAIN, TCSAFLUSH): Remove.
(tcsetattr): Adjust docstring accordingly.
* tests/syscalls.scm ("tcsetattr"): Adjust accordingly.

8 years agognu: wpa-supplicant: Add fixes for CVE-2016-{4476,4477}.
Mark H Weaver [Tue, 3 May 2016 13:33:47 +0000 (09:33 -0400)]
gnu: wpa-supplicant: Add fixes for CVE-2016-{4476,4477}.

* gnu/packages/patches/wpa-supplicant-CVE-2016-4476.patch,
gnu/packages/patches/wpa-supplicant-CVE-2016-4477-pt1.patch,
gnu/packages/patches/wpa-supplicant-CVE-2016-4477-pt2.patch,
gnu/packages/patches/wpa-supplicant-CVE-2016-4477-pt3.patch,
gnu/packages/patches/wpa-supplicant-CVE-2016-4477-pt4.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/admin.scm (wpa-supplicant-minimal)[source]: Add patches.

8 years agognu: Add 4store.
Roel Janssen [Tue, 26 Apr 2016 22:44:22 +0000 (00:44 +0200)]
gnu: Add 4store.

* gnu/packages/databases.scm (4store): New variable.
* gnu/packages/patches/4store-fix-buildsystem.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add patch file entry.

Signed-off-by: Leo Famulari <leo@famulari.name>
8 years agognu: ocaml: Fix CVE-2015-8869.
Leo Famulari [Sat, 30 Apr 2016 00:55:19 +0000 (20:55 -0400)]
gnu: ocaml: Fix CVE-2015-8869.

* gnu/packages/patches/ocaml-CVE-2015-8869.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/ocaml.scm (ocaml): Use it.

8 years agognu: bristol: Do not check for JACK with ldd.
Ricardo Wurmus [Mon, 2 May 2016 17:41:55 +0000 (19:41 +0200)]
gnu: bristol: Do not check for JACK with ldd.

* gnu/packages/music.scm (bristol)[arguments]: Add build phase to
  disable runtime check for JACK.

8 years agognu: frescobaldi: Add MIDI support.
Ricardo Wurmus [Wed, 27 Apr 2016 19:25:42 +0000 (21:25 +0200)]
gnu: frescobaldi: Add MIDI support.

* gnu/packages/music.scm (frescobaldi)[inputs]: Add portmidi and
  python-pyportmidi.

8 years agognu: Add python-pyportmidi.
Ricardo Wurmus [Wed, 27 Apr 2016 19:25:14 +0000 (21:25 +0200)]
gnu: Add python-pyportmidi.

* gnu/packages/music.scm (python-pyportmidi): New variable.

8 years agognu: Add portmidi.
Ricardo Wurmus [Wed, 27 Apr 2016 19:20:07 +0000 (21:20 +0200)]
gnu: Add portmidi.

* gnu/packages/music.scm (portmidi): New variable.
* gnu/packages/patches/portmidi-modular-build.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.

8 years agognu: Add reposurgeon.
Mathieu Lirzin [Thu, 7 Apr 2016 22:16:37 +0000 (00:16 +0200)]
gnu: Add reposurgeon.

* gnu/packages/version-control.scm (reposurgeon): New variable.

8 years agognu: powertop: Patch absolute file names.
Mathieu Lirzin [Mon, 18 Apr 2016 15:00:44 +0000 (17:00 +0200)]
gnu: powertop: Patch absolute file names.

* gnu/packages/linux.scm (powertop)[inputs]: Add kmod.
[arguments]: Patch absolute file names.

8 years agognu: Add java-junit.
Ricardo Wurmus [Fri, 22 Apr 2016 14:09:17 +0000 (16:09 +0200)]
gnu: Add java-junit.

* gnu/packages/java.scm (java-junit): New variable.

8 years agognu: Add java-hamcrest-core.
Ricardo Wurmus [Fri, 22 Apr 2016 14:08:41 +0000 (16:08 +0200)]
gnu: Add java-hamcrest-core.

* gnu/packages/java.scm (java-hamcrest-core): New variable.

8 years agognu: Add java-jarjar.
Ricardo Wurmus [Fri, 22 Apr 2016 14:08:14 +0000 (16:08 +0200)]
gnu: Add java-jarjar.

* gnu/packages/java.scm (java-jarjar): New variable.

8 years agognu: Add java-qdox-1.12.
Ricardo Wurmus [Fri, 22 Apr 2016 14:07:38 +0000 (16:07 +0200)]
gnu: Add java-qdox-1.12.

* gnu/packages/java.scm (java-qdox-1.12): New variable.

8 years agognu: Add r-xnomial.
Ricardo Wurmus [Mon, 2 May 2016 08:55:29 +0000 (10:55 +0200)]
gnu: Add r-xnomial.

* gnu/packages/statistics.scm (r-xnomial): New variable.

8 years agognu: ruby-hashery: Update to 2.1.2.
Ben Woodcroft [Mon, 2 May 2016 00:20:17 +0000 (10:20 +1000)]
gnu: ruby-hashery: Update to 2.1.2.

* gnu/packages/ruby.scm (ruby-hashery): Update to 2.1.2.
[arguments]: Remove test workaround.

8 years agosyscalls: Add 'tcgetattr' and 'tcsetattr' bindings.
Ludovic Courtès [Sun, 1 May 2016 21:59:05 +0000 (23:59 +0200)]
syscalls: Add 'tcgetattr' and 'tcsetattr' bindings.

* guix/build/syscalls.scm (bits->symbols-body, define-bits)
(local-flags): New macros.
(TCSANOW, TCSADRAIN, TCSAFLUSH): New variables.
(<termios>): New record type.
(%termios): New C structure.
(tcgetattr, tcsetattr): New procedures.
* tests/syscalls.scm ("tcgetattr ENOTTY", "tcgetattr")
("tcsetattr"): New tests.

8 years agosyscalls: Implement arrays in 'define-c-struct' and use it.
Ludovic Courtès [Sun, 1 May 2016 19:38:53 +0000 (21:38 +0200)]
syscalls: Implement arrays in 'define-c-struct' and use it.

* guix/build/syscalls.scm (sizeof*, alignof*, write-type, read-type):
Add support for (array ...) forms.
* guix/build/syscalls.scm (<file-system>)[spare0, spare1]: Remove.
[spare]: New field.
* guix/build/syscalls.scm (%statfs)[identifier]: Change to (array int 2).
[spare0, spare1]: Remove.
[spare]: New field.

8 years agognu: asymptote: Update to 2.37.
Nicolas Goaziou [Sat, 30 Apr 2016 09:43:35 +0000 (11:43 +0200)]
gnu: asymptote: Update to 2.37.

* gnu/packages/plotutils.scm (asymptote): Update to 2.37.
* gnu/packages/patches/asymptote-gsl2.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove reference.

8 years agognu: Add python2-shedskin.
Danny Milosavljevic [Thu, 7 Apr 2016 12:28:57 +0000 (14:28 +0200)]
gnu: Add python2-shedskin.

* gnu/packages/python.scm (python2-shedskin): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
8 years agognu: guitarix: Update to 0.35.0.
Ricardo Wurmus [Sun, 1 May 2016 16:10:38 +0000 (18:10 +0200)]
gnu: guitarix: Update to 0.35.0.

* gnu/packages/audio.scm (guitarix): Update to 0.35.0.

8 years agognu: qtractor: Update to 0.7.7.
Ricardo Wurmus [Sun, 1 May 2016 16:09:30 +0000 (18:09 +0200)]
gnu: qtractor: Update to 0.7.7.

* gnu/packages/music.scm (qtractor): Update to 0.7.7.

8 years agognu: Add antiword.
Ricardo Wurmus [Thu, 28 Apr 2016 06:11:05 +0000 (08:11 +0200)]
gnu: Add antiword.

* gnu/packages/textutils.scm (antiword): New variable.

8 years agognu: Add synthv1.
Ricardo Wurmus [Wed, 27 Apr 2016 20:49:22 +0000 (22:49 +0200)]
gnu: Add synthv1.

* gnu/packages/music.scm (synthv1): New variable.

8 years agognu: ao: Replace "itemize" with "enumerate" in description string.
John Darrington [Sun, 1 May 2016 16:11:51 +0000 (18:11 +0200)]
gnu: ao: Replace "itemize" with "enumerate" in description string.

* gnu/packages/xiph.scm (ao): Replace "itemize" with "enumerate" in description string.
  Apparently Guile cannot yet handle "itemize" when creating HTML.

8 years agognu: ao: Format the description string.
John Darrington [Wed, 27 Apr 2016 19:22:03 +0000 (21:22 +0200)]
gnu: ao: Format the description string.

* gnu/packages/xiph.scm (ao): Add markup to description string.

8 years agognu: bootstrap: Add case for i686-mingw.
Jan Nieuwenhuizen [Thu, 14 Apr 2016 05:31:35 +0000 (07:31 +0200)]
gnu: bootstrap: Add case for i686-mingw.

* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add case for i686-mingw.

Signed-off-by: Manolis Ragkousis <manolis837@gmail.com>
8 years agosyscalls: 'statfs' explicitly binds 'statfs64'.
Ludovic Courtès [Sat, 30 Apr 2016 21:32:25 +0000 (23:32 +0200)]
syscalls: 'statfs' explicitly binds 'statfs64'.

* guix/build/syscalls.scm (statfs): Explicitly bind "statfs64".

8 years agosyscalls: statfs: Add missing 'mount-flags' field of 'struct statfs'.
Ludovic Courtès [Sat, 30 Apr 2016 21:30:56 +0000 (23:30 +0200)]
syscalls: statfs: Add missing 'mount-flags' field of 'struct statfs'.

* guix/build/syscalls.scm (<file-system>)[mount-flags]: New field.
[spare2]: Remove.
(%statfs): Likewise.

8 years agognu: poppler: Fix CVE-2015-8868.
Leo Famulari [Fri, 29 Apr 2016 07:31:41 +0000 (03:31 -0400)]
gnu: poppler: Fix CVE-2015-8868.

* gnu/packages/pdf.scm (poppler)[replacement]: New field.
(poppler/fixed): New variable.
* gnu/packages/patches/poppler-CVE-2015-8868.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.

8 years agognu: ncmpcpp: Remove bootstrapping phase.
Leo Famulari [Tue, 26 Apr 2016 21:07:32 +0000 (17:07 -0400)]
gnu: ncmpcpp: Remove bootstrapping phase.

* gnu/packages/mpd.scm (ncmpcpp)[arguments]: Remove 'autogen' phase.
[native-inputs]: Remove autoconf, automake, and libtool.

8 years agognu: Add muscle.
Ben Woodcroft [Sat, 16 Jan 2016 12:12:23 +0000 (22:12 +1000)]
gnu: Add muscle.

* gnu/packages/bioinformatics.scm (muscle): New variable.

8 years agognu: subversion: Update to 1.8.16 [fixes CVE-2016-{2167,2168}].
Mark H Weaver [Sat, 30 Apr 2016 03:14:55 +0000 (23:14 -0400)]
gnu: subversion: Update to 1.8.16 [fixes CVE-2016-{2167,2168}].

* gnu/packages/version-control.scm (subversion): Update to 1.8.16.

8 years agognu: Add uhttpmock.
Rene Saavedra [Thu, 14 Apr 2016 14:52:51 +0000 (09:52 -0500)]
gnu: Add uhttpmock.

* gnu/packages/web.scm (uhttpmock): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
8 years agognu: ruby-hashery: Disable failing test.
Ben Woodcroft [Fri, 29 Apr 2016 22:44:57 +0000 (08:44 +1000)]
gnu: ruby-hashery: Disable failing test.

* gnu/packages/ruby.scm (ruby-hashery)[arguments]: Remove failing
test.

8 years agognu: ruby: Update to 2.3.1.
Rob Syme [Fri, 29 Apr 2016 22:39:27 +0000 (08:39 +1000)]
gnu: ruby: Update to 2.3.1.

* gnu/packages/ruby.scm (ruby): Update to 2.3.1.
[origin] Add symlink patch.
* gnu/packages/patches/ruby-symlinkfix.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add patch.

8 years agognu: Add Fossil.
Eric Bavier [Wed, 27 Apr 2016 15:18:53 +0000 (10:18 -0500)]
gnu: Add Fossil.

* gnu/packages/version-control.scm (fossil): New variable.
* gnu/packages/patches/fossil-test-fixes.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Add it.

8 years agognu: eigen: Update to 3.2.8.
Ricardo Wurmus [Fri, 29 Apr 2016 18:09:22 +0000 (20:09 +0200)]
gnu: eigen: Update to 3.2.8.

* gnu/packages/algebra.scm (eigen): Update to 3.2.8.

8 years agonls: Add Simplified Chinese translation.
Ludovic Courtès [Fri, 29 Apr 2016 15:23:24 +0000 (17:23 +0200)]
nls: Add Simplified Chinese translation.

* po/guix/zh_CN.po: New file.
* po/guix/LINGUAS: Add 'zh_CN'.

8 years agognu: Add hplip.
Danny Milosavljevic [Fri, 29 Apr 2016 15:05:47 +0000 (17:05 +0200)]
gnu: Add hplip.

* gnu/packages/cups.scm (hplip): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
8 years agoguix system: Reduce size of image produced for 'vm' action.
Ludovic Courtès [Thu, 28 Apr 2016 21:04:52 +0000 (23:04 +0200)]
guix system: Reduce size of image produced for 'vm' action.

This reduces the size of the image produced by 'guix system vm' from
26 MiB to 9 MiB.

* gnu/system/vm.scm (system-qemu-image/shared-store):
(system-qemu-image/shared-store-script): Change the default
value of #:disk-image-size to 30 MiB when not FULL-BOOT?.
* guix/scripts/system.scm (system-derivation-for-action): Likewise for
the 'vm' action.

8 years agognu: giac-xcas: Update to 1.2.2-41.
Nicolas Goaziou [Thu, 28 Apr 2016 11:35:20 +0000 (13:35 +0200)]
gnu: giac-xcas: Update to 1.2.2-41.

* gnu/packages/algebra.scm (giac-xcas): Update to 1.2.2-41.
[inputs]: Add libxinerama.

Signed-off-by: Leo Famulari <leo@famulari.name>
8 years agognu: webkitgtk: Update to 2.12.2.
Mark H Weaver [Thu, 28 Apr 2016 19:19:58 +0000 (15:19 -0400)]
gnu: webkitgtk: Update to 2.12.2.

* gnu/packages/webkit.scm (webkitgtk): Update to 2.12.2.

8 years agognu: python-celery: Rearrange inputs.
Efraim Flashner [Thu, 28 Apr 2016 16:42:50 +0000 (19:42 +0300)]
gnu: python-celery: Rearrange inputs.

* gnu/packages/python.scm (python-celery)[propagated-inputs]: Move
python-pytz, python-billiard, python-kombu ...
[inputs]: ... to here. Add python-amqp, python-anyjson.

8 years agognu: python-rauth: Rearrange inputs.
Efraim Flashner [Thu, 28 Apr 2016 16:18:26 +0000 (19:18 +0300)]
gnu: python-rauth: Rearrange inputs.

* gnu/packages/python.scm (python-rauth)[native-inputs]: Remove it.
[propagated-inputs]: Move python-requests ...
[inputs]: ... to here.
[properties]: Define python2-variant.
(python2-rauth): Build with 'strip-python2-variant'.
[native-inputs]: Add python2-setuptools.

8 years agognu: libtasn1: Replace 4.7 with 4.8 [fixes CVE-2016-4008].
Ludovic Courtès [Thu, 28 Apr 2016 16:00:21 +0000 (18:00 +0200)]
gnu: libtasn1: Replace 4.7 with 4.8 [fixes CVE-2016-4008].

* gnu/packages/tls.scm (libtasn1)[replacement]: New field.
(libtasn1/fixed): New variable.

8 years agolint: 'check-vulnerabilities' follows package replacements.
Ludovic Courtès [Thu, 28 Apr 2016 15:48:47 +0000 (17:48 +0200)]
lint: 'check-vulnerabilities' follows package replacements.

* guix/scripts/lint.scm (check-vulnerabilities): Check the replacement
of PACKAGE.
* tests/lint.scm ("cve: patched vulnerability in replacement"): New test.

8 years agognu: Add Red Eclipse.
Kei Yamashita [Sat, 23 Apr 2016 05:58:55 +0000 (01:58 -0400)]
gnu: Add Red Eclipse.

* gnu/packages/games.scm (redeclipse): New variable.

Signed-off-by: Alex Kost <alezost@gmail.com>
8 years agognu: magit: Update to 2.6.2.
Alex Kost [Wed, 27 Apr 2016 21:48:08 +0000 (00:48 +0300)]
gnu: magit: Update to 2.6.2.

* gnu/packages/emacs.scm (magit): Update to 2.6.2.

8 years agognu: icecat: Add fixes for CVE-2016-{2805,2807,2808,2814} etc.
Mark H Weaver [Thu, 28 Apr 2016 02:33:02 +0000 (22:33 -0400)]
gnu: icecat: Add fixes for CVE-2016-{2805,2807,2808,2814} etc.

* gnu/packages/patches/icecat-CVE-2016-2805.patch,
gnu/packages/patches/icecat-CVE-2016-2807-pt1.patch,
gnu/packages/patches/icecat-CVE-2016-2807-pt2.patch,
gnu/packages/patches/icecat-CVE-2016-2807-pt3.patch,
gnu/packages/patches/icecat-CVE-2016-2807-pt4.patch,
gnu/packages/patches/icecat-CVE-2016-2807-pt5.patch,
gnu/packages/patches/icecat-CVE-2016-2808.patch,
gnu/packages/patches/icecat-CVE-2016-2814.patch,
gnu/packages/patches/icecat-update-bundled-graphite2: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/gnuzilla.scm (icecat)[source]: Add patches.

icecat fixup

8 years agognu: nss: Update to 3.23.
Mark H Weaver [Thu, 28 Apr 2016 02:04:05 +0000 (22:04 -0400)]
gnu: nss: Update to 3.23.

* gnu/packages/gnuzilla.scm (nss): Update to 3.23.
[arguments]: In the 'install' phase, remove libgtest1.so from the
output.

8 years agognu: nspr: Update to 4.12.
Mark H Weaver [Thu, 28 Apr 2016 03:26:31 +0000 (23:26 -0400)]
gnu: nspr: Update to 4.12.

* gnu/packages/gnuzilla.scm (nspr): Update to 4.12.

8 years agognu: setbfree: Update to 0.8.1.
Ricardo Wurmus [Wed, 27 Apr 2016 20:11:54 +0000 (22:11 +0200)]
gnu: setbfree: Update to 0.8.1.

* gnu/packages/music.scm (setbfree): Update to 0.8.1.

8 years agognu: zynaddsubfx: Update to 2.5.4.
Ricardo Wurmus [Wed, 27 Apr 2016 20:10:47 +0000 (22:10 +0200)]
gnu: zynaddsubfx: Update to 2.5.4.

* gnu/packages/music.scm (zynaddsubfx): Update to 2.5.4.

8 years agognu: fltk: Fix undefined symbol `Fl_XFont_On_Demand::value'.
宋文武 [Thu, 28 Apr 2016 02:42:52 +0000 (10:42 +0800)]
gnu: fltk: Fix undefined symbol `Fl_XFont_On_Demand::value'.

* gnu/packages/patches/fltk-xfont-on-demand.patch: New patch.
* gnu/packages/fltk.scm (fltk)[source]: Use it.
* gnu/local.mk (dist_patch_DATA): Add it.

8 years agognu: patches: Update to latest revision.
Ludovic Courtès [Wed, 27 Apr 2016 21:43:36 +0000 (23:43 +0200)]
gnu: patches: Update to latest revision.

* gnu/packages/patchutils.scm (patches): Change URL to the repository of
Stefan Hajnoczi, and update to latest revision.

8 years agochallenge: Use exit code 2 when discrepancies are found.
Ludovic Courtès [Wed, 27 Apr 2016 21:33:17 +0000 (23:33 +0200)]
challenge: Use exit code 2 when discrepancies are found.

Suggested by John Darrington <john@darrington.wattle.id.au>.

* guix/scripts/challenge.scm (guix-challenge): Exit with 2 when MISSING
is not empty.
* doc/guix.texi (Invoking guix challenge): Document it.

8 years agognu: kde-frameworks: Update to 5.21.0.
Efraim Flashner [Wed, 27 Apr 2016 16:06:59 +0000 (19:06 +0300)]
gnu: kde-frameworks: Update to 5.21.0.

* gnu/packages/kde-frameworks.scm (extra-cmake-modules, kwindowsystem,
oxygen-icons): Update to 5.21.0.

8 years agognu: quassel: Update to 0.12.4.
Efraim Flashner [Wed, 27 Apr 2016 13:42:36 +0000 (16:42 +0300)]
gnu: quassel: Update to 0.12.4.

* gnu/packages/irc.scm (quassel): Update to 0.12.4.

8 years agognu: node: Update to 6.0.0.
David Thompson [Wed, 27 Apr 2016 18:12:28 +0000 (14:12 -0400)]
gnu: node: Update to 6.0.0.

* gnu/packages/node.scm (node): Update to 6.0.0.

8 years agognu: libuv: Update to 1.9.0.
David Thompson [Wed, 27 Apr 2016 18:11:55 +0000 (14:11 -0400)]
gnu: libuv: Update to 1.9.0.

* gnu/packages/libevent.scm (libuv): Update to 1.9.0.

8 years agognu: vdirsyncer: Update to 0.10.0.
Leo Famulari [Tue, 26 Apr 2016 07:05:41 +0000 (03:05 -0400)]
gnu: vdirsyncer: Update to 0.10.0.

* gnu/packages/dav.scm (vdirsyncer): Update to 0.10.0.
[propagated-inputs]: Remove python-lxml.

8 years agognu: mysql: Update to 5.7.12.
Leo Famulari [Wed, 27 Apr 2016 03:25:36 +0000 (23:25 -0400)]
gnu: mysql: Update to 5.7.12.

Fixes CVE-2016-0639, CVE-2016-0642, CVE-2016-0643, CVE-2016-0647,
CVE-2016-0648, CVE-2016-0655, CVE-2016-0657, CVE-2016-0659, CVE-2016-0662,
CVE-2016-0666, CVE-2016-0667, CVE-2016-0705, CVE-2016-2047.

* gnu/packages/databases.scm (mysql): Update to 5.7.12.

8 years agobuild: 'assert-' targets now depend on the .go files.
Ludovic Courtès [Wed, 27 Apr 2016 13:09:15 +0000 (15:09 +0200)]
build: 'assert-' targets now depend on the .go files.

* Makefile.am (assert-binaries-available)
(assert-final-inputs-self-contained): Add dependency on $(GOBJECTS).

8 years agoMerge branch 'gnome-updates'
Ludovic Courtès [Wed, 27 Apr 2016 13:04:11 +0000 (15:04 +0200)]
Merge branch 'gnome-updates'