jackhill/guix/guix.git
9 years agoThank Brandon.
Ludovic Courtès [Sat, 23 Aug 2014 16:41:43 +0000 (18:41 +0200)]
Thank Brandon.

9 years agoprofiles: Produce a top-level Info 'dir' file.
Ludovic Courtès [Sat, 23 Aug 2014 16:41:14 +0000 (18:41 +0200)]
profiles: Produce a top-level Info 'dir' file.

Fixes <http://bugs.gnu.org/18305>.
Reported by Brandon Invergo <brandon@gnu.org>.

* guix/profiles.scm (manifest-inputs, info-dir-file): New procedures.
  (profile-derivation): Use them.  Add #:info-dir? parameter and honor
  it.
* guix/scripts/package.scm (guix-package): Call 'profile-derivation'
  with #:info-dir? #f when the 'bootstrap? option is set.
* tests/profiles.scm ("profile-derivation"): Pass #:info-dir? #f.

9 years agoprofiles: Report about upgrades.
Alex Kost [Wed, 20 Aug 2014 11:52:36 +0000 (15:52 +0400)]
profiles: Report about upgrades.

* guix/profiles.scm (manifest-show-transaction): Report about upgrades.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
9 years agognu: ffmpeg: Update to 2.3.3.
Jason Self [Wed, 20 Aug 2014 16:06:25 +0000 (09:06 -0700)]
gnu: ffmpeg: Update to 2.3.3.

* gnu/packages/video.scm (ffmpeg): Update to version 2.3.3.

9 years agoMove 'check-package-freshness' from 'guix package' to 'packages'.
Alex Kost [Sat, 16 Aug 2014 18:00:34 +0000 (22:00 +0400)]
Move 'check-package-freshness' from 'guix package' to 'packages'.

* guix/scripts/package.scm (%sigint-prompt, call-with-sigint-handler)
  (waiting, ftp-open*, check-package-freshness): Move to...
* gnu/packages.scm: ... here.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
9 years agopackages: Remove dead code.
Alex Kost [Sun, 17 Aug 2014 17:49:16 +0000 (21:49 +0400)]
packages: Remove dead code.

* gnu/packages.scm (_): Remove.
  Remove an extra space.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
9 years agoguix package: Use 'manifest-transaction'.
Alex Kost [Wed, 13 Aug 2014 20:15:48 +0000 (00:15 +0400)]
guix package: Use 'manifest-transaction'.

* guix/scripts/package.scm (guix-package)[process-actions]: Use
  'manifest-transaction' instead of the equivalent code.
  (show-what-to-remove/install): Remove.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
9 years agoprofiles: Add 'manifest-transaction'.
Alex Kost [Wed, 13 Aug 2014 20:03:53 +0000 (00:03 +0400)]
profiles: Add 'manifest-transaction'.

* guix/profiles.scm (<manifest-transaction>): New record-type.
  (manifest-perform-transaction): New procedure.
  (manifest-show-transaction): New procedure.
* tests/profiles.scm ("manifest-perform-transaction"): New test.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
9 years agogexp: Add 'ungexp-native' and 'ungexp-native-splicing'.
Ludovic Courtès [Mon, 18 Aug 2014 12:53:10 +0000 (14:53 +0200)]
gexp: Add 'ungexp-native' and 'ungexp-native-splicing'.

* guix/gexp.scm (<gexp>)[natives]: New field.
  (write-gexp): Use both 'gexp-references' and
  'gexp-native-references'.
  (gexp->derivation): Use both 'gexp-inputs' and 'gexp-native-inputs',
  and append them.
  (gexp-inputs): Add 'references' parameter and honor it.
  (gexp-native-inputs): New procedure.
  (gexp->sexp)[reference->sexp]: Add 'native?' parameter and honor it.
  Use it, and use 'gexp-native-references'.
  (gexp)[collect-native-escapes]: New procedure.
  [escape->ref]: Handle 'ungexp-native' and 'ungexp-native-splicing'.
  [substitute-ungexp, substitute-ungexp-splicing]: New procedures.
  [substitute-references]: Use them, and handle 'ungexp-native' and
  'ungexp-native-splicing'.
  Adjust generated 'make-gexp' call to provide both normal references
  and native references.
  [read-ungexp]: Support 'ungexp-native' and
  'ungexp-native-splicing'.
  Add reader extension for #+.
* tests/gexp.scm (gexp-native-inputs): New procedure.
  (gexp->sexp*): Add 'target' parameter.
  ("ungexp + ungexp-native",
  "input list + ungexp-native",
  "input list splicing + ungexp-native-splicing",
  "gexp->derivation, ungexp-native",
  "gexp->derivation, ungexp + ungexp-native"): New tests.
  ("sugar"): Add tests for #+ and #+@.
