summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* gnu: Add python-unittest2.David Thompson2014-09-05
| | | | | * gnu/packages/python.scm (python-unittest2, python2-unittest2): New variables.
* gnu: Add python-nose.David Thompson2014-09-05
| | | | * gnu/packages/python.scm (python-nose, python2-nose): New variables.
* gnu: Add python-extras.David Thompson2014-09-05
| | | | * gnu/packages/python.scm (python-extras, python2-extras): New variables.
* gnu: Add python-mimeparse.David Thompson2014-09-05
| | | | | * gnu/packages/python.scm (python-mimeparse, python2-mimeparse): New variables.
* gnu: Add python-unidecode.David Thompson2014-09-05
| | | | | * gnu/packages/python.scm (python-unidecode, python2-unidecode): New variables.
* gnu: Add python-jsonschema.David Thompson2014-09-05
| | | | | * gnu/packages/python.scm (python-jsonschema, python2-jsonschema): New variables.
* gnu: Add python2-requests.David Thompson2014-09-05
| | | | * gnu/packages/python.scm (python2-requests): New variable.
* gnu: Add python-certifi.David Thompson2014-09-05
| | | | * gnu/packages/python.scm (python-certifi, python2-certifi): New variables.
* gnu: Add python-pyld.David Thompson2014-09-05
| | | | * gnu/packages/python.scm (python-pyld, python2-pyld): New variables.
* gnu: Add python-exif-read.David Thompson2014-09-05
| | | | | * gnu/packages/python.scm (python-exif-read, python2-exif-read): New variables.
* pull: Add a compilation progress report.Ludovic Courtès2014-09-05
| | | | | | | | | | | | | | * guix/build/pull.scm (report-build-progress): New procedure. (p-for-each): Add #:progress parameter. [loop]: Keep track of the number of completed processes. Tail-call PROGRESS at each loop iteration. (build-guix): Add #:debug-port parameter. Use it for verbose messages. Change 'tar' flags to 'xf'. Around 'compile-file' call, bind CURRENT-WARNING-PORT to DEBUG-PORT. * guix/scripts/pull.scm (unpack): Add #:verbose? parameter. [builder]: Pass #:debug-port to 'build-guix'. (guix-pull): Leave CURRENT-BUILD-OUTPUT-PORT unchanged. Pass #:verbose? to 'unpack'.
* vm: Move store copy handling to (guix build store-copy).Ludovic Courtès2014-09-04
| | | | | | | | | * gnu/build/vm.scm (read-reference-graph, populate-store): Move to... * guix/build/store-copy.scm: ... here. New file. * Makefile.am (MODULES): Add it. * gnu/system/vm.scm (expression->derivation-in-linux-vm): Adjust default #:modules values accordingly. * tests/gexp.scm ("gexp->derivation, store copy"): New test.
* linux-initrd: Move Linux module tree flattening to another derivation.Ludovic Courtès2014-09-04
| | | | | | | | * gnu/system/linux-initrd.scm (expression->initrd)[string->regexp]: Remove. Use 'flat-linux-module-directory'. Remove the equivalent logic from 'builder'. (flat-linux-module-directory): New procedure.
* profiles: Use a real arrow to denote upgrades in ASCII.Ludovic Courtès2014-09-04
| | | | | | | Suggested by Alex Kost. * guix/profiles.scm (right-arrow): Fall back to "->". * tests/profiles.scm ("manifest-show-transaction"): Adjust accordingly.
* Add Emacs user interface.Alex Kost2014-09-03
| | | | | | | | | | | | | | | | | | | * configure.ac (emacsuidir): New variable. (AC_CONFIG_FILES): Add 'emacs/guix-init.el', 'emacs/guix-helper.scm'. * Makefile.am: Include 'emacs.am'. * emacs.am: New file. * doc/emacs.texi: New file. * doc/guix.texi: Include 'emacs.texi'. * emacs/guix-backend.el: New file. * emacs/guix-base.el: New file. * emacs/guix-helper.scm.in: New file. * emacs/guix-history.el: New file. * emacs/guix-info.el: New file. * emacs/guix-init.el.in: New file. * emacs/guix-list.el: New file. * emacs/guix-main.scm: New file. * emacs/guix-utils.el: New file. * emacs/guix.el: New file.
* gnu: datamash: Fix license.Ludovic Courtès2014-09-03
| | | | * gnu/packages/datamash.scm (datamash)[license]: Change to GPL3+.
* linux-initrd: Factorize cpio archive creation.Ludovic Courtès2014-09-03
| | | | | | | * gnu/build/linux-initrd.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. * gnu/system/linux-initrd.scm (expression->initrd): Use (gnu build linux-initrd) and 'write-cpio-archive' instead of the inlined code.
* Move part of (gnu build linux-boot) to (gnu build file-systems).Ludovic Courtès2014-09-03
| | | | | | | | | | | | | | | | | | * gnu/build/linux-boot.scm (%ext2-endianness, %ext2-sblock-magic, %ext2-sblock-creator-os, %ext2-sblock-uuid, %ext2-sblock-volume-name, read-ext2-superblock, ext2-superblock-uuid, ext2-superblock-volume-name, disk-partitions, partition-label-predicate, find-partition-by-label, canonicalize-device-spec, MS_RDONLY, MS_NOSUID, MS_NODEV, MS_NOEXEC, MS_BIND, MS_MOVE, bind-mount, check-file-system, mount-flags->bit-mask, mount-file-system): Move to... * gnu/build/file-systems.scm: ... here. New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. * gnu/services/base.scm: Use (gnu build file-systems). * gnu/services/dmd.scm (dmd-configuration-file): Likewise. * gnu/system.scm (operating-system-activation-script): Likewise. * gnu/system/linux-initrd.scm (base-initrd): Likewise. * gnu/system/vm.scm (expression->derivation-in-linux-vm): Likewise.
* Rename (gnu build linux-initrd) to (gnu build linux-boot).Ludovic Courtès2014-09-03
| | | | | | | | | * gnu/build/linux-initrd.scm: Rename to... * gnu/build/linux-boot.scm: ... this. * gnu-system.am (GNU_SYSTEM_MODULES): Adjust accordingly. * gnu/build/activation.scm, gnu/build/vm.scm, gnu/services/base.scm, gnu/services/dmd.scm, gnu/system.scm, gnu/system/linux-initrd.scm, gnu/system/vm.scm: Adjust accordingly.
* Move operating system helpers from (guix build …) to (gnu build …).Ludovic Courtès2014-09-03
| | | | | | | | | | | | * guix/build/activation.scm, guix/build/install.scm, guix/build/linux-initrd.scm, guix/build/vm.scm: Move to... * gnu/build: ... here. * Makefile.am (MODULES): Remove the above guix/build/ files. * gnu-system.am (GNU_SYSTEM_MODULES): Add the above gnu/build/ files here. * gnu/services/base.scm, gnu/services/dmd.scm, gnu/system.scm, gnu/system/linux-initrd.scm, gnu/system/vm.scm, guix/scripts/system.scm: Adjust to the new module names.
* doc: Mention 'guix lint' and '--list-dependent' in 'HACKING'.Ludovic Courtès2014-09-03
| | | | | * HACKING (Submitting Patches): Mention 'guix lint' and 'guix refresh --list-dependent'.
* guix lint: Remove "guix lint: " prefix from warnings.Ludovic Courtès2014-09-03
| | | | | | | | This allows editors to parse warnings correctly. * guix/scripts/lint.scm (emit-warning): Use 'format' instead of 'warning', to avoid the "guix lint: " prefix in messages. * tests/lint.scm (call-with-warnings): Indent.
* gnu: Add postgresql.David Thompson2014-09-03
| | | | | * gnu/packages/postgresql.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* scripts: add guix lintCyril Roelandt2014-09-03
| | | | | | | | | * guix/scripts/lint.scm: New file. Defines a 'lint' tool for Guix packages. * tests/lint.scm: New file. * Makefile.am (MODULES, SCM_TESTS): Add them. * po/guix/Makevars: Update appropriately. * po/guix/POTFILES.in: Update appropriately. * doc/guix.texi: Document "guix lint".
* Move specification->package to gnu/packages.scm.Cyril Roelandt2014-09-03
| | | | | * guix/scripts/build.scm (specification->package): Move from here... * gnu/packages.scm: ... to here.
* daemon: Do not use 'vfork'.Ludovic Courtès2014-09-02
| | | | | | | This fixes random EBADF errors in the daemon on ancient Linux kernels such as version 2.6.32. * config-daemon.ac: Remove detection of 'vfork'.
* gnu: Add nvi.Marek Benc2014-09-02
| | | | | | | | * gnu/packages/nvi.scm: New file. * gnu/packages/patches/nvi-assume-preserve-path.patch: New file. * gnu-system.am: Add them. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* profiles: Report version numbers in a separate column.Ludovic Courtès2014-09-02
| | | | | | * guix/profiles.scm (manifest-show-transaction)[package-strings, upgrade-strings]: Show version number in separate column. Show OUTPUT in first column, and only when it's different from "out".
* profiles: Report the old and new version number in upgrades.Ludovic Courtès2014-09-02
| | | | | | | | | | | * guix/profiles.scm (manifest-lookup): New procedure. (manifest-installed?): Use it. (manifest-transaction-effects): Return a pair of entries for upgrades. (right-arrow): New procedure. (manifest-show-transaction)[upgrade-string, →]: New variables. Report upgrades using 'upgrade-string'. * tests/profiles.scm ("manifest-show-transaction"): New test. ("manifest-transaction-effects"): Match UPGRADE against a pair.
* doc: Update "Installing Guix from Guix".Ludovic Courtès2014-09-02
| | | | | * README: Make 'guix package' command line more readable. Mention --localstatedir.
* gnu: ucommon: Update to 6.1.10.Ludovic Courtès2014-09-02
| | | | * gnu/packages/telephony.scm (ucommon): Update to 6.1.10.
* gnu: libtasn1: Update to 4.1.Ludovic Courtès2014-09-02
| | | | * gnu/packages/gnutls.scm (libtasn1): Update to 4.1.
* gnu: datamash: Update to 1.0.6.Ludovic Courtès2014-09-01
| | | | * gnu/packages/datamash.scm (datamash): Update to 1.0.6.
* gnu: parallel: Update to 20140822.Ludovic Courtès2014-09-01
| | | | * gnu/packages/parallel.scm (parallel): Update to 20140822.
* gnu: help2man: Update to 1.46.1.Ludovic Courtès2014-09-01
| | | | * gnu/packages/man.scm (help2man): Update to 1.46.1.
* doc: Clarify system installation and configuration details.Ludovic Courtès2014-09-01
| | | | | | | | Reported by leth on #guix. * doc/guix.texi (System Installation): Suggest running 'reboot' instead of 'umount /mnt'. (Initial RAM Disk): Add xref to SRFI-26.
* sync-with-upstream: Generate 'nix/AUTHORS'.Ludovic Courtès2014-09-01
| | | | * nix/sync-with-upstream: Use 'git shortlog' to generate nix/AUTHORS.
* Thank Frederico.Ludovic Courtès2014-08-31
|
* gnu: gcc-toolchain: Inherit GCC's search path specifications.Ludovic Courtès2014-08-31
| | | | | | | Reported by Federico Beffa <beffa@ieee.org>. * gnu/packages/commencement.scm (gcc-toolchain): Add 'native-search-paths' and 'search-paths' fields.
* guix package: Fix search path lookup when an obsolete version is installed.Ludovic Courtès2014-08-31
| | | | | | | | Before that, 'guix package --search-paths' would not work if, say, 'foo-0.2' is installed but the distro provides 'foo-0.3'. * guix/scripts/package.scm (search-path-environment-variables)[manifest-entry->package]: Handle the case where 'find-best-packages-by-name' returns '().
* daemon: Rename '--disable-store-optimization' to '--disable-deduplication'.Ludovic Courtès2014-08-31
| | | | | | | | | | * nix/nix-daemon/guix-daemon.cc (GUIX_OPT_DISABLE_STORE_OPTIMIZATION): Rename to... (GUIX_OPT_DISABLE_DEDUPLICATION): ... this. Adjust user accordingly. (options): Add "disable-deduplication". Make "disable-store-optimization" a hidden alias. * doc/guix.texi (Invoking guix-daemon): Adjust to new option name. Add index entry. Improve description.
* daemon: Really enable automatic deduplication by default.Ludovic Courtès2014-08-31
| | | | | | * nix/nix-daemon/guix-daemon.cc (main): Set 'autoStoreOptimise' to true. Add 'printMsg' call. * tests/derivations.scm ("identical files are deduplicated"): New test.
* profiles: Compute transaction effects in a functional way.Ludovic Courtès2014-08-30
| | | | | | | * guix/profiles.scm (manifest-transaction-effects): New procedure. (manifest-show-transaction): Use it instead of locally computing it. * tests/profiles.scm (glibc): New variable. ("manifest-transaction-effects"): New test.
* offload: Ignore EEXIST when registering a .drv as a GC root.Ludovic Courtès2014-08-29
| | | | | | | | Fixes <http://bugs.gnu.org/18115>. Reported by Mark H Weaver <mhw@netris.org>. * guix/scripts/offload.scm (register-gc-root)[script]: Wrap 'symlink' call in "catch 'system-error", and ignore EEXIST errors.
* offload: Ignore unreachable machines.Ludovic Courtès2014-08-29
| | | | | | | | | Fixes <http://bugs.gnu.org/18070>. Reported by Andreas Enge <andreas@enge.fr>. * guix/scripts/offload.scm (remote-pipe): Augment docstring. (machine-load): Return +inf.0 instead of 1 if MACHINE does not respond or responds badly.
* gnu: Add nss-mdns.Ludovic Courtès2014-08-29
| | | | * gnu/packages/avahi.scm (nss-mdns): New variable.
* doc: %final-inputs is now in (gnu packages commencement).Mark H Weaver2014-08-28
| | | | | * doc/guix.texi (Bootstrapping): Adjust the text to reflect that '%final-inputs' is now in (gnu packages commencement).
* hydra: Adjust to (gnu packages commencement) split from (gnu packages base).Mark H Weaver2014-08-28
| | | | * build-aux/hydra/gnu-system.scm: Import (gnu packages commencement).
* gnu: Add perl-archive-zip.John Darrington2014-08-28
| | | | * gnu/packages/perl.scm (perl-archive-zip): New variable.
* gnu: Add bison-2.7John Darrington2014-08-28
| | | | | * gnu/packages/bison.scm (bison-2.7): New variable. Bison 3.x and 2.x are incompatible. Some programs require 2.x