jackhill/guix/guix.git
7 years agognu: chez-scheme: Remove use of 'ghostscript-gs' wrapper.
Mark H Weaver [Wed, 19 Oct 2016 15:26:51 +0000 (11:26 -0400)]
gnu: chez-scheme: Remove use of 'ghostscript-gs' wrapper.

This is a followup to commit d2478b4cdd6f1db44f4725b39489aca89d3d9180.

* gnu/packages/chez.scm (chez-scheme)[native-inputs]: Replace
'ghostscript-gs' with 'ghostscript'.

7 years agoMerge branch 'master' into core-updates
Mark H Weaver [Wed, 19 Oct 2016 14:54:36 +0000 (10:54 -0400)]
Merge branch 'master' into core-updates

7 years agognu: Add opensmtpd-extras.
ng0 [Tue, 6 Sep 2016 20:12:00 +0000 (20:12 +0000)]
gnu: Add opensmtpd-extras.

* gnu/packages/mail.scm (opensmtpd-extras): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
7 years agognu: Add opensmtpd.
ng0 [Tue, 6 Sep 2016 18:23:15 +0000 (18:23 +0000)]
gnu: Add opensmtpd.

* gnu/packages/mail.scm (opensmtpd): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
7 years agognu: Add libasr.
ng0 [Tue, 6 Sep 2016 17:10:18 +0000 (17:10 +0000)]
gnu: Add libasr.

* gnu/packages/dns.scm (libasr): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
7 years agognu: zile: Use 'modify-phases' syntax.
Efraim Flashner [Wed, 19 Oct 2016 14:08:35 +0000 (17:08 +0300)]
gnu: zile: Use 'modify-phases' syntax.

* gnu/packages/zile.scm (zile)[arguments]: Use 'modify-phases' syntax.

7 years agognu: zile: Update to 2.4.13.
Efraim Flashner [Wed, 19 Oct 2016 14:05:37 +0000 (17:05 +0300)]
gnu: zile: Update to 2.4.13.

* gnu/packages/zile.scm (zile): Update to 2.4.13.
[home-page]: Use https.

7 years agotests: Make sure child process of 'pivot-root' test exits.
Ludovic Courtès [Wed, 19 Oct 2016 13:30:29 +0000 (15:30 +0200)]
tests: Make sure child process of 'pivot-root' test exits.

* tests/syscalls.scm ("pivot-root"): Use 'test-equal'.  Wrap child body
in 'dynamic-wind'.

7 years agotests: Fix typo in 'with-graft' transformation test.
Ludovic Courtès [Wed, 19 Oct 2016 13:17:06 +0000 (15:17 +0200)]
tests: Fix typo in 'with-graft' transformation test.

This is a followup to 645b9df858683dc05ffa04c9eb2fdc45ccef4a65.

* tests/scripts-build.scm ("options->transformation, with-graft"): Use
'with-graft', not 'with-input'.

7 years agoUse (ice-9 binary-ports) instead of (rnrs io ports).
Ludovic Courtès [Wed, 19 Oct 2016 12:28:56 +0000 (14:28 +0200)]
Use (ice-9 binary-ports) instead of (rnrs io ports).

This reduces the closure of (guix ui) from 123 to 106 modules.

* guix/derivations.scm: Use (ice-9 binary-ports) instead of (rnrs io
ports).
(map-derivation)[substitute-file]: Use 'read-string' instead of
'get-string-all'.
* guix/ftp-client.scm: Likewise.
* guix/hash.scm: Likewise.
* guix/http-client.scm: Likewise.
* guix/pki.scm (ensure-acl, current-acl): Likewise.
* guix/scripts/archive.scm (authorize-key)[read-key]: Likewise.
* guix/scripts/authenticate.scm (read-canonical-sexp)
(read-hash-data): Likewise.
* guix/scripts/download.scm: Likewise.
* guix/scripts/offload.scm (register-gc-root, remove-gc-roots)
(send-files): Likewise.
* guix/scripts/publish.scm (lazy-read-file-sexp): Likewise.
* guix/scripts/refresh.scm: Likewise.
* guix/scripts/substitute.scm (check-acl-initialized): Likewise.
* guix/serialization.scm (read-maybe-utf8-string): Likewise.
* guix/scripts/hash.scm (guix-hash): Use 'force-output' instead of
'flush-output-port'.
* guix/store.scm (process-stderr): Likewise.
* guix/tests.scm: Likewise.
* guix/utils.scm: Use (ice-9 binary-ports) and autoload (rnrs io ports)
for 'make-custom-binary-input-port'.

7 years agolint: Suggest @code instead of quotes.
Ludovic Courtès [Wed, 19 Oct 2016 11:55:25 +0000 (13:55 +0200)]
lint: Suggest @code instead of quotes.