* doc/guix.texi (G-Expressions): Document 'ungexp-native' et al.

9 years agogexp: Add #:target parameter to 'gexp->derivation'.
Ludovic Courtès [Sun, 17 Aug 2014 19:20:11 +0000 (21:20 +0200)]
gexp: Add #:target parameter to 'gexp->derivation'.

* guix/gexp.scm (lower-inputs): Add #:system and #:target.  Use
  'package->cross-derivation' when TARGET is true.  Honor SYSTEM.
  (gexp->derivation): Add #:target argument.  Pass SYSTEM and TARGET to
  'lower-inputs' and 'gexp->sexp'.
  (gexp->sexp): Add #:system and #:target.  Pass them in recursive call
  and to 'package-file'.
* tests/gexp.scm (gexp->sexp*): Add 'system' and 'target' parameters.
  ("gexp->derivation, cross-compilation"): New test.

9 years agomonads: 'package-file' uses '%current-system' at '>>=' time.
Ludovic Courtès [Sun, 17 Aug 2014 19:08:06 +0000 (21:08 +0200)]
monads: 'package-file' uses '%current-system' at '>>=' time.

* guix/monads.scm (package-file): Leave #:system to #f by default.
* tests/monads.scm ("package-file, default system"): New test.

9 years agomonads: Add 'package->cross-derivation' and #:target for 'package-file'.
Ludovic Courtès [Sun, 17 Aug 2014 18:56:47 +0000 (20:56 +0200)]
monads: Add 'package->cross-derivation' and #:target for 'package-file'.

* guix/monads.scm (package-file): Add #:target keyword parameter and
  honor it.
  (package->cross-derivation): New procedure.
* tests/monads.scm ("package-file + package->cross-derivation"): New test.
* doc/guix.texi (The Store Monad): Update 'package-file' documentation.
  Add 'package->cross-derivation'.

9 years agognu: lightning: Update to 2.0.5.
Ludovic Courtès [Sun, 17 Aug 2014 09:59:29 +0000 (11:59 +0200)]
gnu: lightning: Update to 2.0.5.

* gnu/packages/lightning.scm (lightning): Update to 2.0.5.

9 years agognu: guile-json: Update to 0.4.0.
David Thompson [Sat, 16 Aug 2014 23:30:26 +0000 (19:30 -0400)]
gnu: guile-json: Update to 0.4.0.

* gnu/packages/guile.scm (guile-json): Update to 0.4.0.

9 years agognu: apr: Disable parallel tests.
Mark H Weaver [Sat, 16 Aug 2014 16:54:16 +0000 (12:54 -0400)]
gnu: apr: Disable parallel tests.

* gnu/packages/apr.scm (apr): Disable parallel tests.

9 years agognu: apr-util: Update to 1.5.3.
Mark H Weaver [Sat, 16 Aug 2014 16:35:37 +0000 (12:35 -0400)]
gnu: apr-util: Update to 1.5.3.

* gnu/packages/apr.scm (apr-util): Update to 1.5.3.

9 years agognu: apr: Update to 1.5.1.
Mark H Weaver [Sat, 16 Aug 2014 16:32:04 +0000 (12:32 -0400)]
gnu: apr: Update to 1.5.1.

* gnu/packages/apr.scm (apr): Update to 1.5.1.

9 years agognu: texi2html: Fix tests in the absense of gettext.
Eric Bavier [Sat, 16 Aug 2014 05:56:42 +0000 (00:56 -0500)]
gnu: texi2html: Fix tests in the absense of gettext.

* gnu/packages/patches/texi2html-i18n.patch: New patch.
* gnu/packages/texinfo.scm (texi2html)[source]: Use it.
* gnu-system.am (dist_patch_DATA): Add it.

9 years agognu: subversion: Update to 1.7.18.
Mark H Weaver [Sat, 16 Aug 2014 06:19:07 +0000 (02:19 -0400)]
gnu: subversion: Update to 1.7.18.

* gnu/packages/version-control.scm (subversion): Update to 1.7.18.

9 years agoAdd (guix monad-repl).
Ludovic Courtès [Fri, 15 Aug 2014 14:22:11 +0000 (16:22 +0200)]
Add (guix monad-repl).

* guix/monad-repl.scm: New file.
* guix.scm: Add it.
* Makefile.am (MODULES): Add it.
* doc/guix.texi (The Store Monad): Document it.

9 years agolinux-initrd: Do not create /etc/resolv.conf.
Ludovic Courtès [Fri, 15 Aug 2014 14:06:21 +0000 (16:06 +0200)]
linux-initrd: Do not create /etc/resolv.conf.

