aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2015-01-28system: Define $ASPELL_CONF in /etc/profile....* gnu/system.scm (etc-directory)[profile]: Define 'ASPELL_CONF'. Ludovic Courtès
2015-01-28Update NEWS.Ludovic Courtès
2015-01-28doc: Update USB image size....* doc/guix.texi (System Installation): Change to --image-size=850MiB. Ludovic Courtès
2015-01-28install: Add iw to the packages....* gnu/system/install.scm (installation-os)[packages]: Add IW. Ludovic Courtès
2015-01-28Thank Amirouche.Ludovic Courtès
2015-01-27gnu: linux-libre: Update to 3.18.4...* gnu/packages/linux.scm (linux-libre): Update to version 3.18.4. Jason Self
2015-01-27gnu: Add xinit....* gnu/packages/xorg.scm (xinit): New variable. Ludovic Courtès
2015-01-27doc: Change the USB image file name to 'gsd-usb-install*'....* doc/guix.texi (System Installation): Change the file name to 'gsd-usb-install-*'. Ludovic Courtès
2015-01-27linux-initrd: Add USB kernel modules to the default initrd....* gnu/system/linux-initrd.scm (base-initrd)[linux-modules]: Add usb-storage, uas, usbkbd, and usbhid. * gnu/system/vm.scm (system-disk-image): Remove #:extra-modules argument to 'base-initrd'. Ludovic Courtès
2015-01-27gnu: apr-util: Correct hash....* gnu/packages/apr.scm (apr-util): Correct hash. Manolis Ragkousis
2015-01-27gnu: Add sxiv....* gnu/packages/sxiv.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. Alex Kost
2015-01-27gnu: Add GCJ...* gnu/packages/gcc.scm (gcj-4.8, ecj-bootstrap-4.8): New variables. * gnu/packages/javac.in: New file. * gnu-system.am (MISC_DISTRO_FILES): Add it. * Makefile.am (nobase_dist_guilemodule_DATA): Add MISC_DISTRO_FILES. Ricardo Wurmus
2015-01-27gnu: Add LRDF....* gnu/packages/rdf.scm (lrdf): New variable. rekado
2015-01-27gnu: Add JACK...* gnu/packages/audio.scm: New file * gnu-system.am (GNU_SYSTEM_MODULES): Add it rekado
2015-01-27doc: Update "Limitations" section....* doc/guix.texi (System Installation): Mention Xfce. Update package count. Ludovic Courtès
2015-01-27install: Mention GSD....* gnu/system/install.scm (installation-services): Mention the Guix System Distribution. Ludovic Courtès
2015-01-27gnu: guix: Update snapshot....* gnu/packages/package-management.scm (boot-guile-uri): New procedure. (guix-0.8): Add "boot-guile/armhf" input. Update 'copy-bootstrap-guile' phase to handle it. (guix-devel): Update snapshot. Ludovic Courtès
2015-01-27gnu: zsh: Update to 5.0.7...* gnu/packages/zsh.scm (zsh): Update to 5.0.7 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Manolis Ragkousis
2015-01-27gnu: apr: Update to 1.5.4....* gnu/packages/apr.scm (apr-util): Update to 1.5.4 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Manolis Ragkousis
2015-01-27gnu: ftp: Update to 4.6.1....* gnu/packages/ftp.scm (lftp): Update to 4.6.1 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Manolis Ragkousis
2015-01-27services: mingetty: Wait for udev....* gnu/services/base.scm (mingetty-service): Add 'udev' to 'requirement'. Ludovic Courtès
2015-01-27system: Add 'XDG_DATA_DIRS' and 'XDG_CONFIG_DIRS' to /etc/profile....* gnu/system.scm (etc-directory)[profile]: Set 'XDG_DATA_DIRS' and 'XDG_CONFIG_DIRS'. 宋文武
2015-01-27nls: Add a few more package modules for translation....* po/packages/POTFILES.in: List a few more files. Ludovic Courtès
2015-01-26build: Unset 'GUIX_PACKAGE_PATH' in 'sync-descriptions'....* Makefile.am (sync-descriptions): Clear 'GUIX_PACKAGE_PATH'. Ludovic Courtès
2015-01-26build: Remove reference to non-existent file....* daemon.am (EXTRA_DIST): Remove nix/sync-with-upstream. Ludovic Courtès
2015-01-26doc: Expound a bit on 'guix lint'....* doc/guix.texi (Invoking guix lint): Give examples of checkers. Ludovic Courtès
2015-01-26services: xorg: Define the <session-type> record type....* gnu/services/xorg.scm (<session-type>): New record type. (%windowmaker-session-type, %ratpoison-session-type): New variables. (%default-xsessions): Use them. (xsessions-directory): Expect SESSIONS to be a list of <session-type> and rewrite accordingly. (slim-service): Adjust docstring. * doc/guix.texi (X Window): Update accordingly. Ludovic Courtès
2015-01-26substitute-binary: Let the user know when the cache is being updated....* guix/scripts/substitute-binary.scm (open-cache*): New macro. (guix-substitute-binary): Use it instead of (delay (open-cache ...)). Ludovic Courtès
2015-01-26hash: Initialize libgcrypt before use....Fixes <http://bugs.gnu.org/19677>. Reported by Mark H Weaver <mhw@netris.org>. * guix/hash.scm: Use (guix gcrypt). (sha256, open-sha256-md, md-write, md-close): Use 'libgcrypt-func' instead of 'dynamic-func'. Ludovic Courtès
2015-01-26Add (guix gcrypt)....* guix/gcrypt.scm: New file. * Makefile.am (MODULES): Add it. * guix/pk-crypto.scm: Use it. (libgcrypt-func, gcrypt-version): Remove. Ludovic Courtès
2015-01-26gnu: Add gobject-introspection patches to gnu-system.am....* gnu-system.am (dist_patch_DATA): Add 'gobject-introspection-absolute-shlib-path.patch' and 'gobject-introspection-girepository.patch'. Mark H Weaver
2015-01-25Merge branch 'wip-gobject-introspection'Mark H Weaver
2015-01-26guix lint: Make the 'source' checker happy if at least one URI is valid....Before that it would check all the URIs of each package. * guix/scripts/lint.scm (validate-uri): Really return #f on failure and #t otherwise. (check-source): Replace 'for-each' with 'any'. Ludovic Courtès
2015-01-26services: dbus: Set the search path for .service files....* gnu/services/dbus.scm (dbus-configuration-directory)[services->sxml]: Produce a <servicedir> tag. Ludovic Courtès
2015-01-26gnu: Raise an error when a bootstrap binary is not found....* gnu/packages.scm (search-bootstrap-binary): Raise an error when FILE-NAME is not found. Ludovic Courtès
2015-01-25Revert "gnu: netpbm: Update to 10.69.04."...This reverts commit 03c277653577a505eed7d49652c4e8ba76ea06e7. Andreas Enge
2015-01-25Revert "gnu: netpbm: Correct hash."...This reverts commit a6ae52fe142781e236901add1461fdbf80420215. Andreas Enge
2015-01-25gnu: netpbm: Correct hash....* gnu/packages/netpbm.scm (netpbm): Correct hash. Fixes <http://bugs.gnu.org/19686>. Reported by Marek Benc <dusxmt@gmx.com> and Mark Weaver <mhw@netris.org>. Andreas Enge
2015-01-25gnu: Add python-pyqt....* gnu/packages/qt.scm (python-pyqt, python2-pyqt): New variables. * gnu/packages/patches/pyqt-configure.patch: New file. * gnu-system.am (dist_patch_DATA): Register patch. Andreas Enge
2015-01-25gnu: Add python-sip....* gnu/packages/qt.scm (python.sip, python2-sip): New variables. Andreas Enge
2015-01-25lint: add 'source' checker....* guix/scripts/lint.scm (validate-uri?): New procedure. (%checkers): Add 'source' checker Cyril Roelandt
2015-01-25gnu: netpbm: Update to 10.69.04....* gnu/packages/netpbm.scm (netpbm): Update to 10.69.04. Andreas Enge
2015-01-24derivations: Raise an error for references to non-existent outputs....Fixes <http://bugs.gnu.org/19630>. Reported by Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>. * guix/derivations.scm (&derivation-error, &derivation-missing-output-error): New error conditions. (derivation->output-path): Raise a '&derivation-missing-output-error' if OUTPUT is not an output of DRV. * guix/ui.scm (call-with-error-handling): Add case for 'derivation-missing-output-error?'. (show-what-to-build): Check whether (derivation-outputs drv) is empty. * tests/packages.scm ("reference to non-existent output"): Add test. Ludovic Courtès
2015-01-24Add Ricardo to 'AUTHORS'.Ludovic Courtès
2015-01-24gnu: Add libdvdnav....* gnu/packages/video.scm (libdvdnav): New variable. Andreas Enge
2015-01-24gnu: Add libdvdread....* gnu/packages/video.scm (libdvdread): New variable. Andreas Enge
2015-01-24gnu: youtube-dl: Update to 2015.01.23.4....* gnu/packages/video.scm (youtube-dl): Update to 2015.01.23.4. Andreas Enge
2015-01-24gnu: freeipmi: Update to 1.4.8....* gnu/packages/freeipmi.scm (freeipmi): Update to 1.4.8. Andreas Enge
2015-01-24gnu: xnee: Update to 3.19 and add input GTK+....* gnu/packages/xnee.scm (xnee): Update to 3.19. This requires gtk+-2 as additional input. Andreas Enge
2015-01-23services: guix: #:authorize-hydra-key? now defaults to #t....* gnu/services/base.scm (guix-service): Change AUTHORIZE-HYDRA-KEY? default value to #t. Ludovic Courtès