summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* gnu: libgc-7.2: Update to 7.2f.Mark H Weaver2014-08-23
| | | | * gnu/packages/bdw-gc.scm (libgc-7.2): Update to 7.2f.
* gnu: libgcrypt-1.5: Update to 1.5.4.Mark H Weaver2014-08-23
| | | | * gnu/packages/gnupg.scm (libgcrypt-1.5): Update to 1.5.4.
* svn-download: Rewrite using gexps.Ludovic Courtès2014-08-23
| | | | | | * guix/svn-download.scm (subversion-package): New procedure. (svn-fetch): Use it. Remove 'svn-for-build'. Use a gexp and 'gexp->derivation'.
* git-download: Rewrite using gexps.Ludovic Courtès2014-08-23
| | | | | | | * guix/git-download.scm (git-package): New procedure. (git-fetch): Use it. Remove 'git-for-build'. Use a gexp and 'gexp->derivation'. * guix/download.scm (gnutls-package): Fix docstring.
* Factorize test suite support in (guix tests).Ludovic Courtès2014-08-23
| | | | | | | | | | | | | | | | | | | | * guix/tests.scm: New file. * Makefile.am (noinst_DATA): New variable. (GOBJECTS): Add guix/tests.go. * tests/builders.scm (%store): Use 'open-connection-for-tests' from (guix tests). * tests/derivations.scm: Likewise. * tests/monads.scm: Likewise. * tests/packages.scm: Likewise. * tests/profiles.scm: Likewise. * tests/union.scm: Likewise. * tests/gexp.scm: Likewise. (guile-for-build): Remove. Use (%guile-for-build) instead. * tests/nar.scm (make-random-bytevector, %seed, random-text): Remove. (populate-file): Change 'make-random-bytevector' to 'random-bytevector'. Use (guix tests). * tests/store.scm (%seed, random-text): Remove. Use (guix tests).
* Thank Brandon.Ludovic Courtès2014-08-23
|
* profiles: Produce a top-level Info 'dir' file.Ludovic Courtès2014-08-23
| | | | | | | | | | | | 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.
* profiles: Report about upgrades.Alex Kost2014-08-23
| | | | | | * guix/profiles.scm (manifest-show-transaction): Report about upgrades. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: ffmpeg: Update to 2.3.3.Jason Self2014-08-20
| | | | * gnu/packages/video.scm (ffmpeg): Update to version 2.3.3.
* Move 'check-package-freshness' from 'guix package' to 'packages'.Alex Kost2014-08-20
| | | | | | | | * 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>
* packages: Remove dead code.Alex Kost2014-08-19
| | | | | | | * gnu/packages.scm (_): Remove. Remove an extra space. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* guix package: Use 'manifest-transaction'.Alex Kost2014-08-19
| | | | | | | | * 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>
* profiles: Add 'manifest-transaction'.Alex Kost2014-08-19
| | | | | | | | | * 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>
* gexp: Add 'ungexp-native' and 'ungexp-native-splicing'.Ludovic Courtès2014-08-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* gexp: Add #:target parameter to 'gexp->derivation'.Ludovic Courtès2014-08-17
| | | | | | | | | | | * 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.
* monads: 'package-file' uses '%current-system' at '>>=' time.Ludovic Courtès2014-08-17
| | | | | * guix/monads.scm (package-file): Leave #:system to #f by default. * tests/monads.scm ("package-file, default system"): New test.
* monads: Add 'package->cross-derivation' and #:target for 'package-file'.Ludovic Courtès2014-08-17
| | | | | | | | | * 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'.
* gnu: lightning: Update to 2.0.5.Ludovic Courtès2014-08-17
| | | | * gnu/packages/lightning.scm (lightning): Update to 2.0.5.
* gnu: guile-json: Update to 0.4.0.David Thompson2014-08-16
| | | | * gnu/packages/guile.scm (guile-json): Update to 0.4.0.
* gnu: apr: Disable parallel tests.Mark H Weaver2014-08-16
| | | | * gnu/packages/apr.scm (apr): Disable parallel tests.
* gnu: apr-util: Update to 1.5.3.Mark H Weaver2014-08-16
| | | | * gnu/packages/apr.scm (apr-util): Update to 1.5.3.
* gnu: apr: Update to 1.5.1.Mark H Weaver2014-08-16
| | | | * gnu/packages/apr.scm (apr): Update to 1.5.1.
* gnu: texi2html: Fix tests in the absense of gettext.Eric Bavier2014-08-16
| | | | | | * gnu/packages/patches/texi2html-i18n.patch: New patch. * gnu/packages/texinfo.scm (texi2html)[source]: Use it. * gnu-system.am (dist_patch_DATA): Add it.
* gnu: subversion: Update to 1.7.18.Mark H Weaver2014-08-16
| | | | * gnu/packages/version-control.scm (subversion): Update to 1.7.18.
* Add (guix monad-repl).Ludovic Courtès2014-08-15
| | | | | | | * guix/monad-repl.scm: New file. * guix.scm: Add it. * Makefile.am (MODULES): Add it. * doc/guix.texi (The Store Monad): Document it.
* linux-initrd: Do not create /etc/resolv.conf.Ludovic Courtès2014-08-15
| | | | | * guix/build/linux-initrd.scm (configure-qemu-networking): Don't create /etc/resolv.conf.
* Update AUTHORS and THANKS.Ludovic Courtès2014-08-15
|
* linux-initrd: Load fscache.ko before the 9p modules.Ludovic Courtès2014-08-15
| | | | | * gnu/system/linux-initrd.scm (base-initrd)[virtio-9p-modules]: Add "fscache.ko", required by Linux-libre 3.16.
* gnu: Fix synopses for emacs-wget and fetchmail.Mark H Weaver2014-08-15
| | | | | * gnu/packages/emacs.scm (emacs-wget): Improve synopsis. * gnu/packages/mail.scm (fetchmail): Fix typo in synopsis.
* doc: Fix mention of default log location.Mark H Weaver2014-08-15
| | | | * doc/guix.texi (Invoking guix-daemon): Fix mention of default log location.
* gnu: Add emacs-wget.Mark H Weaver2014-08-14
| | | | * gnu/packages/emacs.scm (emacs-wget): New variable.
* gnu: Add emacs-w3m.Mark H Weaver2014-08-14
| | | | * gnu/packages/emacs.scm (emacs-w3m): New variable.
* gnu: Add paredit.Mark H Weaver2014-08-14
| | | | * gnu/packages/emacs.scm (paredit): New variable.
* gnu: Add magit.Mark H Weaver2014-08-14
| | | | * gnu/packages/emacs.scm (magit): New variable.
* Add (guix build emacs-utils).Mark H Weaver2014-08-14
| | | | | | * guix/build/emacs-utils.scm: New file. * Makefile.am (MODULES): Add it. * .dir-locals.el: Add indentation rules.
* gnu: linux-libre: Update to 3.16.1.Jason Self2014-08-14
| | | | * gnu/packages/linux.scm (linux-libre): Update to version 3.16.1.
* gnu: apl: Update to 1.4, add sqlite support.Mark H Weaver2014-08-14
| | | | | * gnu/packages/apl.scm (apl): Update to 1.4. Add 'sqlite' as an input. Pass --with-sqlite3 to configure.
* gnu: mysql: Update to 5.1.73.Mark H Weaver2014-08-14
| | | | * gnu/packages/mysql.scm (mysql): Update to 5.1.73. Update source URI.
* gnu: gpgme: Update to 1.5.1.Mark H Weaver2014-08-14
| | | | | * gnu/packages/gnupg.scm (gpgme): Update to 1.5.1. Pass "GPG=gpg2" to 'make'.
* gnu: lvm2: Upgrade, use udev, improve synopsis and description.Ludovic Courtès2014-08-14
| | | | | | | * 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.
* system: grub: Change the default default-entry to 0.Mark H Weaver2014-08-13
| | | | | * gnu/system/grub.scm (<grub-configuration>)[default-entry]: Change the default to 0.
* gnu: gnupg: Update to 2.0.26.Mark H Weaver2014-08-13
| | | | * gnu/packages/gnupg.scm (gnupg): Update to 2.0.26.
* gnu: Add terminus-font.Guy Grant2014-08-12
| | | | * gnu/packages/fonts.scm (terminus-font): New variable.
* Remove ftp.sunet.se mirror.David Thompson2014-08-12
| | | | * guix/download.scm (%mirrors): Remove ftp.sunet.se URIs.
* profiles: Adjust to unintended manifest format change.Ludovic Courtès2014-08-12
| | | | | | | Reported by Andreas Enge. * guix/profiles.scm (sexp->manifest): Adjust to handle unintended format change introduced in 4ca0b41.
* guix package: Remove leftover internal procedure.Ludovic Courtès2014-08-12
| | | | | | | Reported by Alex Kost <alezost@gmail.com>. * guix/scripts/package.scm (guix-package)[process-actions]: Remove 'same-package?'.
* gnu: Add detox.Eric Bavier2014-08-12
| | | | * gnu/packages/admin.scm (detox): New variable.
* guix package: Use 'manifest-add'.Ludovic Courtès2014-08-12
| | | | | * guix/scripts/package.scm (guix-package)[process-actions]: Use 'manifest-add' instead of the equivalent code.
* profiles: Add 'manifest-add'.Alex Kost2014-08-12
| | | | | | | | * 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>
* Revert "nls: Use xgettext and msgmerge with --no-wrap."Ludovic Courtès2014-08-12
| | | | | | | This reverts commit 648453e8d6005a7a2caec688cc035db86fe73c02. See <http://lists.gnu.org/archive/html/bug-gettext/2014-08/msg00005.html> for the rationale.