* guix/build/linux-initrd.scm (configure-qemu-networking): Don't create
  /etc/resolv.conf.

9 years agoUpdate AUTHORS and THANKS.
Ludovic Courtès [Fri, 15 Aug 2014 10:00:22 +0000 (12:00 +0200)]
Update AUTHORS and THANKS.

9 years agolinux-initrd: Load fscache.ko before the 9p modules.
Ludovic Courtès [Thu, 14 Aug 2014 09:56:22 +0000 (11:56 +0200)]
linux-initrd: Load fscache.ko before the 9p modules.

* gnu/system/linux-initrd.scm (base-initrd)[virtio-9p-modules]: Add
  "fscache.ko", required by Linux-libre 3.16.

9 years agognu: Fix synopses for emacs-wget and fetchmail.
Mark H Weaver [Fri, 15 Aug 2014 06:10:26 +0000 (02:10 -0400)]
gnu: Fix synopses for emacs-wget and fetchmail.

* gnu/packages/emacs.scm (emacs-wget): Improve synopsis.
* gnu/packages/mail.scm (fetchmail): Fix typo in synopsis.

9 years agodoc: Fix mention of default log location.
Mark H Weaver [Fri, 15 Aug 2014 05:16:31 +0000 (01:16 -0400)]
doc: Fix mention of default log location.

* doc/guix.texi (Invoking guix-daemon): Fix mention of default log location.

9 years agognu: Add emacs-wget.
Mark H Weaver [Sun, 27 Jul 2014 20:37:13 +0000 (16:37 -0400)]
gnu: Add emacs-wget.

* gnu/packages/emacs.scm (emacs-wget): New variable.

9 years agognu: Add emacs-w3m.
Mark H Weaver [Thu, 24 Jul 2014 15:38:42 +0000 (11:38 -0400)]
gnu: Add emacs-w3m.

* gnu/packages/emacs.scm (emacs-w3m): New variable.

9 years agognu: Add paredit.
Mark H Weaver [Sun, 3 Aug 2014 00:01:48 +0000 (20:01 -0400)]
gnu: Add paredit.

* gnu/packages/emacs.scm (paredit): New variable.

9 years agognu: Add magit.
Mark H Weaver [Sun, 3 Aug 2014 02:20:23 +0000 (22:20 -0400)]
gnu: Add magit.

* gnu/packages/emacs.scm (magit): New variable.

9 years agoAdd (guix build emacs-utils).
Mark H Weaver [Sat, 2 Aug 2014 23:24:50 +0000 (19:24 -0400)]
Add (guix build emacs-utils).

* guix/build/emacs-utils.scm: New file.
* Makefile.am (MODULES): Add it.
* .dir-locals.el: Add indentation rules.

9 years agognu: linux-libre: Update to 3.16.1.
Jason Self [Thu, 14 Aug 2014 17:57:29 +0000 (10:57 -0700)]
gnu: linux-libre: Update to 3.16.1.

* gnu/packages/linux.scm (linux-libre): Update to version 3.16.1.

9 years agognu: apl: Update to 1.4, add sqlite support.
Mark H Weaver [Thu, 14 Aug 2014 17:46:00 +0000 (13:46 -0400)]
gnu: apl: Update to 1.4, add sqlite support.

* gnu/packages/apl.scm (apl): Update to 1.4.  Add 'sqlite' as an input.
  Pass --with-sqlite3 to configure.

9 years agognu: mysql: Update to 5.1.73.
Mark H Weaver [Thu, 14 Aug 2014 17:29:02 +0000 (13:29 -0400)]
gnu: mysql: Update to 5.1.73.

* gnu/packages/mysql.scm (mysql): Update to 5.1.73.  Update source URI.

9 years agognu: gpgme: Update to 1.5.1.
Mark H Weaver [Thu, 14 Aug 2014 14:03:00 +0000 (10:03 -0400)]
gnu: gpgme: Update to 1.5.1.

* gnu/packages/gnupg.scm (gpgme): Update to 1.5.1.  Pass "GPG=gpg2"
  to 'make'.

9 years agognu: lvm2: Upgrade, use udev, improve synopsis and description.
Ludovic Courtès [Wed, 13 Aug 2014 10:19:25 +0000 (12:19 +0200)]
gnu: lvm2: Upgrade, use udev, improve synopsis and description.

* gnu/packages/linux.scm (lvm2): New variable.
* gnu/packages/lvm.scm: Remove.
* gnu-system.am (GNU_SYSTEM_MODULES): Remove it.
* gnu/packages/cryptsetup.scm: Adjust accordingly.

