summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* system: Define 'INFOPATH' in /etc/profile.Ludovic Courtès2014-11-05
| | | | * gnu/system.scm (etc-directory)[bashrc]: Set 'INFOPATH'.
* gnu: guix: Update development snapshot.Ludovic Courtès2014-11-05
| | | | | * gnu/packages/package-management.scm (guix-devel): Update to commit 84934f4.
* monads: Remove unused 'nargs' parameter from 'lift'.Ludovic Courtès2014-11-05
| | | | * guix/monads.scm (lift): Remove 'nargs' parameter.
* build: Add missing "emacs/guix-messages.el".Alex Kost2014-11-06
| | | | * emacs.am (ELFILES): Add "emacs/guix-messages.el".
* import: pypi: Gracefully handle wrong argument counts.Ludovic Courtès2014-11-05
| | | | | * guix/scripts/import/pypi.scm (guix-import-pypi): Use 'leave' to handle cases where ARGS has zero or two or more elements.
* import: pypi: Gracefully handle non-existent packages.Ludovic Courtès2014-11-05
| | | | | | | | | | | Fixes <http://bugs.gnu.org/18831>. Reported by Ian Denhardt <ian@zenhack.net>. * guix/import/pypi.scm (url-fetch, json-fetch, pypi-fetch): Augment docstring to mention #f on failure. (pypi->guix-package): Likewise, and actually return #f on failure. * guix/scripts/import/pypi.scm (guix-import-pypi): Call 'leave' when 'pypi->guix-package' returns #f.
* services: Add NTP service.Ludovic Courtès2014-11-05
| | | | | * gnu/services/networking.scm (ntp-service): New procedure. * doc/guix.texi (Networking Services): Document it.
* services: Increase delay before SIGKILL is sent when halting.Ludovic Courtès2014-11-05
| | | | | | * gnu/services/base.scm (user-processes-service): Increase the default value of 'grace-delay'. This leaves more time for processes to clean up their PID files, /tmp/.X0-lock, etc.
* gnu: ntp: Build with POSIX capabilities support on GNU/Linux.Ludovic Courtès2014-11-05
| | | | * gnu/packages/ntp.scm (ntp)[inputs]: New field.
* vm: Disable swap devices in virtualized OSes.Ludovic Courtès2014-11-05
| | | | | * gnu/system/vm.scm (virtualized-operating-system): Add 'swap-devices' field.
* gnu: sdl: Fix home page URLs.Ludovic Courtès2014-11-05
| | | | | * gnu/packages/sdl.scm (sdl-image, sdl-mixer, sdl-net, sdl-ttf): Prepend "http://" to 'home-page'.
* gnu: calcurse: Update to 3.2.1.Eric Bavier2014-11-04
| | | | * gnu/packages/calcurse.scm (calcurse): Update to 3.2.1.
* gnu: freeimage: Remove MIPS from supported-systems.David Thompson2014-11-04
| | | | * gnu/packages/image.scm (freeimage): Drop support for "mips64el-linux".
* gnu: phonon: Update to 4.8.2.Andreas Enge2014-11-04
| | | | * gnu/packages/kde.scm (phonon): Update to 4.8.2.
* gnu: xf86-video-ati: Update to 6.14.6.Andreas Enge2014-11-04
| | | | | * gnu/packages/xorg.scm (xf86-video-ati): Update to 6.14.6 to circumvent build failures.
* tests: When a store item is to be deleted, make it statistically unique.Ludovic Courtès2014-11-04
| | | | | | | | | | | | | | Fixes <http://bugs.gnu.org/18935>. Reported by Mark H Weaver <mhw@netris.org>. Previously, if tests/nar.scm ran concurrently with tests/gexp.scm, the store item "foo" containing the string "Hello, world!" could be deleted (via 'delete-paths') from the tests/nar.scm daemon while the tests/gexp.scm daemon would still consider it live. * tests/nar.scm ("restore-file-set (missing signature)"): Use (random-text) rather than "Hello, world!", to avoid concurrent deletion of store item "foo" used in tests/gexp.scm.
* store: Invalidate caches once GC has run.Ludovic Courtès2014-11-04
| | | | | | * guix/store.scm (run-gc): Add calls to 'hash-clear!'. * tests/store.scm ("add-text-to-store vs. delete-paths", "add-to-store vs. delete-paths"): New tests.
* gnu: qt: Update to 5.3.2.Andreas Enge2014-11-04
| | | | | * gnu/packages/qt.scm (qt): Update to 5.3.2. Drop configure flag -no-neon, which is not supported any more.
* gnu: gcc-4.9: Update to 4.9.2.Ludovic Courtès2014-11-04
| | | | * gnu/packages/gcc.scm (gcc-4.9): Update to 4.9.2.
* gnu: Add GNU adns.Ludovic Courtès2014-11-04
| | | | | * gnu/packages/adns.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* gnu: evince: Use 'glib-or-gtk-build-system'.Ludovic Courtès2014-11-04
| | | | | * gnu/packages/gnome.scm (evince)[build-system]: Switch to GLIB-OR-GTK-BUILD-SYSTEM.
* gnu: gdb: Do not install libopcodes and libbfd.Ludovic Courtès2014-11-04
| | | | * gnu/packages/gdb.scm (gdb)[arguments]: Add 'post-install' phase.
* gnu: gdb: Update to 7.8.1.Ludovic Courtès2014-11-04
| | | | * gnu/packages/gdb.scm (gdb): Update to 7.8.1.
* gnu: Add docbook-xml-4.2Federico Beffa2014-11-04
| | | | * gnu/packages/docbook.scm (docbook-xml-4.2): New variable.
* gnu: Add gnome-themes-standard.Federico Beffa2014-11-04
| | | | * gnu/packages/gnome.scm (gnome-themes-standard): New variable.
* gnu: librsvg: Generate complete loaders.cache including support for SVG.Federico Beffa2014-11-04
| | | | * gnu/packages/gnome.scm (librsvg): Add 'generate-full-cache phase.
* gnu: qt: Explicitly link with the dbus library.Andreas Enge2014-11-04
| | | | | * gnu/packages/qt.scm (qt, qt-4): Add a configure flag to link explicitly with dbus.
* doc: emacs: Fix titles of the printed manuals.Alex Kost2014-11-04
| | | | | * doc/emacs.texi: Use the proper names of the printed manuals in the cross references.
* emacs: Add interface for comparing generations.Alex Kost2014-11-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Suggested by Ludovic Courtès. * doc/emacs.texi (Emacs List buffer): Document new key bindings. * emacs/guix-base.el (guix-generation-packages-buffer-name-function, guix-generation-packages-update-buffer, guix-output-name-width): New variables. (guix-generation-file, guix-manifest-file, guix-generation-packages, guix-generation-packages-buffer-name-default, guix-generation-packages-buffer-name-long, guix-generation-packages-buffer-name, guix-generation-packages-buffer, guix-generation-insert-package, guix-generation-insert-packages, guix-profile-generation-manifest-file, guix-profile-generation-packages-buffer): New procedures. * emacs/guix-list.el: Add key bindings for comparing generations. (guix-generation-list-generations-to-compare, guix-generation-list-show-added-packages, guix-generation-list-show-removed-packages, guix-generation-list-compare, guix-generation-list-ediff-manifests, guix-generation-list-diff-manifests, guix-generation-list-ediff-packages, guix-generation-list-diff-packages, guix-generation-list-ediff, guix-generation-list-diff): New procedures. * emacs/guix-messages.el (guix-messages): Add 'generation-diff' search type. (guix-message-outputs-by-diff): New procedure. * emacs/guix-utils.el (guix-diff-switches): New variable. (guix-diff): New procedure. * emacs/guix-main.scm (package/output-sexps): Handle 'generation-diff' search type. (manifest-entry->package-specification, manifest-entries->package-specifications, generation-package-specifications, generation-package-specifications+paths, generation-difference): New procedures.
* emacs: Improve minibuffer messages.Alex Kost2014-11-04
| | | | | | | | | | | | * emacs/guix-base.el (guix-messages, guix-result-message): Move to 'guix-messages.el'. (guix-set-buffer, guix-history-call, guix-redisplay-buffer): Adjust for the modified 'guix-result-message'. * emacs/guix-messages.el: New file. (guix-redisplay-buffer): Add 'profile' argument. (guix-message-string-name, guix-message-string-entry-type, guix-message-string-entries, guix-message-packages-by-name, guix-message-generations-by-time): New procedures.
* gnu: swig: Disable input python.Andreas Enge2014-11-04
| | | | | | * gnu/packages/swig.scm (swig): Disable input python. Before, it was not taken into account during configure; now that it is found, it fails its tests. None of the dependent packages need it.
* gnu: swig: Update to 3.0.2.Andreas Enge2014-11-04
| | | | * gnu/packages/swig.scm (swig): Update to 3.0.2.
* gnu: swig: Update to 2.0.12.Andreas Enge2014-11-04
| | | | * gnu/packages/swig.scm (swig): Update to 2.0.12.
* gnu: python-wrapper: Propagate input python.Andreas Enge2014-11-04
| | | | | | * gnu/packages/python.scm (python-wrapper): Propagate input python, so that the python libraries are made available as well as the python3 binaries without the symbolic links.
* gnu: Use version-major+minor in gnome and gtk.Eric Bavier2014-11-04
| | | | | | | | | | | | | | * gnu/packages/gnome.scm (gnome-desktop, gnome-doc-utils, libgnome-keyring, evince, gsettings-desktop-schemas, gnome-icon-theme, libnotify, lipeas, glade, libcroco, libgsf, librsvg, libidl, orbit2, gconf, gnome-mime-data, gnome-vfs, libgnome, libart-lgpl, libgnomecanvas, libgnomeui, libglade, libgnomeprint, libgnomeprintui, libbonoboui, goffice, gnumeric): Use version-major+minor. (shared-mime-info, hicolor-icon-theme): Wrap long uri lines. * gnu/packages/gtk.scm (atk, pangox-compat, gtksourceview, gdk-pixbuf, at-spi2-core, at-spi2-atk, gtk+-2, gtk+, pangomm, atkmm, gtkmm, gtkmm-2): Use version-major+minor.
* packages: 'package-transitive-supported-systems' accounts for indirect deps.Ludovic Courtès2014-11-03
| | | | | | | | | | Reported by Andreas Enge <andreas@enge.fr>. * guix/packages.scm (first-value): New macro. (package-transitive-supported-systems): Rewrite to traverse all the DAG rooted at PACKAGE. * tests/packages.scm ("package-transitive-supported-systems"): Add 'd' and 'e', and test them.
* gnu: Add Cython.Federico Beffa2014-11-03
| | | | | | * gnu/packages/python.scm (cython, cython2): New variables. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: man-pages: Build sequentially.Ludovic Courtès2014-11-02
| | | | | | | Fixes <http://bugs.gnu.org/18701>. Reported by Mark H Weaver <mhw@netris.org>. * gnu/packages/man.scm (man-pages)[arguments]: Add #:parallel-build? #f.
* system: Allow Linux-libre to find our 'modprobe' command.Ludovic Courtès2014-11-02
| | | | | | | | | Fixes <http://bugs.gnu.org/18525>. Reported by Mark H Weaver <mhw@netris.org>. * gnu/build/activation.scm (activate-modprobe): New procedure. * gnu/system.scm (modprobe-wrapper): New procedure. (operating-system-activation-script): Use both.
* gnu: kmod: 'kmod static-nodes' command honors $LINUX_MODULE_DIRECTORY.Ludovic Courtès2014-11-02
| | | | | | * gnu/packages/patches/kmod-module-directory.patch: Add hunk for tools/static-nodes.c. Taken from Nixpkgs, where it was added by Eelco Dolstra <eelco.dolstra@logicblox.com>.
* guix-register: Do not attempt to create NIX_STORE_DIR.Ludovic Courtès2014-11-02
| | | | | | | | Fixes <http://bugs.gnu.org/18689>. Reported by Philip Woods <elzairthesorcerer@gmail.com>. * nix/guix-register/guix-register.cc (main): Move 'store' instantiation above 'settings.nixStore' assignment.
* packages: Implement grafts.Ludovic Courtès2014-11-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks to Mark H. Weaver <mhw@netris.org> for insightful discussions and suggestions. * guix/packages.scm (<package>)[graft]: New field. (patch-and-repack): Invoke 'package-derivation' with #:graft? #f. (package-source-derivation): Likewise. Do not use (%guile-for-build) in call to 'patch-and-repack', and we could end up using a grafted Guile. (expand-input): Likewise, also for 'package-cross-derivation' call. (package->bag): Add #:graft? parameter. Honor it. Use 'strip-append' instead of 'package-full-name'. (input-graft, input-cross-graft, bag-grafts, package-grafts): New procedures. (package-derivation, package-cross-derivation): Add #:graft? parameter and honor it. * gnu/packages/bootstrap.scm (package-with-bootstrap-guile): Add recursive call on 'graft'. * guix/build-system/gnu.scm (package-with-explicit-inputs, package-with-extra-configure-variable, static-package): Likewise. (gnu-build): Use the ungrafted Guile to avoid full rebuilds. (gnu-cross-build): Likewise. * guix/build-system/cmake.scm (cmake-build): Likewise. * guix/build-system/glib-or-gtk.scm (glib-or-gtk-build): Likewise. * guix/build-system/perl.scm (perl-build): Likewise. * guix/build-system/python.scm (python-build): Likewise. * guix/build-system/ruby.scm (ruby-build): Likewise. * guix/build-system/trivial.scm (guile-for-build): Likewise. * tests/packages.scm ("package-derivation, direct graft", "package-cross-derivation, direct graft", "package-grafts, indirect grafts", "package-grafts, indirect grafts, cross", "package-grafts, indirect grafts, propagated inputs", "package-derivation, indirect grafts"): New tests. ("bag->derivation", "bag->derivation, cross-compilation"): Wrap in 'parameterize'. * doc/guix.texi (Security Updates): New node. (Invoking guix build): Document --no-graft.
* packages: Add 'package->bag' test for propagated inputs.Ludovic Courtès2014-11-02
| | | | * tests/packages.scm ("package->bag, propagated inputs"): New test.
* derivations: Add 'derivation-name'.Ludovic Courtès2014-11-02
| | | | | * guix/derivations.scm (derivation-name): New procedure. * tests/derivations.scm ("derivation-name"): New test.
* gnu: Add oxygen-icons.Andreas Enge2014-11-02
| | | | * gnu/packages/kde.scm (oxygen-icons): New variable.
* emacs: Add package info heading.Alex Kost2014-11-02
| | | | | | | | | | | | Co-authored-by: Ludovic Courtès <ludo@gnu.org> * emacs/guix-info.el: (guix-package-info-heading): New face. (guix-package-info-synopsis): Modify face. (guix-info-insert-entry-default, guix-package-info-insert-heading, guix-package-info-insert-with-heading): New procedures. (guix-package-info-heading-params, guix-info-insert-package-function, guix-info-insert-installed-function, guix-info-insert-output-function, guix-info-insert-generation-function): New variables.
* gnu: Add freeimage.David Thompson2014-11-02
| | | | * gnu/packages/image.scm (freeimage): New variable.
* gnu: libart-lgpl: Update to 2.3.21.Andreas Enge2014-11-02
| | | | * gnu/packages/gnome.scm (libart-lgpl): Update to 2.3.21.
* gnu: wget: Add input libpsl.Eric Bavier2014-10-31
| | | | * gnu/packages/wget.scm (wget)[inputs]: Add libpsl.
* gnu: Add libpsl.Eric Bavier2014-10-31
| | | | * gnu/packages/web.scm (libpsl): New variable.