* guix/scripts/lint.scm (%quoted-identifier-rx): New variable.
(check-description-style)[check-quotes]: New procedure.
Use it.
* tests/lint.scm ("description: suggest ornament instead of quotes"):
New test.

7 years agognu: Add Ao.
Ludovic Courtès [Wed, 19 Oct 2016 08:39:59 +0000 (10:39 +0200)]
gnu: Add Ao.

* gnu/packages/engineering.scm (ao): New variable.

7 years agognu: glfw: Propagate the relevant inputs.
Ludovic Courtès [Tue, 18 Oct 2016 21:40:54 +0000 (23:40 +0200)]
gnu: glfw: Propagate the relevant inputs.

* gnu/packages/gl.scm (glfw)[inputs]: Rename to...
[propagated-inputs]: ... this.  Add LIBXXF86VM.

7 years agocontainer: Allow 'container-excursion' to the same namespaces.
Ludovic Courtès [Tue, 18 Oct 2016 21:22:03 +0000 (23:22 +0200)]
container: Allow 'container-excursion' to the same namespaces.

Before that, 'container-excursion' would call 'setns' even when the
target namespace is the one the caller is already in, which would fail.

* gnu/build/linux-container.scm (container-excursion): Introduce
'source' and 'target'.  Compare the result of 'readlink' on these
instead of comparing file descriptors to decide whether to call
'setns'.
* tests/containers.scm ("container-excursion, same namespace"): New test.

7 years agognu: Add r-biocstyle.
Roel Janssen [Wed, 19 Oct 2016 13:21:17 +0000 (15:21 +0200)]
gnu: Add r-biocstyle.

* gnu/packages/bioinformatics.scm (r-biocstyle): New variable.

7 years agognu: Add r-biocviews.
Roel Janssen [Wed, 19 Oct 2016 13:09:55 +0000 (15:09 +0200)]
gnu: Add r-biocviews.

* gnu/packages/bioinformatics.scm (r-biocviews): New variable.

7 years agognu: Add iperf.
Benz Schenk [Tue, 18 Oct 2016 15:28:23 +0000 (17:28 +0200)]
gnu: Add iperf.

* gnu/packages/networking.scm (iperf): New variable.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
7 years agognu: python-dateutil, python-dateutil-2: Update to new home-page.
Hartmut Goebel [Wed, 19 Oct 2016 09:52:54 +0000 (11:52 +0200)]
gnu: python-dateutil, python-dateutil-2: Update to new home-page.

* gnu/packages/python.scm (python-dateutil, python2-dateutil,
  python-dateutil-2, python2-dateutil-2)[home-page]: Update URL.

7 years agognu: Add r-optparse.
Roel Janssen [Wed, 19 Oct 2016 08:48:56 +0000 (10:48 +0200)]
gnu: Add r-optparse.

* gnu/packages/bioinformatics.scm (r-optparse): New variable.

7 years agognu: Add r-getopt.
Roel Janssen [Wed, 19 Oct 2016 07:55:45 +0000 (09:55 +0200)]
gnu: Add r-getopt.

* gnu/packages/bioinformatics.scm (r-getopt): New variable.

7 years agognu: Add GHC 8.0.1.
Federico Beffa [Sun, 16 Oct 2016 15:01:46 +0000 (17:01 +0200)]
gnu: Add GHC 8.0.1.

* gnu/packages/haskell.scm (ghc-8): New variable.

7 years agognu: Add ghc-hashtables.
Federico Beffa [Sun, 16 Oct 2016 14:55:18 +0000 (16:55 +0200)]
gnu: Add ghc-hashtables.

* gnu/packages/haskell.scm (ghc-hashtables): New variable.

7 years agognu: Add ghc-easyplot.
Federico Beffa [Sun, 16 Oct 2016 14:53:06 +0000 (16:53 +0200)]
gnu: Add ghc-easyplot.

* gnu/packages/haskell.scm (ghc-easyplot): New variable.

7 years agognu: Add ghc-hmatrix-gsl-stats.
Federico Beffa [Sun, 16 Oct 2016 14:32:03 +0000 (16:32 +0200)]
gnu: Add ghc-hmatrix-gsl-stats.

* gnu/packages/haskell.scm (ghc-hmatrix-gsl-stats): New variable.

7 years agognu: Add ghc-hmatrix-special.
Federico Beffa [Sun, 16 Oct 2016 14:29:51 +0000 (16:29 +0200)]
gnu: Add ghc-hmatrix-special.

* gnu/packages/haskell.scm (ghc-hmatrix-special): New variable.