9 years agosystem: grub: Change the default default-entry to 0.
Mark H Weaver [Fri, 8 Aug 2014 04:50:53 +0000 (00:50 -0400)]
system: grub: Change the default default-entry to 0.

* gnu/system/grub.scm (<grub-configuration>)[default-entry]: Change the
  default to 0.

9 years agognu: gnupg: Update to 2.0.26.
Mark H Weaver [Wed, 13 Aug 2014 06:47:53 +0000 (02:47 -0400)]
gnu: gnupg: Update to 2.0.26.

* gnu/packages/gnupg.scm (gnupg): Update to 2.0.26.

9 years agognu: Add terminus-font.
Guy Grant [Wed, 13 Aug 2014 01:33:58 +0000 (20:33 -0500)]
gnu: Add terminus-font.

* gnu/packages/fonts.scm (terminus-font): New variable.

9 years agoRemove ftp.sunet.se mirror.
David Thompson [Tue, 12 Aug 2014 13:48:34 +0000 (09:48 -0400)]
Remove ftp.sunet.se mirror.

* guix/download.scm (%mirrors): Remove ftp.sunet.se URIs.

9 years agoprofiles: Adjust to unintended manifest format change.
Ludovic Courtès [Tue, 12 Aug 2014 20:09:42 +0000 (22:09 +0200)]
profiles: Adjust to unintended manifest format change.

Reported by Andreas Enge.

* guix/profiles.scm (sexp->manifest): Adjust to handle unintended format
  change introduced in 4ca0b41.

9 years agoguix package: Remove leftover internal procedure.
Ludovic Courtès [Tue, 12 Aug 2014 19:41:45 +0000 (21:41 +0200)]
guix package: Remove leftover internal procedure.

Reported by Alex Kost <alezost@gmail.com>.

* guix/scripts/package.scm (guix-package)[process-actions]: Remove
  'same-package?'.

9 years agognu: Add detox.
Eric Bavier [Tue, 12 Aug 2014 18:36:35 +0000 (13:36 -0500)]
gnu: Add detox.

* gnu/packages/admin.scm (detox): New variable.

9 years agoguix package: Use 'manifest-add'.
Ludovic Courtès [Tue, 12 Aug 2014 14:10:32 +0000 (16:10 +0200)]
guix package: Use 'manifest-add'.

* guix/scripts/package.scm (guix-package)[process-actions]: Use
  'manifest-add' instead of the equivalent code.

9 years agoprofiles: Add 'manifest-add'.
Alex Kost [Tue, 12 Aug 2014 08:32:16 +0000 (12:32 +0400)]
profiles: Add 'manifest-add'.

* guix/profiles.scm (manifest-add): New procedure.
* tests/profiles.scm (guile-1.8.8): New variable.
  ("manifest-add"): New test.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
9 years agoRevert "nls: Use xgettext and msgmerge with --no-wrap."
Ludovic Courtès [Tue, 12 Aug 2014 13:45:55 +0000 (15:45 +0200)]
Revert "nls: Use xgettext and msgmerge with --no-wrap."

This reverts commit 648453e8d6005a7a2caec688cc035db86fe73c02.

See <http://lists.gnu.org/archive/html/bug-gettext/2014-08/msg00005.html>
for the rationale.

9 years agognu: texi2html: Remove dependency on Gettext.
Ludovic Courtès [Tue, 12 Aug 2014 13:44:40 +0000 (15:44 +0200)]
gnu: texi2html: Remove dependency on Gettext.

Partly fixes <http://bugs.gnu.org/18247>.

* gnu/packages/texinfo.scm (texi2html)[source]: Add 'snippet' field.

9 years agognu: Add orpheus.
Eric Bavier [Fri, 25 Jul 2014 04:40:44 +0000 (23:40 -0500)]
gnu: Add orpheus.

* gnu/packages/orpheus.scm: New file.
* gnu/packages/patches/orpheus-cast-errors-and-includes.patch: New patch.
* gnu-system.am (GNU_SYSTEM_MODULES): Add file.
  (dist_patch_DATA): Add patch.

9 years agognu: Add emacs-no-x-toolkit.
Taylan Ulrich Bayirli/Kammer [Tue, 29 Jul 2014 08:00:56 +0000 (10:00 +0200)]
gnu: Add emacs-no-x-toolkit.

* gnu/packages/emacs.scm (emacs-no-x-toolkit): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
9 years agosystem: Use (guix profiles) to build the system profile.
Ludovic Courtès [Mon, 11 Aug 2014 20:18:33 +0000 (22:18 +0200)]
system: Use (guix profiles) to build the system profile.

* gnu/system.scm (union): Remove.
  (operating-system-profile): Use 'profile-derivation' and related
  procedures instead of 'union'.

