aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-04-11gnu: elfutils: Work around PTRACE_ATTACH-induced test failures.Ludovic Courtès
* gnu/packages/patches/elfutils-tests-ptrace.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/elf.scm (elfutils)[source]: Use it.
2015-04-11packages: 'package-transitive-supported-systems' accounts for implicit inputs.Ludovic Courtès
Reported by Federico Beffa. * guix/packages.scm (package-transitive-supported-systems): Use bag-direct-inputs + package->bag rather than package-direct-inputs. * tests/packages.scm ("package-transitive-supported-systems"): Add explicit 'build-system' field to each 'dummy-package' form. ("package-transitive-supported-systems, implicit inputs"): New test.
2015-04-11packages: Add 'bag-direct-inputs'.Ludovic Courtès
* guix/packages.scm (bag-direct-inputs): New procedure. (bag-transitive-inputs): Use it.
2015-04-11gnu: nspr: Add $libdir to the RUNPATH of binaries.Ludovic Courtès
* gnu/packages/gnuzilla.scm (nspr)[arguments]: Add LDFLAGS=-Wl,-rpath=$libdir to #:configure-flags.
2015-04-11gnu: netpbm: Remove non-FSDG-compliant code in 'snippet'.Ludovic Courtès
* gnu/packages/netpbm.scm (netpbm)[source]: Add 'file-name', 'modules', and 'snippet'. [arguments]: Remove 'substitute*' uses that removed non-FSDG-compliant code since this is now done in 'snippet'.
2015-04-11gnu: iptables: Add $libdir to the RUNPATH of executables.宋文武
* gnu/packages/linux.scm (iptables)[arguments]: Add #:configure-flags.
2015-04-11gnu: libcap: Add $libdir to the RUNPATH of executables.宋文武
* gnu/packages/linux.scm (libcap)[arguments]: Set LDFLAGS to '-Wl,-rpath=...' in Make.Rules.
2015-04-11gnu: cdparanoia: Don't use patchelf.宋文武
* gnu/packages/cdrom.scm (cdparanoia): Remove 'patchelf' from inputs. [arguments]: Remove #:modules, #:imported-modules and #:phases. Pass 'LDFLAGS=-Wl,-rpath=...' as #:configure-flags. [origin]: Add 'snippet'.
2015-04-11gnu: netpbm: Add $libdir to the RUNPATH of binaries.宋文武
* gnu/packages/netpbm.scm (netpbm)[arguments]: Add 'LDFLAGS += -Wl,-rpath=...' to config.mk in the configure phase.
2015-04-11gnu: subversion: Add $libdir to the RUNPATH of Perl bindings.宋文武
Fixes <http://bugs.gnu.org/20052>. * gnu/packages/version-control.scm (subversion)[arguments]: Pass '-Wl,-rpath=...' as OTHERLDFLAGS in install-perl-bindings phase.
2015-04-10gnu: boost: Add $libdir to the RUNPATH of libraries.Ludovic Courtès
* gnu/packages/boost.scm (boost)[arguments]: Add -Wl,-rpath=... to BUILD-FLAGS. Remove 'check' phase and use #:tests? #f instead.
2015-04-10gnu: libtool: Leave out the test suite workarounds.Ludovic Courtès
They are no longer needed since the latest ld-wrapper changes (commit 51d0cd9.) * gnu/packages/patches/libtool-skip-tests2.patch: New file. * gnu/packages/autotools.scm (libtool)[source]: Use it. * gnu-system.am (dist_patch_DATA): Add it.
2015-04-10gnu: libvpx: Augment rpath.宋文武
Fixes <http://bugs.gnu.org/20055>. * gnu/packages/video.scm (libvpx)[arguments]: Set LDFLAGS to '-Wl,-rpath=$out/lib' in configure phase.
2015-04-10gnu: Add missing quotes in phase names passed to 'modify-phases'.Ludovic Courtès
This is a followup to f8503e2. * gnu/packages/gnome.scm (glib-networking): Add missing quotes before phase names passed to 'modify-phases'. (libsoup): Likewise. (gnome-terminal): Likewise. (colord): Likewise. (geoclue): Likewise. * gnu/packages/gtk.scm (at-spi2-core, at-spi2-atk): Likewise. * gnu/packages/haskell.scm (ghc-network): Likewise. * gnu/packages/imagemagick.scm (perl-image-magick): Likewise. * gnu/packages/video.scm (aalib): Likewise. * gnu/packages/web.scm (nginx): Likewise.
2015-04-10gnu: Fix incorrect references to %GNU-BUILD-SYSTEM-MODULES.Ludovic Courtès
Fixes a regression introduced in 8ff3df5. * gnu/packages/emacs.scm (emacs-w3m)[arguments]: Use quasiquote, not quote. (emacs-wget)[arguments]: Likewise, and use unquote-splicing for %GNU-BUILD-SYSTEM-MODULES. (emms): Likewise. * gnu/packages/haskell.scm (ghc): Likewise. * gnu/packages/samba.scm (samba): Likewise.
2015-04-10lint: Report patches that cannot be found.Ludovic Courtès
* guix/scripts/lint.scm (check-patch-file-names): Wrap body in 'guard'. * tests/lint.scm ("patches: not found"): New test.
2015-04-10lint: Rename 'check-patches' to 'check-patch-file-names'.Ludovic Courtès
* guix/scripts/lint.scm (check-patches): Rename to... (check-patch-file-names): ... this. Rename 'filename' to 'file'. (%checkers): Adjust accordingly. * tests/lint.scm ("patches: file names"): Likewise.
2015-04-10gnu: curl: Update to 7.41.0. Support CURLOPT_CAPATH on GnuTLS.Tomáš Čech
Fixes <http://bugs.gnu.org/20121>. * gnu/packages/patches/curl-gss-api-fix.patch: Delete file. * gnu/packages/patches/curl-support-capath-on-gnutls.patch, gnu/packages/patches/curl-support-capath-on-gnutls-conf.patch: New files. * gnu-system.am (dist_patch_DATA): Add new patches and remove old one. * gnu/packages/curl.scm (curl): Update to 7.41.0. Add new patches and remove old one. Disable one unit test. Modified-By: Mark H Weaver <mhw@netris.org>
2015-04-10gnu: gnome-themes-standard: Update to 3.16.0.宋文武
This is a followup to 12f7f4a. * gnu/packages/gnome.scm (gnome-themes-standard): Update hash.
2015-04-09gnu: python-2: Restore python-libffi-mips-n32-fix.patch.Mark H Weaver
This patch was removed in 08c045091e8d8da3b4c677540ed577e8f2448b0d, but it's still needed for python-2. * gnu/packages/patches/python-libffi-mips-n32-fix.patch: Restore it. * gnu-system.am (dist_patch_DATA): Add it back.
2015-04-10python: Update to 3.4.3Cyril Roelandt
* gnu/packages/python.scm (python): Update from 3.3.5 to 3.4.3. * gnu/packages/patches/python-fix-tests.patch: Update the required test fixes. * gnu/packages/patches/python-libffi-mips-n32-fix.patch: Remove it... * gnu-system.am (dist_patch_DATA): ... and do not reference it here.
2015-04-09gnu: Add geocode-glib.Andy Wingo
* gnu/packages/gnome.scm (geocode-glib): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2015-04-09gnu: gnome-desktop: Update to 3.16.0.Andy Wingo
* gnu/packages/gnome.scm (gnome-desktop): Update to 3.16.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2015-04-09Merge branch 'master' into core-updatesLudovic Courtès
2015-04-09gnu: libtasn1: Update to 4.4 [fix for CVE-2015-2806].Ludovic Courtès
* gnu/packages/gnutls.scm (libtasn1): Update to 4.4.
2015-04-09gnu: nettle: Update to 3.1.Ludovic Courtès
* gnu/packages/nettle.scm (nettle): Update to 3.1. Add 'arguments' field.
2015-04-09gnu: nettle: Make version 3 the default.Ludovic Courtès
* gnu/packages/nettle.scm (nettle): Rename to... (nettle-2): ... this. (nettle-3): Rename to... (nettle): ... this. * gnu/packages/gnutls.scm (gnutls): Use NETTLE-2. * gnu/packages/lsh.scm (lsh): Likewise.
2015-04-09gnu: gcc: Do not pass -dynamic-linker to linker when !shared on arm.Mark H Weaver
Fixes <http://bugs.gnu.org/20102>. * gnu/packages/patches/gcc-arm-link-spec-fix.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/gcc.scm (gcc-4.8, gcc-4.9): Add patch. * gnu/packages/cross-base.scm (cross-gcc): Preserve patches from gcc-4.8. Co-Authored-By: Ludovic Courtès <ludo@gnu.org>
2015-04-08http-client: Add workaround for HTTP pipelining on Guile <= 2.0.9.Ludovic Courtès
Reported by Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>. * guix/http-client.scm (make-delimited-input-port): New procedure. Install it in (web response) for Guile <= 2.0.9.
2015-04-08activation: Remove undeclared user accounts and groups.Ludovic Courtès
Fixes <http://bugs.gnu.org/19795>. Reported by David Thompson <dthompson2@worcester.edu>. * gnu/build/activation.scm (enumerate, current-users, current-groups, delete-user, delete-group): New procedures. (activate-users+groups): Add calls to 'delete-user' and 'delete-group'. * doc/guix.texi (User Accounts): Add a paragraph about statelessness. Explain that passwords are preserved.
2015-04-08gnu: Add ghc-http.Federico Beffa
* gnu/packages/haskell.scm (ghc-http): New variable.
2015-04-08gnu: Add ghc-network-uri.Federico Beffa
* gnu/packages/haskell.scm (ghc-network-uri): New variable.
2015-04-08gnu: Add ghc-network.Federico Beffa
* gnu/packages/haskell.scm (ghc-network): New variable.
2015-04-08gnu: Add ghc-vector.Federico Beffa
* gnu/packages/haskell.scm (ghc-vector): New variable.
2015-04-08gnu: Add ghc-parsec.Federico Beffa
* gnu/packages/haskell.scm (ghc-parsec): New variable.
2015-04-08gnu: Add ghc-split.Federico Beffa
* gnu/packages/haskell.scm (ghc-split): New variable.
2015-04-08gnu: Add ghc-unordered-containers.Federico Beffa
* gnu/packages/haskell.scm (ghc-unordered-containers): New variable.
2015-04-08gnu: Add ghc-fgl.Federico Beffa
* gnu/packages/haskell.scm (ghc-fgl): New variable.
2015-04-08gnu: Add ghc-containers.Federico Beffa
* gnu/packages/haskell.scm (ghc-containers): New variable.
2015-04-08gnu: Add ghc-syb.Federico Beffa
* gnu/packages/haskell.scm (ghc-syb): New variable.
2015-04-08gnu: Add ghc-case-insensitive.Federico Beffa
* gnu/packages/haskell.scm (ghc-case-insensitive): New variable.
2015-04-08gnu: Add ghc-quickcheck.Federico Beffa
* gnu/packages/haskell.scm (ghc-quickcheck): New variable.
2015-04-08gnu: Add ghc-tf-random.Federico Beffa
* gnu/packages/haskell.scm (ghc-tf-random): New variable.
2015-04-08gnu: Add ghc-primitive.Federico Beffa
* gnu/packages/haskell.scm (ghc-primitive): New variable.
2015-04-08gnu: Add ghc-random.Federico Beffa
* gnu/packages/haskell.scm (ghc-random): New variable.
2015-04-08gnu: Add ghc-hunitFederico Beffa
* gnu/packages/haskell.scm (ghc-hunit): New variable.
2015-04-08gnu: Add ghc-hashable.Federico Beffa
* gnu/packages/haskell.scm (ghc-hashable): New variable.
2015-04-08gnu: Add ghc-text.Federico Beffa
* gnu/packages/haskell.scm (ghc-text): New variable.
2015-04-08gnu: Add ghc-parallel.Federico Beffa
* gnu/packages/haskell.scm (ghc-parallel): New variable.
2015-04-08gnu: Add ghc-stm.Federico Beffa
* gnu/packages/haskell.scm (ghc-stm): New variable.