7 years agognu: Add ghc-hmatrix-gsl.
Federico Beffa [Sun, 16 Oct 2016 14:27:41 +0000 (16:27 +0200)]
gnu: Add ghc-hmatrix-gsl.

* gnu/packages/haskell.scm (ghc-hmatrix-gsl): New variable.

7 years agognu: Add ghc-hmatrix.
Federico Beffa [Sun, 16 Oct 2016 14:25:26 +0000 (16:25 +0200)]
gnu: Add ghc-hmatrix.

* gnu/packages/haskell.scm (ghc-hmatrix): New variable.

7 years agognu: Add ghc-storable-complex.
Federico Beffa [Sun, 16 Oct 2016 14:19:32 +0000 (16:19 +0200)]
gnu: Add ghc-storable-complex.

* gnu/packages/haskell.scm (ghc-storable-complex): New variable.

7 years agognu: Add chez-fmt.
Federico Beffa [Sun, 16 Oct 2016 14:12:25 +0000 (16:12 +0200)]
gnu: Add chez-fmt.

* gnu/packages/chez.scm (chez-fmt): New variable.

7 years agognu: Add chez-irregex.
Federico Beffa [Sun, 16 Oct 2016 14:10:31 +0000 (16:10 +0200)]
gnu: Add chez-irregex.

* gnu/packages/chez.scm (chez-irregex): New variable.

7 years agognu: Add chez-matchable
Federico Beffa [Tue, 18 Oct 2016 07:16:06 +0000 (09:16 +0200)]
gnu: Add chez-matchable

* gnu/packages/chez.scm (chez-matchable): New variable.

7 years agognu: Add chez-sockets
Federico Beffa [Tue, 18 Oct 2016 07:14:34 +0000 (09:14 +0200)]
gnu: Add chez-sockets

* gnu/packages/chez.scm (chez-sockets): New variable.

7 years agognu: Add chez-web
Federico Beffa [Sun, 16 Oct 2016 13:59:49 +0000 (15:59 +0200)]
gnu: Add chez-web

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

7 years agognu: Add chez-srfi.
Federico Beffa [Sun, 16 Oct 2016 13:49:36 +0000 (15:49 +0200)]
gnu: Add chez-srfi.

* gnu/packages/chez.scm (chez-srfi): New variable.

7 years agognu: chez-scheme: Move to new module.
Federico Beffa [Mon, 17 Oct 2016 07:05:39 +0000 (09:05 +0200)]
gnu: chez-scheme: Move to new module.

* gnu/packages/scheme.scm (chez-scheme, nanopass, stex): Move variables ...
* gnu/packages/chez.scm (chez-scheme, nanopass, stex): ... here. New module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add new file.

7 years agognu: chez-scheme: Fix i686 build.
Federico Beffa [Mon, 17 Oct 2016 07:01:11 +0000 (09:01 +0200)]
gnu: chez-scheme: Fix i686 build.

* gnu/packages/scheme.scm (chez-scheme): Add 'configure-flags', generalize
  'configure' phase and simplify 'install-doc' phase.

7 years agognu: chez-scheme: Add search-path.
Federico Beffa [Mon, 17 Oct 2016 06:52:48 +0000 (08:52 +0200)]
gnu: chez-scheme: Add search-path.

* gnu/packages/scheme.scm (chez-scheme)[native-search-paths]: New field.

7 years agobuild: Remove reference to nonexistant patch file.
Christopher Allan Webber [Wed, 19 Oct 2016 02:31:32 +0000 (21:31 -0500)]
build: Remove reference to nonexistant patch file.

* gnu/local.mk: Remove reference to kobodeluxe-spelling.patch,
  which was removed during a revision to the submitted kobodeluxe package.

7 years agognu: kobodeluxe: Indicate origin of kobodeluxe-paths.patch.
Christopher Allan Webber [Wed, 19 Oct 2016 01:33:47 +0000 (20:33 -0500)]
gnu: kobodeluxe: Indicate origin of kobodeluxe-paths.patch.

* gnu/packages/patches/kobodeluxe-paths.patch: Update header, pointing
  to Debian tarball for provenance.

7 years agognu: mariadb: Update to 10.1.18.
Leo Famulari [Wed, 19 Oct 2016 00:41:17 +0000 (20:41 -0400)]
gnu: mariadb: Update to 10.1.18.

* gnu/packages/databases.scm (mariadb): Update to 10.1.18.

7 years agognu: mysql: Update to 5.7.16.
Leo Famulari [Wed, 19 Oct 2016 00:40:54 +0000 (20:40 -0400)]
gnu: mysql: Update to 5.7.16.

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

7 years agognu: Add kobodeluxe.
Stephen Webber [Sun, 16 Oct 2016 20:04:35 +0000 (15:04 -0500)]
gnu: Add kobodeluxe.