9 years agognu: Add texi2html.
Eric Bavier [Fri, 25 Jul 2014 21:37:44 +0000 (16:37 -0500)]
gnu: Add texi2html.

* gnu/packages/texinfo.scm (texi2html): New variable.
* gnu/packages/patches/texi2html-document-encoding.patch: New patch.
* gnu-system.am (dist_patch_DATA): Add it.

9 years agoguix package: Remove dead code and unused variables.
Ludovic Courtès [Mon, 11 Aug 2014 16:58:17 +0000 (18:58 +0200)]
guix package: Remove dead code and unused variables.

Suggested by Alex Kost <alezost@gmail.com>.

* guix/scripts/package.scm (options->installable)[deduplicate]: Remove.
  [packages-to-upgrade]: Remove unused variable 'newest'.
  (roll-back): Remove unused variable 'manifest'.
  (guix-package): Remove unused variables 'guile-missing?', 'verbose?',
  and 'packages'.

9 years agonls: Add Czech translation.
Ludovic Courtès [Mon, 11 Aug 2014 16:45:54 +0000 (18:45 +0200)]
nls: Add Czech translation.

9 years agognu: Add AVRDUDE
Manolis Ragkousis [Thu, 24 Jul 2014 11:05:43 +0000 (11:05 +0000)]
gnu: Add AVRDUDE

* gnu/packages/avrdude.scm: New file
* gnu-system.am (GNU_SYSTEM_MODULES): Add avrdude.scm
* gnu/packages/patches/avrdude-fix-libusb.patch: New patch.
* gnu-system.am (dist_patch_DATA): Add it.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
9 years agoui: Fix handling of periods by fill-paragraph.
Cyrill Schenkel [Sat, 26 Jul 2014 22:53:16 +0000 (00:53 +0200)]
ui: Fix handling of periods by fill-paragraph.

Fixes <http://bugs.gnu.org/17468>.

* guix/ui.scm (fill-paragraph): Two spaces after period and no spaces before newline.
* tests/ui.scm: New test case.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
9 years agobuild: 'make clean' doesn't delete os-config.tmpl.
Ludovic Courtès [Mon, 11 Aug 2014 15:15:27 +0000 (17:15 +0200)]
build: 'make clean' doesn't delete os-config.tmpl.

Fixes <http://bugs.gnu.org/18243>.
Reported by Andreas Enge and Mark H. Weaver.

* Makefile.am (EXAMPLES): New variable.
  (nobase_dist_guilemodule_DATA): Add it.
* gnu-system.am (GNU_SYSTEM_MODULES): Remove gnu/system/os-config.tmpl.

9 years agognu: geiser: Update to 0.6.
Mark H Weaver [Sun, 10 Aug 2014 01:04:59 +0000 (21:04 -0400)]
gnu: geiser: Update to 0.6.

* gnu/packages/emacs.scm (geiser): Update to 0.6.

9 years agognu: linux-libre: Update to 3.16.
Jason Self [Sat, 9 Aug 2014 16:33:28 +0000 (09:33 -0700)]
gnu: linux-libre: Update to 3.16.

* gnu/packages/linux.scm (linux-libre): Update to version 3.16.

9 years agognu: openssl: Update to 1.0.1i.
Mark H Weaver [Sat, 9 Aug 2014 15:26:50 +0000 (11:26 -0400)]
gnu: openssl: Update to 1.0.1i.

* gnu/packages/openssl.scm (openssl): Update to 1.0.1i.

9 years agognu: linux-libre: Update to 3.15.9.
Mark H Weaver [Sat, 9 Aug 2014 06:49:03 +0000 (02:49 -0400)]
gnu: linux-libre: Update to 3.15.9.

* gnu/packages/linux.scm (linux-libre): Update to 3.15.9.

9 years agognu: xorg: Add presentproto.
Andreas Enge [Fri, 8 Aug 2014 20:37:32 +0000 (22:37 +0200)]
gnu: xorg: Add presentproto.

* gnu/packages/xorg.scm (presentproto): New variable.

9 years agognu: xorg: Add dri3proto.
Andreas Enge [Fri, 8 Aug 2014 20:30:07 +0000 (22:30 +0200)]
gnu: xorg: Add dri3proto.

* gnu/packages/xorg.scm (dri3proto): New variable.

9 years agognu: xf86-input-evdev: Add required input udev.
Andreas Enge [Fri, 8 Aug 2014 19:37:54 +0000 (21:37 +0200)]
gnu: xf86-input-evdev: Add required input udev.

* gnu/packages/xorg.scm (xf86-input-evdev): Add input udev.

