Commit Graph

6970 Commits

Author SHA1 Message Date
Ludovic Courtès b734996f9c monads: 'foldm', 'mapm', and 'anym' now take a list of regular values.
* guix/monads.scm (foldm, mapm, anym): Change to take a list of regular
  values as is customary.
* tests/monads.scm ("mapm", "anym"): Adjust accordingly.
2015-05-27 09:44:43 +02:00
Ludovic Courtès 49c0a8d6b6 tests: Make sure %BOOTSTRAP-GUILE is available when we need it.
* tests/derivations.scm ("derivation-prerequisites and
  valid-derivation-input?"): Renamed from "derivation-prerequisites and
  derivation-input-is-valid?".  Build %BOOTSTRAP-GUILE.  This fixes a
  regression introduced in cdb5b07 when running the whole test suite.
2015-05-27 09:36:43 +02:00
Ludovic Courtès 07eaecfae1 profiles: Hooks always return a monadic value.
Suggested by 宋文武 <iyzsong@gmail.com>.

* guix/profiles.scm (ghc-package-cache-file): Return a monadic #f, not just
  #f, when MANIFEST contains no GHC package.
  (profile-derivation): Do not filter based on the return value of HOOK;
  instead filter based on the value of items in EXTRAS.
2015-05-26 23:38:27 +02:00
Ludovic Courtès 41766807d0 ui: Improve error reporting for 'read/eval'.
The effect is visible on commands like:

  guix build -e '(+ 2 "foo")'
  guix build -e '()'

* guix/ui.scm (read/eval): Change handler to properly report syntax errors and
  use 'display-error' for other errors.
2015-05-26 22:38:17 +02:00
Cyrill Schenkel cdb5b075d5 gc: ignore trailing slash or subdirectories for `guix gc -d'
Fixes <http://bugs.gnu.org/19757>.

* guix/scripts/gc.scm (guix-gc): Convert paths to direct store paths.
* guix/store.scm (direct-store-path): Get rid of subdirectories in store path.
* tests/guix-gc.sh: New tests.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
2015-05-26 22:26:01 +02:00
Mark H Weaver 9aafbc0c13 gnu: Add wxmaxima.
* gnu/packages/maths.scm (wxmaxima): New variable.
2015-05-26 10:24:11 -04:00
Mark H Weaver 77af7b2407 gnu: maxima: Update to 5.36.1.
* gnu/packages/patches/maxima-defsystem-mkdir.patch: New file.
* gnu-system.am (dist_patch_DATA): Add it.
* gnu/packages/maths.scm (maxima): Update to 5.36.1.  Add patch.
2015-05-26 10:23:38 -04:00
Mark H Weaver d4e17f841c gnu: imagemagick: Update to 6.9.1-3.
* gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.1-3.
2015-05-26 10:23:28 -04:00
宋文武 6344feb318 Merge branch 'gtk-rebuild' 2015-05-26 17:44:18 +08:00
Ludovic Courtès 6dc67c02f7 Augment '.gitignore'. 2015-05-25 22:56:57 +02:00
Ludovic Courtès db030303b8 guix system: Add '--on-error'.
* guix/ui.scm (load*): Add #:on-error parameter.
  [tag, error-string]: New variables.
  Wrap 'load' call in 'call-with-prompt'.  Pass TAG to 'make-stack'.  Honor
  ON-ERROR after 'report-load-error' call.
  (report-load-error): Change to not exit on error.  Make private.
* guix/scripts/system.scm (show-help, %options): Add --on-error.
  (guix-system): Use 'load*' and pass it #:on-error.
2015-05-25 22:52:41 +02:00
Ludovic Courtès 5f1087c481 guix package: --manifest DTRT when combined with --dry-run.
* guix/scripts/package.scm (guix-package)[process-actions]: Process 'manifest
  action regardless of whether 'dry-run? is set.  Adjust the message
  accordingly.
* tests/guix-package.sh: Add error-reporting test.
2015-05-25 21:34:23 +02:00
Ludovic Courtès 2abcc97fd1 ui: Auto-compile user code, and improve error reporting.
Reported by Christian Grothoff.

* guix/ui.scm (load*): Add 'frame-with-source'.  Set
  %load-should-auto-compile.  Change error handle to just (exit 1).  Add
  pre-unwind handler to capture the stack and call 'report-load-error'.
  (report-load-error): Add optional 'frame' parameter and pass it to
  'display-error'.
* tests/guix-system.sh: Add "unbound variable" test.
2015-05-25 21:34:23 +02:00
Ludovic Courtès fbb25e5651 doc: Fix inaccurate wording in "operating-system Reference".
* doc/guix.texi (operating-system Reference): Add missing "kernel".
2015-05-25 21:34:23 +02:00
Ludovic Courtès bf87f38ace system: Define '%base-user-accounts'.
* gnu/system/shadow.scm (%base-user-accounts): New variable.
* gnu/system.scm (<operating-system>)[users]: Use it as the default value.
* gnu/system/examples/bare-bones.tmpl (users): Use it.
* gnu/system/examples/desktop.tmpl (users): Likewise.
* doc/guix.texi (operating-system Reference, User Accounts): Adjust
  accordingly.
2015-05-25 21:34:23 +02:00
Andreas Enge 0899144f79 gnu: Add xmlsec.
* gnu/packages/xml.scm (xmlsec): New variable.
2015-05-24 22:55:32 +02:00
Ludovic Courtès 0c09a306e5 system: Make sure user accounts refer to existing groups.
Fixes <http://bugs.gnu.org/20646>.
Reported by David Thompson <davet@gnu.org>.

* gnu/system/shadow.scm (assert-valid-users/groups): New procedure
* gnu/system.scm (operating-system-activation-script): Use it.
* tests/guix-system.sh (make_user_config): New function.
  Add 3 tests using it.
* po/guix/POTFILES.in: Add gnu/system/shadow.scm.
2015-05-24 18:02:54 +02:00
Ludovic Courtès 6ec1f4caa3 ui: Make 'symlink' replacement more future-proof.
* guix/ui.scm (symlink): Change next-to-last 'throw' argument to explicitly
  ignore ARGS; change last argument to (list errno).
2015-05-24 17:29:14 +02:00
Ludovic Courtès 9b14107f2d ui: Add 'copy-file' replacement with better error reporting.
* guix/ui.scm (copy-file): New procedure.
2015-05-24 17:27:36 +02:00
Ludovic Courtès f245b03deb guix system: init: Copy the closure of 'grub.cfg', not that of the system.
Fixes <http://bugs.gnu.org/20591>.
Reported by Daniel Pimentel <d4n1@openmailbox.org>.

* guix/scripts/system.scm (install): Copy the closure of GRUB.CFG rather than
  that of OS-DIR.
2015-05-24 17:20:24 +02:00
Ludovic Courtès 328639e48f guix system: Always add zero previous entries in grub.cfg for 'init'.
* guix/scripts/system.scm (grub.cfg): Remove.
  (perform-action): Call 'operating-system-grub.cfg' with the empty list as
  the 2nd argument when ACTION is 'init.
2015-05-24 17:15:16 +02:00
Ricardo Wurmus 4a1bf0907b gnu: seahorse: Add SSH support.
* gnu/packages/gnome.scm (seahorse)[inputs]: Add "openssh".
2015-05-24 12:40:56 +02:00
Ricardo Wurmus df90c701b3 gnu: Add seahorse.
* gnu/packages/gnome.scm (seahorse): New variable.
2015-05-24 12:00:17 +02:00
Ricardo Wurmus e99a3d6fd2 gnu: Add gnome-keyring.
* gnu/packages/gnome.scm (gnome-keyring): New variable.
2015-05-24 12:00:17 +02:00
Ricardo Wurmus 8ff4901196 gnu: Add GCR.
* gnu/packages/gnome.scm (gcr): New variable.
2015-05-24 12:00:17 +02:00
Mark H Weaver 30f9cbb072 Merge branch 'master' into gtk-rebuild 2015-05-23 22:24:19 -04:00
Ludovic Courtès 4a35a866be guix system: init: Make sure the target is root-owned.
Suggested by Mark H Weaver <mhw@netris.org>.

* guix/scripts/system.scm (install): Add 'chown' and 'chmod' calls for TARGET
  when running as root, and warn otherwise.
2015-05-24 00:26:12 +02:00
Ludovic Courtès 40245ef316 gnu: linux-boot: Remove outdated and misleading comment.
* gnu/build/linux-boot.scm (boot-system): Remove outdated comment.
2015-05-24 00:26:12 +02:00
Andreas Enge 53142109a0 gnu: bluez: Install the library and header files.
* gnu/packages/linux.scm (bluez)[arguments]: Add --enable-library to
  #:configure-flags.
2015-05-23 20:39:57 +02:00
Andreas Enge 2e88d113aa gnu: dbus-glib: Propagate inputs dbus and glib.
* gnu/packages/glib.scm (dbus-glib): Propagate inputs dbus and glib.
* gnu/packages/audio.scm (patchage),
  gnu/packages/gnuzilla.scm (icecat),
  gnu/packages/python.scm (python-dbus): Drop inputs dbus and glib.
* gnu/packages/gnome.scm (colord, gconf, gnome-vfs, upower),
  gnu/packages/mail.scm (claws-mail),
  gnu/packages/messaging.scm (hexchat),
  gnu/packages/wicd.scm (wicd): Drop input dbus.
2015-05-23 17:12:00 +02:00
Ludovic Courtès c71979f416 doc: Add "Running Guix Before It Is Installed".
* doc/guix.texi (Running Guix Before It Is Installed): New node.
  (Packaging Guidelines): Refer to it.
2015-05-23 15:57:18 +02:00
Ludovic Courtès 92492b2383 doc: Update detailed node list.
* doc/guix.texi (Top): Add "package Reference" and "origin Reference" in
  detailed node list.
2015-05-23 15:57:18 +02:00
Ludovic Courtès ba3bcec9d6 doc: Change "GSD" to "GuixSD".
* doc/emacs.texi (Emacs Initial Setup): Change "GSD" to "GuixSD".
2015-05-23 15:57:17 +02:00
Mark H Weaver f28084285a gnu: gnutls: Update to 3.4.1.
* gnu/packages/patches/gnutls-fix-duplicate-manpages.patch: Remove file.
* gnu-system.am (dist_patch_DATA): Remove it.
* gnu/packages/gnutls.scm (gnutls): Update to 3.4.1.  Remove patch.
2015-05-23 00:17:48 -04:00
宋文武 281c21567d gnu: librsvg: Update to 2.40.9.
* gnu/packages/gnome.scm (librsvg): Update to 2.40.9.
2015-05-23 11:31:30 +08:00
宋文武 14eeefa2dd gnu: Add adwaita-icon-theme.
* gnu/packages/gnome.scm (adwaita-icon-theme): New variable.
2015-05-23 11:26:09 +08:00
宋文武 52b8beb109 gnu: gtk+: Add SVG support to 'gtk-encode-symbolic-svg'.
* gnu/packages/gtk.scm (gtk+)[inputs]: Add librsvg.
  [arguments]: Add 'wrap-gtk-encode-symbolic-svg' phase.
2015-05-23 11:21:49 +08:00
Mark H Weaver 936715c9f4 gnu: gnutls: Update to 3.4.1.
* gnu/packages/patches/gnutls-fix-duplicate-manpages.patch: Remove file.
* gnu-system.am (dist_patch_DATA): Remove it.
* gnu/packages/gnutls.scm (gnutls): Update to 3.4.1.  Remove patch.
2015-05-22 23:00:30 -04:00
宋文武 508891e62a gnu: gtk+: Update to 3.16.3.
* gnu/packages/gtk.scm (gtk+): Update to 3.16.3.
2015-05-23 10:54:05 +08:00
宋文武 62b7015be1 gnu: gtk+-2: Update to 2.24.28.
* gnu/packages/gtk.scm (gtk+-2): Update to 2.24.28.
2015-05-23 10:46:43 +08:00
宋文武 a30a0455e9 gnu: harfbuzz: Enable GObject integration.
* gnu/packages/gtk.scm (harfbuzz): Add glib to propagated-inputs.
  [native-inputs]: Add gobject-introspection.
  [arguments]<#:configure-flags>: Add "--with-gobject".
2015-05-23 10:25:44 +08:00
宋文武 ac462e52a8 gnu: harfbuzz: Update to 0.9.40.
* gnu/packages/gtk.scm (harfbuzz): Update to 0.9.40.
2015-05-23 10:13:50 +08:00
宋文武 86a81222ca Merge branch 'master' into gtk-rebuild
Conflicts:
	gnu/packages/gtk.scm
2015-05-23 09:43:12 +08:00
Mark H Weaver 8605321dd6 gnu: postgresql: Update to 9.3.7.
* gnu/packages/databases.scm (postgresql): Update to 9.3.7.
2015-05-22 15:39:08 -04:00
Ludovic Courtès c95ded7ed6 doc: Clarify the module file name convention.
* doc/guix.texi (Package Modules): Clarify the footnote about the module file
  names convention.  Tweak the wording.
2015-05-22 16:22:00 +02:00
Ricardo Wurmus 748cef5be9 gnu: Add python-rq.
* gnu/packages/python.scm (python-rq, python2-rq): New variables.
2015-05-22 15:23:23 +02:00
Ricardo Wurmus 5394a6a653 gnu: Add python-redis.
* gnu/packages/python.scm (python-redis, python2-redis): New variables.
2015-05-22 15:23:23 +02:00
Ricardo Wurmus 12c270ddd4 gnu: Add python-click.
* gnu/packages/python.scm (python-click, python2-click): New variables.
2015-05-22 15:23:23 +02:00
Ricardo Wurmus 66e3eff1e3 gnu: Add rsem.
* gnu/packages/bioinformatics.scm (rsem): New variable.
* gnu/packages/patches/rsem-makefile.patch: New file.
2015-05-22 13:14:29 +02:00
Ludovic Courtès 21461f27e7 doc: More cross-references.
* doc/guix.texi (Invoking guix package): Add xref to "package Reference".
  (package Reference): Add xref to "Invoking guix package".
  Expound 'native-inputs' example, and add xref to "Invoking guix lint".
2015-05-22 11:51:13 +02:00