* gnu/packages/games.scm (kobodeluxe): New variable.
* gnu/packages/patches/kobodeluxe-paths.patch: New file.
* gnu/packages/patches/kobodeluxe-enemies-pipe-decl.patch: New file.
* gnu/packages/patches/kobodeluxe-const-charp-conversion.patch: New file.
* gnu/packages/patches/kobodeluxe-manpage-minus-not-hyphen.patch: New file.
* gnu/packages/patches/kobodeluxe-midicon-segmentation-fault.patch: New file.
* gnu/packages/patches/kobodeluxe-graphics-window-signed-char.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.

7 years agognu: torsocks: Update to 2.2.0.
ng0 [Tue, 18 Oct 2016 18:15:55 +0000 (18:15 +0000)]
gnu: torsocks: Update to 2.2.0.

* gnu/packages/patches/torsocks-dns-test.patch: Delete file.
* gnu/local.mk: Remove it.
* gnu/packages/tor.scm (torsocks): Update to 2.2.0.
[source]: Remove patch. Change method from 'git-fetch' to 'url-fetch'.
Remove 'file-name'.
[arguments]: Remove 'bootstrap' phase.
[native-inputs]: Remove autoconf, automake and libtool. Also remove
obsoleted perl-test-harness.
[home-page]: Use https URL.
(define-module): Don't import perl.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
7 years agognu: hdf4: Really fix non-x86 architectures.
Andreas Enge [Tue, 18 Oct 2016 19:15:43 +0000 (21:15 +0200)]
gnu: hdf4: Really fix non-x86 architectures.

This is a follow-up to commit 60da9fb1100787c49ed4910eacf50e83c6462dcc.

* gnu/local.mk (dist_patch_DATA): Register patch.
* gnu/packages/maths.scm (hdf4)[source]: Add patch.

7 years agognu: enlightenment: Update to 0.21.3.
Efraim Flashner [Tue, 18 Oct 2016 05:57:23 +0000 (08:57 +0300)]
gnu: enlightenment: Update to 0.21.3.

* gnu/packages/enlightenment.scm (enlightenment): Update to 0.21.3.

7 years agognu: dbus: Fix bad 'origin' form in dbus-1.10.12.
Mark H Weaver [Tue, 18 Oct 2016 01:04:57 +0000 (21:04 -0400)]
gnu: dbus: Fix bad 'origin' form in dbus-1.10.12.

This is a followup to commit dcaf70897a0bad38a4638a2905aaa3c46b1f1402.

* gnu/packages/glib.scm (dbus-1.10.12)[source]: Remove unneeded 'method'
field, so that 'inherit' comes first.

7 years agografts: Remove unnecessary 'umask' call.
Ludovic Courtès [Mon, 17 Oct 2016 21:55:28 +0000 (23:55 +0200)]
grafts: Remove unnecessary 'umask' call.

This is a followup to d72267863382041b84a9712eea354882be72ef55.

* guix/build/graft.scm (rewrite-directory): Remove 'umask' call.

7 years agografts: Apply the right grafts in the presence of multiple outputs.
Ludovic Courtès [Mon, 17 Oct 2016 21:43:33 +0000 (23:43 +0200)]
grafts: Apply the right grafts in the presence of multiple outputs.

Fixes <http://bugs.gnu.org/24712>.