9 years agognu: setxkbmap: Use xkeyboard-config as default config root.
Mark H Weaver [Fri, 8 Aug 2014 06:28:44 +0000 (02:28 -0400)]
gnu: setxkbmap: Use xkeyboard-config as default config root.

* gnu/packages/xorg.scm (setxkbmap): Add 'xkeyboard-config' as an input.
  Pass --with-xkb-config-root to configure.

9 years agoservices: lsh: Fix activation script.
Mark H Weaver [Fri, 8 Aug 2014 01:00:57 +0000 (21:00 -0400)]
services: lsh: Fix activation script.

* gnu/services/ssh.scm (lsh-service)[activate]: Import (guix build utils)
  for 'mkdir-p'.

9 years agognu: Add xsensors.
Mark H Weaver [Fri, 8 Aug 2014 00:35:10 +0000 (20:35 -0400)]
gnu: Add xsensors.

* gnu/packages/linux.scm (xsensors): New variable.

9 years agognu: Add lm-sensors.
Mark H Weaver [Fri, 8 Aug 2014 00:29:32 +0000 (20:29 -0400)]
gnu: Add lm-sensors.

* gnu/packages/patches/lm-sensors-hwmon-attrs.patch: New file.
* gnu-system.am (dist_patch_DATA): Add it.
* gnu/packages/linux.scm (lm-sensors): New variable.

9 years agognu: Add rrdtool.
Mark H Weaver [Thu, 7 Aug 2014 21:53:02 +0000 (17:53 -0400)]
gnu: Add rrdtool.

* gnu/packages/rrdtool.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.

9 years agognu: Add stress.
Mark H Weaver [Thu, 7 Aug 2014 18:48:45 +0000 (14:48 -0400)]
gnu: Add stress.

* gnu/packages/admin.scm (stress): New variable.

9 years agognu: curl: Update to 7.37.1.
Andreas Enge [Thu, 7 Aug 2014 20:53:21 +0000 (22:53 +0200)]
gnu: curl: Update to 7.37.1.

* gnu/packages/curl.scm (curl): Update to 7.37.1. Remove patch.
* gnu/packages/patches/curl-fix-test172.patch: Remove file.
* gnu-system.am (dist_patch_DATA): Remove patch.

9 years agognu: gnurl: Update to 7.37.0.
Andreas Enge [Thu, 7 Aug 2014 20:29:33 +0000 (22:29 +0200)]
gnu: gnurl: Update to 7.37.0.

* gnu/packages/gnunet.scm (gnurl): Update to 7.37.0.

9 years agognu: notmuch: Update to 0.18.1.
Mark H Weaver [Wed, 6 Aug 2014 16:42:36 +0000 (12:42 -0400)]
gnu: notmuch: Update to 0.18.1.

* gnu/packages/mail.scm (notmuch): Update to 0.18.1.

9 years agognu: xapian: Update to 1.2.18.
Mark H Weaver [Wed, 6 Aug 2014 16:41:54 +0000 (12:41 -0400)]
gnu: xapian: Update to 1.2.18.

* gnu/packages/search.scm (xapian): Update to 1.2.18.

9 years agognu: transmission: Update to 2.84.
Mark H Weaver [Wed, 6 Aug 2014 04:26:28 +0000 (00:26 -0400)]
gnu: transmission: Update to 2.84.

* gnu/packages/bittorrent.scm (transmission): Update to 2.84.

9 years agognu: Add acpica.
Mark H Weaver [Tue, 5 Aug 2014 18:23:22 +0000 (14:23 -0400)]
gnu: Add acpica.

* gnu/packages/admin.scm (acpica): New variable.

9 years agognu: Add flashrom.
Mark H Weaver [Tue, 5 Aug 2014 04:15:08 +0000 (00:15 -0400)]
gnu: Add flashrom.

* gnu/packages/patches/flashrom-use-libftdi1.patch: New file.
* gnu-system.am (dist_patch_DATA): Add it.
* gnu/packages/admin.scm (flashrom): New variable.

9 years agognu: libftdi: Fix mistakes in package description.
Mark H Weaver [Tue, 5 Aug 2014 07:28:12 +0000 (03:28 -0400)]
gnu: libftdi: Fix mistakes in package description.

* gnu/packages/libftdi.scm (libftdi): Change 'libusb' from a
  'native-input' to a normal 'input'.  Fix the 'home-page' and
  'license' fields.

9 years agognu: ffmpeg: Update to 2.3.1.
Mark H Weaver [Tue, 5 Aug 2014 23:57:20 +0000 (19:57 -0400)]
gnu: ffmpeg: Update to 2.3.1.

* gnu/packages/video.scm (ffmpeg): Update to 2.3.1.

