summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* guix package: Use 'search-path-as-list' instead of custom code.Ludovic Courtès2014-12-27
| | | | | | | This will handle the new 'file-type' and 'file-pattern' fields correctly. * guix/scripts/package.scm (search-path-environment-variables)[search-path-definition]: Rewrite in terms of 'search-path-as-list'.
* utils: Export 'search-path-as-list'.Ludovic Courtès2014-12-27
| | | | | * guix/build/utils.scm (search-path-as-list): Make public. * guix/scripts/environment.scm (for-each-search-path): Use it.
* packages: Add 'file-pattern' field to 'search-path-specification'.Ludovic Courtès2014-12-27
| | | | | | * guix/packages.scm (<search-path-specification>)[file-pattern]: New field. (search-path-specification->sexp): Honor it.
* build-support/gnu: Add support for file patterns in search paths.Ludovic Courtès2014-12-27
| | | | | | | | | * guix/build/utils.scm (search-path-as-list): Add #:pattern parameter and honor it. (set-path-environment-variable): Likewise, and pass it to 'search-path-as-list'. * guix/packages.scm (search-path-specification->sexp): Add PATTERN slot. * guix/build/gnu-build-system.scm (set-paths): Adjust accordingly.
* packages: Add 'file-type' field to 'search-path-specification'.Ludovic Courtès2014-12-27
| | | | | | | | | | | | | | | | | | Fixes <http://bugs.gnu.org/18033>. * guix/packages.scm (<search-path-specification>): Rename 'directories' field to 'files'. Add 'file-type'. (search-path-specification->sexp): Honor 'file-type'. * gnu/packages/autotools.scm, gnu/packages/bootstrap.scm, gnu/packages/cross-base.scm, gnu/packages/games.scm, gnu/packages/gcc.scm, gnu/packages/glib.scm, gnu/packages/guile.scm, gnu/packages/man.scm, gnu/packages/perl.scm, gnu/packages/pkg-config.scm, gnu/packages/python.scm, gnu/packages/ruby.scm, gnu/packages/xfce.scm: Change 'directories' to 'files'. * tests/packages.scm ("search paths"): Change 'directories' field to 'files'. * guix/scripts/environment.scm (for-each-search-path): Likewise.
* build-system/gnu: Strip with '--strip-all' instead of '--strip-debug'.Ludovic Courtès2014-12-27
| | | | | | | | | | This saves 19% on the 'bin' directory of Coreutils, and certainly helpful for things like Git's 'libexec' directory. * guix/build-system/gnu.scm (gnu-build): Change default value for #:strip-flags to '("--strip-all"). * guix/build/gnu-build-system.scm (strip): Ditto. * gnu/packages/linux.scm (linux-libre)[arguments]: Add #:strip-flags.
* gnu: Use patch --force instead of --batch.Mark H Weaver2014-12-27
| | | | | | * gnu/packages/linux.scm (linux-libre, net-tools): Pass "--force" to patch, instead of "--batch". * gnu/packages/mit-krb5.scm (mit-krb5): Ditto.
* build-system/gnu: Add support for non-directory search paths.Ludovic Courtès2014-12-27
| | | | | | | | | | | | | Partly fixes <http://bugs.gnu.org/18033>. * guix/build/utils.scm (search-path-as-list): Rename 'sub-directories' parameter to 'files'. Add #:type parameter and honor it. (set-path-environment-variable): Likewise. Pass #:type to 'search-path-as-list'. * guix/packages.scm (search-path-specification->sexp): Add 'directory as the last item of the tuple. * guix/build/gnu-build-system.scm (set-paths): Add 'type' to search-path pattern. Pass #:type to 'set-path-environment-variable'.
* gnu: gettext: Update to 0.19.4.Ludovic Courtès2014-12-27
| | | | * gnu/packages/gettext.scm (gnu-gettext): Update to 0.19.4.
* gnu: binutils: Update to 2.25.Ludovic Courtès2014-12-27
| | | | * gnu/packages/base.scm (binutils): Update to 2.25.
* gnu: m4: Remove already-applied patch.Mark H Weaver2014-12-26
| | | | | | * gnu/packages/patches/m4-readlink-EINVAL.patch: Remove file. * gnu-system.am (dist_patch_DATA): Remove it. * gnu/packages/m4.scm (m4): Remove patch.
* gnu: gcc-4.8: Update to 4.8.4.Ludovic Courtès2014-12-27
| | | | | | * gnu/packages/gcc.scm (gcc-4.8): Update to 4.8.4. Remove patch. * gnu/packages/patches/gcc-fix-pr61801.patch: Remove. * gnu-system.am (dist_patch_DATA): Adjust accordingly.
* Merge branch 'master' into core-updatesLudovic Courtès2014-12-26
|\
| * nls: Add French translation for packages.Ludovic Courtès2014-12-26
| |
| * gnu: Add pysam.Ricardo Wurmus2014-12-26
| | | | | | | | | | | | * gnu/packages/python.scm (python-pysam, python2-pysam): New variables. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * gnu: Add fastjar.Ricardo Wurmus2014-12-26
| | | | | | | | | | | | * gnu/packages/compression.scm (fastjar): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * gnu: qemu: Update to 2.2.0.Mark H Weaver2014-12-26
| | | | | | | | * gnu/packages/qemu.scm (qemu): Update to 2.2.0.
| * gnu: ntp: Update to 4.2.8.Mark H Weaver2014-12-25
| | | | | | | | | | * gnu/packages/ntp.scm (ntp): Update to 4.2.8. Add openssl to inputs. Add pkg-config to native-inputs. Change source URI to archive.ntp.org.
| * Revert "gnu: matplotlib: Comment out python2-matplotlib."Ludovic Courtès2014-12-23
| | | | | | | | This reverts commit afc720d34c43a2fcf0b5871226c15ad6c5f73697.
| * build-system/python: Fix 'package-with-explicit-python'.Ludovic Courtès2014-12-23
| | | | | | | | | | | | | | | | Reported by Federico Beffa <beffa@ieee.org> and Eric Bavier <ericbavier@gmail.com>. * guix/build-system/python.scm (package-with-explicit-python): Do nothing when P's build system is not PYTHON-BUILD-SYSTEM.
| * gnu: matplotlib: Comment out python2-matplotlib.Federico Beffa2014-12-23
| | | | | | | | | | | | * gnu/packages/python.scm (python2-matplotlib, python2-scipy, python2-numpy): Comment out python2-matplotlib and the packages making use of it as the generation of the derivation of these packages takes very long.
| * Optimize package-transitive-supported-systems.Mark H Weaver2014-12-21
| | | | | | | | | | | | * guix/packages.scm (first-value): Remove. (define-memoized/v): New macro. (package-transitive-supported-systems): Rewrite.
| * packages: Sort Scheme file lists used by 'fold-packages'.Ludovic Courtès2014-12-21
| | | | | | | | * gnu/packages.scm (scheme-files): Call 'sort' on result.
| * Really remove the 'nix-upstream' submodule.Mark H Weaver2014-12-20
| | | | | | | | * nix-upstream: Remove subproject.
| * gnu: Add xfce4-terminal.宋文武2014-12-20
| | | | | | | | * gnu/packages/xfce.scm (xfce4-terminal): New variable.
| * gnu: Add vte.宋文武2014-12-20
| | | | | | | | * gnu/packages/gnome.scm (vte, vte/gtk+-2): New variables.
| * services: xorg: Make SLiM sessions configurable.宋文武2014-12-20
| | | | | | | | | | | | | | | | * gnu/services/xorg.scm (%default-xsessions): New variable. (xsessions-directory): New procedure. (slim-service): Add #:sessions and #:auto-login-session parameters. [slim.cfg]: Honor #:sessions. (xinitrc): Adjust accordingly.
| * Remove 'nix-upstream' submodule.Ludovic Courtès2014-12-19
| | | | | | | | | | | | * nix/sync-with-upstream: Remove. * bootstrap: Remove uses of 'git submodule' and 'sync-with-usptream'. * .gitmodules: Remove.
| * Merge branch 'nix' into 'master'.Ludovic Courtès2014-12-19
| |
| * gnu: Add bowtieRicardo Wurmus2014-12-19
| | | | | | | | | | | | * gnu/packages/bioinformatics.scm (bowtie): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * services: static-networking-service: Switch to (guix build syscalls).Ludovic Courtès2014-12-19
| | | | | | | | | | | | * gnu/services/networking.scm (static-networking-service): Remove #:inetutils parameter. Rewrite using 'configure-network-interface' and 'set-network-interface-flags'.
| * syscalls: Add more procedures for network interfaces.Ludovic Courtès2014-12-19
| | | | | | | | | | | | | | | | | | | | | | * guix/build/syscalls.scm (sizeof*, type-size, write-type, write-types, read-type, read-types, define-c-struct): New macros. (SIOCSIFFLAGS, SIOCGIFADDR, SIOCSIFADDR): New variables. (sockaddr-in, sockaddr-in6): New C structs. (write-socket-address!, read-socket-address, set-network-interface-flags, set-network-interface-address, network-interface-address, configure-network-interface): New procedures.
| * gnu: Add Clone.Ricardo Wurmus2014-12-19
| | | | | | | | | | | | * gnu/packages/perl.scm (perl-clone): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * gnu: cairocffi: Move to python module.Federico Beffa2014-12-18
| | | | | | | | | | | | | | | | * gnu/packages/gtk.scm, gnu/packages/python.scm (python-cairocffi, python2-cairocffi): Move variables from gtk to python module to avoid circular dependency. Reported by Mark H Weaver <mhw@netris.org>
| * gnu: matplotlib: Add gtk3 backends and optional dependency. Adjust inputs.Federico Beffa2014-12-18
| | | | | | | | | | | | | | * gnu/packages/python.scm (python-matplotlib, python2-matplotlib): Add gtk3 backends with the necessary inputs and a 'configure-environment' phase. Add the optional 'python-pillow' dependency. Move 'python-pyparsing' from 'inputs' to 'propagated-inputs' as it is required at run time.
| * gnu: Add cairocffi.Federico Beffa2014-12-18
| | | | | | | | * gnu/packages/gtk.scm (python-cairocffi, python2-cairocffi): New variables.
| * gnu: Add xcffibFederico Beffa2014-12-18
| | | | | | | | * gnu/packages/python.scm (python-xcffib, python2-xcffib): New variables.
| * build/python-build-system: Fix easy-install.pth collisions.Federico Beffa2014-12-18
| | | | | | | | | | * guix/build/python-build-system.scm (rename-pth-file): New rename-pth-file phase and corresponding function.
| * gnu: icecat: Build with PulseAudio support.Ludovic Courtès2014-12-17
| | | | | | | | | | * gnu/packages/gnuzilla.scm (icecat)[arguments]: Add --enable-pulseaudio.
| * gnu: linux-libre: Update to 3.18.1Jason Self2014-12-17
| | | | | | | | * gnu/packages/linux.scm (linux-libre): Update to version 3.18.1.
| * gnu: Add Test::Simple.Ricardo Wurmus2014-12-17
| | | | | | | | | | | | * gnu/packages/perl.scm (perl-test-simple): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * gnu: Add Test::Deep.Ricardo Wurmus2014-12-17
| | | | | | | | | | | | * gnu/packages/perl.scm (perl-test-deep): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * gnu: Add Test::NoWarnings.Ricardo Wurmus2014-12-17
| | | | | | | | | | | | * gnu/packages/perl.scm (perl-test-nowarnings): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * gnu: Add Test::Tester.Ricardo Wurmus2014-12-17
| | | | | | | | | | | | * gnu/packages/perl.scm (perl-test-tester): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * Revert "gnu: python-numpy-bootstrap: Reduce matrix size in failing test."Federico Beffa2014-12-16
| | | | | | | | | | This reverts commit 31557440c29f8d93b366422bfec4dab341eff79f as it did not provide the desired effect. The test is still failing.
| * gnu: Add bedtoolsRicardo Wurmus2014-12-16
| | | | | | | | | | | | * gnu/packages/bioinformatics.scm (bedtools): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * gnu: tmux: Update to 1.9a.Tomáš Čech2014-12-16
| | | | | | | | | | | | * gnu/packages/tmux.scm (tmux): Update to 1.9a Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * gnu: samtools: disable tests for non-64-bit systemsRicardo Wurmus2014-12-16
| | | | | | | | | | | | | | * gnu/packages/bioinformatics.scm (samtools): disable tests for all non-64-bit systems because of an upstream bug in the test data. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * gnu: groff: Disable parallel builds.Mark H Weaver2014-12-16
| | | | | | | | * gnu/packages/groff.scm (groff): Disable parallel builds.
| * gnu: groff: Update to 1.22.3.Mark H Weaver2014-12-16
| | | | | | | | * gnu/packages/groff.scm (groff): Update to 1.22.3.