summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add Tomáš to 'AUTHORS'.Ludovic Courtès2014-12-09
|
* gnu: add msmtpTomáš Čech2014-12-09
| | | | | | * gnu/packages/mail.scm (msmtp): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: libwnck: Propagate inputs.宋文武2014-12-09
| | | | | * gnu/packages/gnome.scm (libwnck, libwnck-1): Propagate inputs libxres and startup-notification.
* system: Add skeleton '.zlogin'.宋文武2014-12-09
| | | | * gnu/system/shadow.scm (default-skeletons): Add .zlogin.
* system: Cleanup bash startup files.宋文武2014-12-09
| | | | | | * gnu/system.scm (etc-directory) (bashrc): Rename to 'profile'. * gnu/system/shadow.scm (default-skeletons): Rename '.bashrc' to '.bash_profile'. Don't source /etc/profile.
* gnu: Add libwnck.宋文武2014-12-09
| | | | * gnu/packages/gnome.scm (libwnck, libwnck-1): New variables.
* gnu: Add startup-notification.宋文武2014-12-09
| | | | * gnu/packages/xdisorg.scm (startup-notification): New variable.
* build: Make sure the installed 'config.go' is newer than 'config.scm'.Ludovic Courtès2014-12-09
| | | | | | | | | Fixes <http://bugs.gnu.org/19317>. Reported by rekado <rekado@elephly.net>. * gnu-system.am (install-data-hook): Rename to... (set-bootstrap-executable-permissions): ... this. * Makefile.am (install-data-hook): New target.
* Thank rekado.Ludovic Courtès2014-12-09
|
* doc: Explain how to set the ownership and permissions of /gnu/store.Ludovic Courtès2014-12-09
| | | | | | | | Fixes <http://bugs.gnu.org/19316>. Reported by rekado <rekado@elephly.net>. * doc/guix.texi (Build Environment Setup): Show commands to set the ownership and permissions of /gnu/store.
* substitute-binary: Add missing newline in download progress report.Ludovic Courtès2014-12-09
| | | | | | | | Fixes <http://bugs.gnu.org/19313>. Reported by rekado <rekado@elephly.net>. * guix/scripts/substitute-binary.scm (guix-substitute-binary) <--substitute>: Add 'newline' call.
* system: Don't make /boot/grub/grub.cfg a symlink to the store.Ludovic Courtès2014-12-09
| | | | | | | | | | | | | | | This would not work when /boot is a separate partition, as reported by Nikita Karetnikov <nikita@karetnikov.org> in <http://bugs.gnu.org/19220>. This fixes a regression introduced in 39d1f82. * gnu/build/install.scm (install-grub): Copy GRUB.CFG instead of symlinking it, as was the case before 39d1f82. * gnu/build/vm.scm (register-grub.cfg-root): Add 'grub.cfg' parameter. Make it a permanent GC root instead of an indirect GC root. (initialize-hard-disk): Adjust accordingly. * guix/scripts/system.scm (install-grub*): Replace use of 'add-indirect-root' by the addition of a permanent GC root in %GC-ROOTS-DIRECTORY.
* gnu: Add socat.Ludovic Courtès2014-12-08
| | | | | * gnu/packages/socat.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* linux-initrd: Add the 'virtio_console' module for QEMU guests.Ludovic Courtès2014-12-08
| | | | | * gnu/system/linux-initrd.scm (base-initrd)[virtio-modules]: Add "virtio_console".
* build-system/python: Add handling of 'propagated-inputs' inFederico Beffa2014-12-08
| | | | | | | 'package-with-explicit-python'. * guix/build-system/python.scm (package-with-explicit-python): Add mapping for 'propagated-inputs'.
* gnu: atlas: Remove MIPS from 'supported-systems'.Federico Beffa2014-12-08
| | | | * gnu/packages/maths.scm (atlas): Drop support for "mips64el-linux".
* gnu: linux-libre: Update to 3.18Jason Self2014-12-07
| | | | * gnu/packages/linux.scm (linux-libre): Update to version 3.18.
* system: Add 'man-db' to '%base-packages'.Ludovic Courtès2014-12-07
| | | | | | Suggested by Tsutsukakushi on #guix. * gnu/system.scm (%base-packages): Add MAN-DB.
* doc: Give example uses of 'deco'.Ludovic Courtès2014-12-07
| | | | | | Suggested by Sleep_Walker on #guix. * doc/guix.texi (Services): Add 'deco' examples.
* nls: Update 'eo' translation.Ludovic Courtès2014-12-07
|
* gnu: python2-py2cairo: Fix 'license' field.Ludovic Courtès2014-12-07
| | | | | * gnu/packages/gtk.scm (python2-py2cairo)[license]: Change to a list of <license> (was a list of symbols.)
* gnu: tzdata: Update to 2014j.Alex Kost2014-12-07
| | | | * gnu/packages/base.scm (tzdata): Update to 2014j.
* gnu: fish: Use /etc as sysconfdir.宋文武2014-12-07
| | | | | * gnu/packages/fish.scm (fish) [arguments]: Add #:configure-flags. [origin]: Add snippet.
* gnu: Add libyubikey and ykclient.Ludovic Courtès2014-12-07
| | | | | * gnu/packages/yubico.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* guix system: Fix typo affecting 'guix system init'.Ludovic Courtès2014-12-07
| | | | | | | | | Fixes <http://bugs.gnu.org/19279>. Fixes a regression introduced in cc7fa59. Reported by Tomas Cech <tcech@suse.cz>. * guix/scripts/system.scm (install): Fix order of arguments to 'lift' and 'lift2'.
* guix: scripts: Parse $GUIX_BUILD_OPTIONS separately.nebuli2014-12-06
| | | | | | | | | | | | | | | | | | | | Appending to "raw" args broke optional parameters in 'guix package -I' and 'guix package -A', and possibly other places. Therefore, switch to parsing each set of options on its own and append resulting alists together afterwards. * guix/scripts/archive.scm (parse-options-from): Rename from (parse-options) and add explicit argument. New form of (parse-options) using its old algorithm via -from function. * guix/scripts/build.scm: Ditto. * guix/scripts/environment.scm: Ditto. * guix/scripts/package.scm: Ditto. * guix/scripts/system.scm: Ditto. * tests/guix-package.sh: Add test. * doc/guix.texi (Invoking guix build): Make it clear that the options are parsed independently. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
* activation: Don't create unneeded "/var/guix/gcroots/etc-directory".Ludovic Courtès2014-12-06
| | | | | * gnu/build/activation.scm (activate-etc): Don't create "/var/guix/gcroots/etc-directory".
* gnu: fish: Update to 2.1.1.宋文武2014-12-06
| | | | * gnu/packages/fish.scm (fish): Update to 2.1.1.
* system: Make /boot/grub/grub.cfg an indirect GC root.Ludovic Courtès2014-12-04
| | | | | | | | | | Fixes <http://bugs.gnu.org/19160>. * guix/scripts/system.scm (install-grub*): Make /boot/grub/grub.cfg an indirect GC root. * gnu/build/install.scm (install-grub): Make TARGET a symlink. * gnu/build/vm.scm (register-grub.cfg-root): New procedure. (initialize-hard-disk): Use it.
* nls: Update Hungarian translation.Ludovic Courtès2014-12-04
|
* guix system: Factorize 'grub-install' error handling, and use more 'mbegin'.Ludovic Courtès2014-12-04
| | | | | | * guix/scripts/system.scm (install-grub*): New procedure. (install): Use it, and use 'mwhen?'. (perform-action) <reconfigure>: Likewise.
* gnu: Add scipy.Federico Beffa2014-12-04
| | | | * gnu/packages/python.scm (python-scipy, python2-scipy): New variables.
* gnu: Add dmenu.宋文武2014-12-04
| | | | * gnu/packages/dwm.scm (dmenu): New variable.
* gnu: glib: Update to 2.40.2.Ludovic Courtès2014-12-03
| | | | * gnu/packages/glib.scm (glib): Update to 2.40.2.
* gnu: glib: Work around unreliable GIO test.Ludovic Courtès2014-12-03
| | | | | | | | Fixes <http://bugs.gnu.org/18445>. * gnu/packages/patches/glib-tests-gapplication.patch: New file * gnu/packages/glib.scm (glib)[source]: Add it. * gnu-system.am (dist_patch_DATA): Add it.
* gnu: dbus: Update to 1.8.10.Ludovic Courtès2014-12-03
| | | | | * gnu/packages/glib.scm (dbus): Update to 1.8.10. (dbus-1.8.10): Remove.
* nls: Add Hungarian translation.Ludovic Courtès2014-12-03
| | | | | * po/packages/hu.po: New file. * po/packages/LINGUAS: Add it.
* doc: emacs: Fix typo.Alex Kost2014-12-03
| | | | | | Reported by Ludovic Courtès <ludo@gnu.org>. * doc/emacs.texi (Emacs Initial Setup): Replace "inbuilt" with "built-in".
* gnu: Add tre (including the agrep utility)John Darrington2014-12-03
| | | | | * gnu/packages/tre.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* doc: emacs: Document autoloading Emacs packages.Alex Kost2014-12-02
| | | | | * doc/emacs.texi (Emacs Initial Setup): Describe how Emacs packages installed in a user profile are autoloaded by "guix.el"
* gnu: emacs: Add autoloads for Emacs packages.Alex Kost2014-12-02
| | | | | | | | | | * gnu/packages/emacs.scm (geiser): Make "geiser-autoloads.el" by symlinking "geiser-install.el". (emacs-w3m): Make "w3m-autoloads.el" by symlinking "w3m-load.el". (emms): Make "emms-autoloads.el" by symlinking "emms-auto.el". (paredit): Generate "paredit-autoloads.el". (magit): Generate "magit-autoloads.el". (emacs-wget): Generate "wget-autoloads.el".
* build: emacs-utils: Add 'emacs-generate-autoloads'.Alex Kost2014-12-02
| | | | * guix/build/emacs-utils.scm (emacs-generate-autoloads): New procedure.
* emacs: Handle autoloading Emacs packages installed with Guix.Alex Kost2014-12-02
| | | | | | | | | * emacs/guix-emacs.el: New file. * emacs.am (ELFILES): Add it. * emacs/guix-backend.el (guix-after-repl-operation-hook): Add 'guix-emacs-load-autoloads-maybe'. * emacs/guix-init.el.in: Autoload emacs packages. (guix-package-enable-at-startup): New variable.
* emacs: Move profiles code to "guix-profiles.el.in".Alex Kost2014-12-02
| | | | | | | | | | * emacs/guix-base.el (guix-user-profile, guix-default-profile, guix-current-profile, guix-profile-prompt, guix-set-current-profile): Move to... * emacs/guix-init.el.in (guix-default-profile): Move to... * emacs/guix-profiles.el.in: ... here. New file. * configure.ac (AC_CONFIG_FILES): Add "emacs/guix-profiles.el". * emacs.am (nodist_lisp_DATA): Likewise.
* gnu: Add more missing (gnu packages xdisorg) import.Ludovic Courtès2014-12-02
| | | | | | | This is a followup to 3c156c8.. * gnu/packages/qemu.scm, gnu/packages/texlive.scm: Use (gnu packages xdisorg).
* gnu: Add missing (gnu packages xdisorg) import.Ludovic Courtès2014-12-02
| | | | | | This is a followup to 3c156c8.. * gnu/packages/gl.scm: Use (gnu packages xdisorg).
* gnu: Add missing uses of (gnu packages xdisorg).Ludovic Courtès2014-12-02
| | | | | | | This is a followup to 3c156c8. * gnu/packages/gtk.scm: Use (gnu packages xdisorg). * gnu/packages/xorg.scm: Likewise.
* packages: Use the target's system Guile when downloading patches.Ludovic Courtès2014-12-02
| | | | | * guix/packages.scm (patch-and-repack)[patch-inputs]: Pass SYSTEM in 'package-source-derivation' call.
* derivations: Export 'derivation-builder'.Ludovic Courtès2014-12-02
| | | | * guix/derivations.scm: Export 'derivation-builder'.
* doc: Adjust misleading 'user-account' example.Ludovic Courtès2014-12-02
| | | | | | | Reported by Sleep_Walker on #guix. * doc/guix.texi (Using the Configuration System): Remove numeric UID and GID from example.