9 years agognu: tor: Update to 0.2.4.23.
Mark H Weaver [Tue, 5 Aug 2014 02:43:42 +0000 (22:43 -0400)]
gnu: tor: Update to 0.2.4.23.

* gnu/packages/tor.scm (tor): Update to 0.2.4.23.

9 years agognu: ffmpeg and vlc: Rely on runtime cpu detection.
Mark H Weaver [Mon, 4 Aug 2014 20:11:38 +0000 (16:11 -0400)]
gnu: ffmpeg and vlc: Rely on runtime cpu detection.

* gnu/packages/video.scm (ffmpeg): Pass "--enable-runtime-cpudetect"
  to configure.  Do not disable use of processor features that can be
  detected at runtime.
  (vlc): Rely on runtime cpu detection.  Do not disable use of
  processor features that can be detected at runtime.

9 years agognu: mplayer: Enable runtime cpu detection.
Mark H Weaver [Mon, 4 Aug 2014 03:27:24 +0000 (23:27 -0400)]
gnu: mplayer: Enable runtime cpu detection.

* gnu/packages/video.scm (mplayer): Pass --enable-runtime-cpudetection
  to configure on supported platforms, as well as a suitable --target.

9 years agognu: gdb: Update to 7.8.
Mark H Weaver [Sun, 3 Aug 2014 16:34:40 +0000 (12:34 -0400)]
gnu: gdb: Update to 7.8.

* gnu/packages/gdb.scm (gdb): Update to 7.8.  Add 'guile' and 'python'
  as inputs.  Add 'pkg-config' as a native-input.

9 years agognu: linux-libre: Update to 3.15.8.
Jason Self [Fri, 1 Aug 2014 22:35:16 +0000 (15:35 -0700)]
gnu: linux-libre: Update to 3.15.8.

* gnu/packages/linux.scm (linux-libre): Update to version 3.15.8.

9 years agognu: gccgo: Suppress the separate "lib" output.
Mark H Weaver [Thu, 31 Jul 2014 22:19:22 +0000 (18:19 -0400)]
gnu: gccgo: Suppress the separate "lib" output.

Fixes <http://debbugs.gnu.org/18101>.

* gnu/packages/gcc.scm (custom-gcc): Add 'separate-lib-output?'
  keyword argument.
  (gccgo-4.8): Pass #:separate-lib-output? #f to 'custom-gcc'.

9 years agognu: linux-libre: Update to 3.15.7.
Jason Self [Wed, 30 Jul 2014 14:55:53 +0000 (07:55 -0700)]
gnu: linux-libre: Update to 3.15.7.

* gnu/packages/linux.scm (linux-libre): Update to version 3.15.7.

9 years agognu: gnumeric: Adapt to glib "bin" split.
Mark H Weaver [Sat, 26 Jul 2014 21:08:56 +0000 (17:08 -0400)]
gnu: gnumeric: Adapt to glib "bin" split.

* gnu/packages/gnome.scm (gnumeric): Add glib:bin to 'native-inputs'.

9 years agoprofiles: Add 'package->manifest-entry'.
Ludovic Courtès [Sat, 26 Jul 2014 20:54:40 +0000 (22:54 +0200)]
profiles: Add 'package->manifest-entry'.

Suggested by Alex Kost <alezost@gmail.com>.

* guix/scripts/package.scm (options->installable)[package->manifest-entry]:
  Move to (guix profiles).
  [package->manifest-entry*]: New procedure.
  Use it.
* guix/profiles.scm (package->manifest-entry): New procedure.
* tests/profiles.scm (guile-for-build): New variable.
  Call '%guile-for-build'.
  ("profile-derivation"): New test.

9 years agoprofiles: Get rid of the 'inputs' field of 'manifest-entry'.
Ludovic Courtès [Sat, 26 Jul 2014 20:21:43 +0000 (22:21 +0200)]
profiles: Get rid of the 'inputs' field of 'manifest-entry'.

* guix/profiles.scm (<manifest-entry>)[inputs]: Remove.
  (profile-derivation): Rely on 'item' and 'deps' instead of 'inputs'.
  Adjust 'builder' accordingly.
* guix/scripts/package.scm (options->installable)[package->manifest-entry]:
  Remove 'inputs' field.  Change 'dependencies' field to contain
  packages.

9 years agoprofiles: Switch to gexps.
Ludovic Courtès [Sat, 26 Jul 2014 20:08:10 +0000 (22:08 +0200)]
profiles: Switch to gexps.

* guix/profiles.scm (<manifest-entry>)[path]: Rename to...
  [item]: ... this.  Update users.
  (manifest->sexp): Rename to...
  (manifest->gexp): ... this.  Return a gexp.
  (lower-input): Remove.
  (profile-derivation): Remove 'store' parameter, and turn into a
  monadic procedure.
  [inputs]: New variable.
  [builder]: Turn into a gexp.
  Replace call to 'build-expression->derivation' with call to
  'gexp->derivation'.