* guix/grafts.scm (cumulative-grafts): Add grafts for all the outputs of
DRV.
* tests/grafts.scm ("graft-derivation, replaced derivation has multiple
outputs"): New test.

7 years agoguix build: Add '--with-graft'.
Ludovic Courtès [Mon, 17 Oct 2016 21:40:03 +0000 (23:40 +0200)]
guix build: Add '--with-graft'.

* guix/scripts/build.scm (transform-package-inputs/graft): New procedure.
(%transformations): Add 'with-graft'.
(%transformation-options): Likewise.
(show-transformation-options-help): Document it.
* tests/scripts-build.scm ("options->transformation, with-graft"): New
test.
* doc/guix.texi (Package Transformation Options): Document it.

7 years agoguix build: Factorize transformation option parsing.
Ludovic Courtès [Mon, 17 Oct 2016 20:51:38 +0000 (22:51 +0200)]
guix build: Factorize transformation option parsing.

* guix/scripts/build.scm (%transformation-options): Introduce 'parser'
procedure and use it.

7 years agoguix build: Extract '--with-input' replacement spec parsing.
Ludovic Courtès [Mon, 17 Oct 2016 20:43:49 +0000 (22:43 +0200)]
guix build: Extract '--with-input' replacement spec parsing.

* guix/scripts/build.scm (evaluate-replacement-specs): New procedure.
(transform-package-inputs)[not-equal]: Remove.
[replacements]: Define in terms of 'evaluate-replacement-specs'.

7 years agognu: tor: Update to 0.2.8.9.
Efraim Flashner [Mon, 17 Oct 2016 21:25:30 +0000 (00:25 +0300)]
gnu: tor: Update to 0.2.8.9.

* gnu/packages/tor.scm (tor): Update to 0.2.8.9.

7 years agognu: vapoursynth: Update to 34.
Efraim Flashner [Mon, 17 Oct 2016 21:08:09 +0000 (00:08 +0300)]
gnu: vapoursynth: Update to 34.

* gnu/packages/video.scm (vapoursynth): Update to 34.

7 years agognu: zimg: Update to 2.3.
Efraim Flashner [Mon, 17 Oct 2016 21:07:20 +0000 (00:07 +0300)]
gnu: zimg: Update to 2.3.

* gnu/packages/image.scm (zimg): Update to 2.3.

7 years agognu: jasper: Update to 1.900.5.
Efraim Flashner [Mon, 17 Oct 2016 20:47:14 +0000 (23:47 +0300)]
gnu: jasper: Update to 1.900.5.

* gnu/packages/image.scm (jasper): Update to 1.900.5.
[source]: Remove patches.
[native-inputs]: Remove unzip.
* gnu/packages/patches/jasper-CVE-2007-2721.patch,
gnu/packages/patches/jasper-CVE-2008-3520.patch,
gnu/packages/patches/jasper-CVE-2008-3522.patch,
gnu/packages/patches/jasper-CVE-2011-4516-and-CVE-2011-4517.patch,
gnu/packages/patches/jasper-CVE-2014-8137.patch,
gnu/packages/patches/jasper-CVE-2014-8138.patch,
gnu/packages/patches/jasper-CVE-2014-8157.patch,
gnu/packages/patches/jasper-CVE-2014-8158.patch,
gnu/packages/patches/jasper-CVE-2014-9029.patch,
gnu/packages/patches/jasper-CVE-2016-1577.patch,
gnu/packages/patches/jasper-CVE-2016-1867.patch,
gnu/packages/patches/jasper-CVE-2016-2089.patch,
gnu/packages/patches/jasper-CVE-2016-2116.patch: Delete files.
* gnu/local.mk (dist_patch_DATA): Remove them.

7 years agoMerge branch 'master' into core-updates
Mark H Weaver [Mon, 17 Oct 2016 20:47:12 +0000 (16:47 -0400)]
Merge branch 'master' into core-updates

7 years agognu: diffoscope: Update to 61.
Leo Famulari [Mon, 17 Oct 2016 20:38:21 +0000 (16:38 -0400)]
gnu: diffoscope: Update to 61.

* gnu/packages/package-management.scm (diffoscope): Update to 61.

7 years agognu: guile-lib: Update to 0.2.3.
Ludovic Courtès [Mon, 17 Oct 2016 20:04:27 +0000 (22:04 +0200)]
gnu: guile-lib: Update to 0.2.3.

* gnu/packages/guile.scm (guile-lib): Update to 0.2.3.
[arguments]: Adjust 'patch-module-dir' to change both 'moddir' and
'godir'; use '@GUILE_EFFECTIVE_VERSION@' instead of a hard-coded
"2.0".  Add 'check' phase.
[native-inputs]: New field.

7 years agognu: guile-lib: Use 'modify-phases'.
Ludovic Courtès [Mon, 17 Oct 2016 19:48:08 +0000 (21:48 +0200)]
gnu: guile-lib: Use 'modify-phases'.

* gnu/packages/guile.scm (guile-lib)[arguments]: Use 'modify-phases'.

7 years agognu: recutils: Adjust to Bash 4.4.
Ludovic Courtès [Mon, 17 Oct 2016 19:36:25 +0000 (21:36 +0200)]
gnu: recutils: Adjust to Bash 4.4.

* gnu/packages/databases.scm (recutils)[arguments]: Add
'set-bash4.4-header-location' phase.

7 years agognu: openssh: Enable kerberos features.
John Darrington [Sun, 16 Oct 2016 06:31:55 +0000 (08:31 +0200)]
gnu: openssh: Enable kerberos features.

* gnu/packages/ssh.scm (openssh) [arguments]: Add flag --with-kerberos5.
[inputs]: Add mit-krb5.

7 years agognu: linux-libre: Update to 4.8.2.
Mark H Weaver [Mon, 17 Oct 2016 19:23:46 +0000 (15:23 -0400)]
gnu: linux-libre: Update to 4.8.2.

* gnu/packages/linux.scm (%linux-libre-version, %linux-libre-hash)
(linux-libre): Update to 4.8.2.

7 years agognu: linux-libre@4.4: Update to 4.4.25.
Mark H Weaver [Mon, 17 Oct 2016 19:22:33 +0000 (15:22 -0400)]
gnu: linux-libre@4.4: Update to 4.4.25.

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

7 years agognu: Add xpad.
Rene Saavedra [Sun, 16 Oct 2016 02:51:25 +0000 (21:51 -0500)]
gnu: Add xpad.

* gnu/packages/gnome.scm (xpad): New variable.

Signed-off-by: Kei Kebreau <kei@openmailbox.org>
7 years agognu: python-requests-toolbelt: Fix build failure by adding missing dependencies.
Leo Famulari [Sun, 16 Oct 2016 17:18:12 +0000 (13:18 -0400)]
gnu: python-requests-toolbelt: Fix build failure by adding missing dependencies.

* gnu/packages/python.scm (python-requests-toolbelt)[native-inputs]: Add
python-betamax, python-mock and python-pytest.

7 years agognu: Add python-betamax.
Leo Famulari [Sun, 16 Oct 2016 17:15:46 +0000 (13:15 -0400)]
gnu: Add python-betamax.

* gnu/packages/python.scm (python-betamax, python2-betamax): New variables.

7 years agognu: python-vobject: Disable the test suite.
Leo Famulari [Sun, 16 Oct 2016 17:05:30 +0000 (13:05 -0400)]
gnu: python-vobject: Disable the test suite.

The tests were silently skipped with Python 3.4. With Python 3.5, this caused
the python-vobject build to fail.

* gnu/packages/python.scm (python-vobject, python2-vobject)[arguments]: Disable
the tests.

7 years agognu: python-wsgi-intercept: Fix build failure with Python 3.5.
Leo Famulari [Sun, 16 Oct 2016 16:53:18 +0000 (12:53 -0400)]
gnu: python-wsgi-intercept: Fix build failure with Python 3.5.

* gnu/packages/python.scm (python-wsgi-intercept)[native-inputs]:
Add python-urllib3.

7 years agognu: Add rcas-web.
Ricardo Wurmus [Wed, 12 Oct 2016 15:12:45 +0000 (17:12 +0200)]
gnu: Add rcas-web.

* gnu/packages/bioinformatics.scm (rcas-web): New variable.

7 years agognu: Add r-rcas.
Ricardo Wurmus [Wed, 12 Oct 2016 15:12:44 +0000 (17:12 +0200)]
gnu: Add r-rcas.

* gnu/packages/bioinformatics.scm (r-rcas): New variable.

7 years agognu: irrlicht: Update to 1.8.4.
Ricardo Wurmus [Mon, 17 Oct 2016 06:48:06 +0000 (08:48 +0200)]
gnu: irrlicht: Update to 1.8.4.

* gnu/packages/games.scm (irrlicht): Update to 1.8.4.
[arguments]: Delete phase "apply-patch/mesa-10-fix".
[native-inputs]: Remove "patch/mesa-10-fix".
* gnu/packages/patches/irrlicht-mesa-10.patch: Delete file.
* gnu/local.mk (dist_path_DATA): Remove irrlicht patch.

7 years agognu: extremetuxracer: Update to 0.7.3.
Ricardo Wurmus [Sun, 16 Oct 2016 18:16:19 +0000 (20:16 +0200)]
gnu: extremetuxracer: Update to 0.7.3.

* gnu/packages/games.scm (extremetuxracer): Update to 0.7.3.
[inputs]: Remove freetype, mesa, libice, libpng, sdl, sdl-mixer,
sdl-image, libsm, libunwind, libx11, libext, libxi, libxmu, libxt, tcl,
zlib; add sfml.
[arguments]: Remove field.

7 years agognu: sfml: Install pkgconfig files.
Ricardo Wurmus [Sun, 16 Oct 2016 18:07:09 +0000 (20:07 +0200)]
gnu: sfml: Install pkgconfig files.

* gnu/packages/game-development.scm (sfml)[arguments]: Add configure
flag to install pkgconfig files.

7 years agognu: artanis: Remove implied $(DESTDIR) usage.
Adonay Felipe Nogueira [Mon, 17 Oct 2016 12:47:21 +0000 (10:47 -0200)]
gnu: artanis: Remove implied $(DESTDIR) usage.

* gnu/packages/patches/artanis-fix-Makefile.in.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register patch.
* gnu/packages/guile.scm (artanis)[source]: Use patch.
[arguments]: Remove DESTDIR from #:make-flags.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
7 years agognu: wrap-python3: Use a bash wrapper for 'python3-config'.
宋文武 [Sun, 16 Oct 2016 02:44:29 +0000 (10:44 +0800)]
gnu: wrap-python3:  Use a bash wrapper for 'python3-config'.

See <http://lists.gnu.org/archive/html/guix-devel/2016-07/msg00008.html>
for details.

* gnu/packages/python.scm (wrap-python3)[arguments]: Use a bash wrapper
instead of a symlink for python3-config.

7 years agognu: node: Update to 6.8.0.
Al McElrath [Fri, 14 Oct 2016 23:39:44 +0000 (16:39 -0700)]
gnu: node: Update to 6.8.0.

Remove <https://debbugs.gnu.org/23744> and
<https://debbugs.gnu.org/23723> workaround.

* gnu/packages/node.scm (node): Update to 6.8.0.
  (node)[arguments]: Disabled more tests. Remove custom 'patch-shebangs'
  phase. Manually patch npm script shebang in new 'patch-npm-shebang'
  phase.
* gnu/packages/patches/node-9077.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add patches.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
7 years agognu: ruby-json-pure: Fix tests.
Ben Woodcroft [Mon, 17 Oct 2016 09:13:38 +0000 (19:13 +1000)]
gnu: ruby-json-pure: Fix tests.

* gnu/packages/ruby.scm (ruby-json-pure)[arguments]: Remove unneeded
reference to 'json-java.gemspec' in 'Gemfile'.

7 years agognu: bundler: Update to 1.13.5.
Ben Woodcroft [Mon, 17 Oct 2016 08:27:27 +0000 (18:27 +1000)]
gnu: bundler: Update to 1.13.5.

* gnu/packages/ruby.scm (bundler): Update to 1.13.5.

7 years agognu: Add geierlein.
Hartmut Goebel [Mon, 17 Oct 2016 08:39:21 +0000 (10:39 +0200)]
gnu: Add geierlein.

* gnu/packages/finance.scm (geierlein): New variable.

7 years agognu: Add sslh.
Tobias Geerinckx-Rice [Sun, 11 Sep 2016 13:41:07 +0000 (15:41 +0200)]
gnu: Add sslh.

* gnu/packages/networking.scm (sslh): New variable.

7 years agognu: httping: Update to 2.5.
Tobias Geerinckx-Rice [Thu, 13 Oct 2016 14:58:08 +0000 (16:58 +0200)]
gnu: httping: Update to 2.5.

* gnu/packages/networking.scm (httping): Update to 2.5.

7 years agognu: Add fbida.
Julien Lepiller [Sat, 15 Oct 2016 12:40:30 +0000 (14:40 +0200)]
gnu: Add fbida.

* gnu/packages/pdf.scm (fbida): New variable.

7 years agoimport: utils: Remove dependency on (json) module.
Alex Kost [Sat, 15 Oct 2016 16:41:35 +0000 (19:41 +0300)]
import: utils: Remove dependency on (json) module.

This fixes a regression introduced by commit
fbe9c1012820ab72f022a6ec958c35b431ae7a74.

* guix/import/utils.scm: Remove unused (json) module.

7 years agognu: python-requests-mock: Fix build failure with Python 3.5.
Leo Famulari [Sun, 16 Oct 2016 15:37:47 +0000 (11:37 -0400)]
gnu: python-requests-mock: Fix build failure with Python 3.5.

* gnu/packages/openstack.scm (python-requests-mock,
python2-requests-mock)[native-inputs]: Add python-docutils.

7 years agognu: xonsh: Disable the test suite.
Leo Famulari [Sun, 16 Oct 2016 15:09:11 +0000 (11:09 -0400)]
gnu: xonsh: Disable the test suite.

The tests were silently skipped with Python 3.4. With Python 3.5, this caused
the xonsh build to fail.

* gnu/packages/shells.scm (xonsh)[arguments]: Disable the tests.

7 years agognu: hdf4: Fix non-x86 architectures.
Andreas Enge [Sun, 16 Oct 2016 15:00:56 +0000 (17:00 +0200)]
gnu: hdf4: Fix non-x86 architectures.

* gnu/packages/patches/hdf4-architectures.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register patch.
* gnu/packages/maths.scm (hdf4)[source]: Add patch.

7 years agognu: certbot, python-acme: Update to 0.9.3.
Leo Famulari [Fri, 7 Oct 2016 05:39:34 +0000 (01:39 -0400)]
gnu: certbot, python-acme: Update to 0.9.3.

These packages should be updated together.

* gnu/packages/tls.scm (certbot): Update to 0.9.3.
[source]: Use pypi-uri.
(python-acme, python2-acme): Update to 0.9.3.
[source]: Use pypi-uri.

7 years agognu: python-dnspython: Update to 0.15.0.
Leo Famulari [Fri, 7 Oct 2016 06:21:04 +0000 (02:21 -0400)]
gnu: python-dnspython: Update to 0.15.0.

* gnu/packages/python.scm (python-dnspython, python2-dnspython): Update
to 0.15.0.

7 years agognu: python-werkzeug: Update to 0.11.11.
Leo Famulari [Fri, 7 Oct 2016 05:37:46 +0000 (01:37 -0400)]
gnu: python-werkzeug: Update to 0.11.11.

* gnu/packages/python.scm (python-werkzeug, python2-werkzeug):
Update to 0.11.11.

7 years agognu: python-pyopenssl: Update to 16.1.0.
Leo Famulari [Fri, 7 Oct 2016 05:33:59 +0000 (01:33 -0400)]
gnu: python-pyopenssl: Update to 16.1.0.

* gnu/packages/python.scm (python-pyopenssl, python2-pyopenssl): Update
to 16.1.0
[source]: Use pypi-uri.

7 years agognu: python-pyasn1: Update to 0.1.9.
Leo Famulari [Fri, 7 Oct 2016 05:30:09 +0000 (01:30 -0400)]
gnu: python-pyasn1: Update to 0.1.9.

* gnu/packages/python.scm (python-pyasn1, python2-pyasn1): Update to 0.1.9.
[source]: Use pypi-uri.

7 years agognu: Add python-whoosh.
Ricardo Wurmus [Thu, 13 Oct 2016 08:56:54 +0000 (10:56 +0200)]
gnu: Add python-whoosh.

* gnu/packages/python.scm (python-whoosh, python2-whoosh): New variables.

7 years agognu: Add arm-none-eabi-toolchain variants.
Theodoros Foradis [Sun, 16 Oct 2016 09:27:21 +0000 (11:27 +0200)]
gnu: Add arm-none-eabi-toolchain variants.

* gnu/packages/embedded.scm (arm-none-eabi-toolchain): New procedure.
(arm-none-eabi-toolchain-4.9, arm-none-eabi-nano-toolchain-4.9,
arm-none-eabi-toolchain-6, arm-none-eabi-nano-toolchain-6): New
variables.

Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
7 years agognu: Add arm-none-eabi-gcc-6.
Theodoros Foradis [Mon, 19 Sep 2016 20:23:38 +0000 (23:23 +0300)]
gnu: Add arm-none-eabi-gcc-6.

* gnu/packages/embedded.scm (gcc-arm-none-eabi-6): New variable.
* gnu/packages/patches/gcc-6-arm-none-eabi-multilib.patch: New file.
* gnu/packages/patches/gcc-6-cross-environment-variables.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add the patches.

7 years agognu: python-ndg-httpsclient: Disable tests.
Leo Famulari [Sun, 16 Oct 2016 02:41:42 +0000 (22:41 -0400)]
gnu: python-ndg-httpsclient: Disable tests.

The tests were silently skipped with Python 3.4. With Python 3.5, this caused
the python-ndg-httpsclient build to fail.

* gnu/packages/python.scm (python-ndg-httpsclient)[arguments]: Disable tests.

7 years agognu: python-execnet: Disable tests.
Leo Famulari [Sun, 16 Oct 2016 02:16:30 +0000 (22:16 -0400)]
gnu: python-execnet: Disable tests.

The tests were silently skipped with Python 3.4. With Python 3.5, this
caused the python-execnet build to fail.

* gnu/packages/python.scm (python-execnet, python2-execnet)[arguments]: Disable
tests.

7 years agognu: youtube-dl: Disable the tests.
Leo Famulari [Sun, 16 Oct 2016 01:12:22 +0000 (21:12 -0400)]
gnu: youtube-dl: Disable the tests.

The tests were silently skipped with Python 3.4. With Python 3.5, this
caused the youtube-dl build to fail.

* gnu/packages/video.scm (youtube-dl)[arguments]: Disable tests.

7 years agognu: youtube-dl: Update to 2016-10-16.
Leo Famulari [Sun, 16 Oct 2016 01:08:35 +0000 (21:08 -0400)]
gnu: youtube-dl: Update to 2016-10-16.

* gnu/packages/video.scm (youtube-dl): Update to 2016-10-16.

7 years agognu: youtube-dl: Update to 2016-10-16.
Leo Famulari [Sun, 16 Oct 2016 01:08:35 +0000 (21:08 -0400)]
gnu: youtube-dl: Update to 2016-10-16.

* gnu/packages/video.scm (youtube-dl): Update to 2016-10-16.

7 years agognu: radicale: Run the test suite with py.test.
Leo Famulari [Sun, 16 Oct 2016 00:25:07 +0000 (20:25 -0400)]
gnu: radicale: Run the test suite with py.test.

* gnu/packages/dav.scm (radicale)[native-inputs]: Add python-pytest.
[arguments]: Replace the 'check' phase and run the tests with python-pytest.