* guix/scripts/package.scm (link-to-empty-profile): Adjust call to
  'profile-derivation', and wrap it in 'run-with-store'.
  (show-what-to-remove/install): Rename 'path' to 'item'.  Check whether
  ITEM is a package, and return its output path if it is.
  (input->name+path): Remove.
  (options->installable): Set 'item' to P.
  (guix-package): Adjust call to 'profile-derivation'.
* tests/profiles.scm (guile-2.0.9): Change 'path' to 'item'.

9 years agoprofiles: Do away with 'manifest=?'.
Ludovic Courtès [Sat, 26 Jul 2014 19:43:43 +0000 (21:43 +0200)]
profiles: Do away with 'manifest=?'.

* guix/profiles.scm (manifest=?): Remove.
* guix/scripts/package.scm (readlink*): New procedure.
  (guix-package)[process-actions]: Use 'readlink*' and compare the
  profile to be built, PROF, with PROFILE to determine whether there's
  nothing to be done.

9 years agognu: goffice: Adapt to glib "bin" split.
Mark H Weaver [Sat, 26 Jul 2014 20:44:26 +0000 (16:44 -0400)]
gnu: goffice: Adapt to glib "bin" split.

* gnu/packages/gnome.scm (goffice): Add glib:bin to 'native-inputs'.

9 years agognu: sudo: Apply workaround to build system for MIPS.
Mark H Weaver [Sat, 26 Jul 2014 20:08:35 +0000 (16:08 -0400)]
gnu: sudo: Apply workaround to build system for MIPS.

* gnu/packages/admin.scm (sudo): Work around the fact that configure fails on
  MIPS without 'file'.

9 years agoprofiles: Remove dead code.
Ludovic Courtès [Fri, 25 Jul 2014 21:19:23 +0000 (23:19 +0200)]
profiles: Remove dead code.

* guix/profiles.scm (write-manifest): Remove.
  (read-manifest): Keep private.

9 years agodoc: Replace incorrect uses of @ref by @pxref.
Ludovic Courtès [Fri, 25 Jul 2014 20:05:17 +0000 (22:05 +0200)]
doc: Replace incorrect uses of @ref by @pxref.

* doc/guix.texi: Use @pxref at the end of sentences, not @ref.

9 years agognu: libpeas: Adjust to glib "bin" split.
Mark H Weaver [Fri, 25 Jul 2014 19:48:25 +0000 (15:48 -0400)]
gnu: libpeas: Adjust to glib "bin" split.

* gnu/packages/gnome.scm (libpeas): Add glib:bin to 'native-inputs'.

9 years agotests: Make sure --search="" works.
Ludovic Courtès [Fri, 25 Jul 2014 15:56:14 +0000 (17:56 +0200)]
tests: Make sure --search="" works.

* tests/guix-package.sh: Move '-s' tests outside of the network-only
  section.  Make sure --search="" works.

9 years agognu: Add dmidecode.
Ludovic Courtès [Fri, 25 Jul 2014 15:47:53 +0000 (17:47 +0200)]
gnu: Add dmidecode.

* gnu/packages/admin.scm (dmidecode): New variable.

9 years agoguix: package: Fix recutils output for non-package inputs.
Eric Bavier [Fri, 25 Jul 2014 12:38:20 +0000 (07:38 -0500)]
guix: package: Fix recutils output for non-package inputs.

* guix/ui.scm (package->recutils)[dependencies]: Ignore non-package inputs.
* tests/guix-package.sh: New test.

9 years agognu: guix: Update to 0.7.
Ludovic Courtès [Fri, 25 Jul 2014 11:46:30 +0000 (13:46 +0200)]
gnu: guix: Update to 0.7.

* gnu/packages/package-management.scm (guix-0.6): Rename to...
  (guix-0.7): ... this.  Upgrade to 0.7.
  (guix): Alias for GUIX-0.7.
  (guix-devel): Change 'guix-0.6' to 'guix-0.7'.

9 years agobuild: Bump to version 0.8.
Ludovic Courtès [Fri, 25 Jul 2014 11:38:16 +0000 (13:38 +0200)]
build: Bump to version 0.8.

* configure.ac: Switch to 0.8.

9 years agodoc: Fix typo in USB image file name.
Ludovic Courtès [Fri, 25 Jul 2014 11:35:12 +0000 (13:35 +0200)]
doc: Fix typo in USB image file name.

* doc/guix.texi (System Installation): Change image file name.