summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-07-05gnu: sbcl-iolib: Add CFFI to list of inputs and fix spacing....* gnu/packages/lisp.scm (sbcl-iolib)[inputs]: Do it. Pierre Neidhardt
2019-07-05gnu: Add qlogo....* gnu/packages/logo.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Register it. * gnu/packages/logo.scm (qlogo): New variable. Arun Isaac
2019-07-05gnu: patchwork: Update to 2.1.4....* gnu/packages/patchutils.scm (patchwork): Update to 2.1.4. Christopher Baines
2019-07-05store: 'run-with-store' gracefully deals with #f store....This is a followup to dd0ee954c4fa965023fd887452927c02edb8b52f, which introduced a failure in tests/graph.scm. * guix/store.scm (run-with-store): Check whether STORE and NEW-STORE are true before calling 'store-connection-object-cache' etc. Fixes a failure in tests/graph.scm related to %REVERSE-PACKAGE-NODE-TYPE, which uses #f as the store. Ludovic Courtès
2019-07-05derivations: Simplify 'substitution-oracle'....* guix/derivations.scm (substitution-oracle)[valid?, dependencies]: Remove. [closure]: New procedure. Rename parameter from 'drv' to 'inputs-or-drv' and adjust accordingly. (derivation-build-plan): Pass INPUTS directly to 'substitution-oracle'. * guix/ui.scm (show-what-to-build)[substitutable-info]: Likewise. Ludovic Courtès
2019-07-05derivations: 'derivation-build-plan' recurses on substituables....This fixes a bug whereby "guix build texlive -n" would report: 0.0 MB would be downloaded: /gnu/store/…-texlive-20180414 instead of: The following derivation would be built: /gnu/store/…-texlive-texmf-20180414.drv 2,595.2 MB would be downloaded: /gnu/store/…-texlive-20180414-texmf.tar.xz /gnu/store/…-texlive-20180414 where 'texlive-texmf' is a non-substitutable dependency of 'texlive'. * guix/derivations.scm (dependencies-of-substitutables): New procedure. (derivation-build-plan): When 'input-substitutable-info' returns true, append the subset of DEPS that corresponds to SUBSTITUABLES to the first argument of 'loop'. * guix/ui.scm (show-what-to-build): Remove half-baked traversal of DOWNLOAD. * tests/derivations.scm ("derivation-build-plan and substitutes, non-substitutable dep"): New test. Ludovic Courtès
2019-07-04gnu: Add sbcl-trivia....* gnu/packages/lisp.scm (sbcl-trivia): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-trivia.cffi....* gnu/packages/lisp.scm (sbcl-trivia.cffi): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-trivia.quasiquote....* gnu/packages/lisp.scm (sbcl-trivia.quasiquote): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-trivia.ppcre....* gnu/packages/lisp.scm (sbcl-trivia.ppcre): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-trivia.balland2006....* gnu/packages/lisp.scm (sbcl-trivia.balland2006): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-trivia.trivial....* gnu/packages/lisp.scm (sbcl-trivia.trivial): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-trivia.level2....* gnu/packages/lisp.scm (sbcl-trivia.level2): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-trivia.level1....* gnu/packages/lisp.scm (sbcl-trivia.level1): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-trivia.level0....* gnu/packages/lisp.scm (sbcl-trivia.level0): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-fare-quasiquote-readtable....* gnu/packages/lisp.scm (sbcl-fare-quasiquote-readtable): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-fare-quasiquote....* gnu/packages/lisp.scm (sbcl-fare-quasiquote): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-optima....* gnu/packages/lisp.scm (sbcl-optima): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-type-i....* gnu/packages/lisp.scm (sbcl-type-i): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-introspect-environment....* gnu/packages/lisp.scm (sbcl-introspect-environment): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-trivial-cltl2....* gnu/packages/lisp.scm (sbcl-trivial-cltl2): New variable. Pierre Neidhardt
2019-07-04gnu: Add sbcl-lisp-namespace....* gnu/packages/lisp.scm (sbcl-lisp-namespace): New variable. Pierre Neidhardt
2019-07-04gnu: Add pulseaudio-dlna....* gnu/packages/pulseaudio.scm (pulseaudio-dlna): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Alex Griffin
2019-07-04gnu: Add python2-zeroconf....* gnu/packages/python-xyz.scm (python2-zeroconf): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Alex Griffin
2019-07-04gnu: Add python2-pyroute2....* gnu/packages/python-xyz.scm (python2-pyroute2): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Alex Griffin
2019-07-04gnu: Add python-notify2, python2-notify2....* gnu/packages/python-xyz.scm (python-notify2): New variable. (python2-notify2): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Alex Griffin
2019-07-04pack: 'squashfs' backend records the profile's search paths....* guix/scripts/pack.scm (singularity-environment-file): New procedure. (squashfs-image): Use it, and create /.singularity/env/90-environment.sh. * gnu/tests/singularity.scm (run-singularity-test)["singularity run, with environment"]: New test, currently skipped. * gnu/tests/singularity.scm (build-tarball&run-singularity-test): Add GUILE-JSON to the profile. Ludovic Courtès
2019-07-04pack: 'docker' backend records the profile's search paths....* guix/docker.scm (config): Add #:environment parameter and honor it. (build-docker-image): Likewise, and pass it to 'config'. * guix/scripts/pack.scm (docker-image): Import (guix profiles) and (guix search-paths). Call 'profile-search-paths' and pass #:environment to 'build-docker-image'. * gnu/tests/docker.scm (run-docker-test)["Load docker image and run it"]: Add example that expects (json) to be available. * gnu/tests/docker.scm (build-tarball&run-docker-test): Replace %BOOTSTRAP-GUILE by GUILE-2.2 and GUILE-JSON in the environment. Ludovic Courtès
2019-07-04Add (guix remote)....* guix/remote.scm: New file. * Makefile.am (MODULES): Add it. Ludovic Courtès
2019-07-04inferior: Add 'read-repl-response'....* guix/inferior.scm (read-repl-response): New procedure. (read-inferior-response): Use it. Ludovic Courtès
2019-07-04Add (guix repl)....* guix/scripts/repl.scm: Use (guix repl). (self-quoting?, machine-repl): Remove. * guix/repl.scm: New file. * Makefile.am (MODULES): Add it. Ludovic Courtès
2019-07-04gexp: Add 'lower-gexp' and express 'gexp->derivation' in terms of it....* guix/gexp.scm (gexp-input-thing, gexp-input-output) (gexp-input-native?): Export. (lower-inputs): Return <gexp-input> records instead of tuples. (lower-reference-graphs): Adjust accordingly. (<lowered-gexp>): New record type. (lower-gexp, gexp-input->tuple): New procedure. (gexp->derivation)[%modules]: Remove. [requested-graft?]: New variable. [add-modules]: New procedure. Rewrite in terms of 'lower-gexp'. (gexp-inputs): Add TODO comment. * tests/gexp.scm ("lower-gexp"): New test. Ludovic Courtès
2019-07-04gnu: Add sbcl-dexador....* gnu/packages/lisp.scm (sbcl-dexador): New variable. Pierre Neidhardt
2019-07-04gnu: pigx-rnaseq: Update to 0.0.8....* gnu/packages/bioinformatics.scm (pigx-rnaseq): Update to 0.0.8. Ricardo Wurmus
2019-07-04gnu: Remove duplicate 'ruby-crass' package....* gnu/packages/ruby.scm (ruby-crass): Remove duplicate shadowed definition. Ludovic Courtès
2019-07-04gnu: Add ruby-backport....* gnu/packages/ruby.scm (ruby-backport): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Mikhail Kirillov
2019-07-04gnu: Add qtpass....* gnu/packages/password-utils.scm (qtpass): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Jens Mølgaard
2019-07-04gnu: linux-libre: Update to 5.1.16....* gnu/packages/linux.scm (%linux-libre-version): Update to 5.1.16. (%linux-libre-hash): Update hash. Mark H Weaver
2019-07-04gnu: linux-libre@4.19: Update to 4.19.57....* gnu/packages/linux.scm (%linux-libre-4.19-version): Update to 4.19.57. (%linux-libre-4.19-hash): Update hash. Mark H Weaver
2019-07-04gnu: linux-libre@4.14: Update to 4.14.132....* gnu/packages/linux.scm (%linux-libre-4.14-version): Update to 4.14.132. (%linux-libre-4.14-hash): Update hash. Mark H Weaver
2019-07-03gnu: lpd8editor: Update to 0.0.13....* gnu/packages/music.scm (lpd8editor): Update to 0.0.13. Leo Famulari
2019-07-03store: 'run-with-store' preserves the functional object cache....This increases the hit rate of the object cache from 56% to 85% when running something like 'guix build libreoffice -nd'. * guix/store.scm (set-store-connection-object-cache!): New procedure. (run-with-store): Copy 'object-cache' field of the new store into the original one. Ludovic Courtès
2019-07-03derivations: 'substitution-oracle' no longer calls 'read-derivation-from-file'....This is a followup to 5cf4b26d52bcea382d98fb4becce89be9ee37b55. * guix/derivations.scm (substitution-oracle): Use 'derivation-input-derivation' instead of calling 'read-derivation-from-file'. Ludovic Courtès
2019-07-03derivations: Avoid another call to 'read-derivation-from-file'....This is a followup to 5cf4b26d52bcea382d98fb4becce89be9ee37b55. * guix/derivations.scm (derivation-path->base16-hash): Rename to... (derivation-base16-hash): ... this, and take a <derivation> rather than a file name. Use 'mlambdaq' instead of 'mlambda'. (derivation/masked-inputs): Adjust accordingly. (invalidate-derivation-caches!): Likewise. Ludovic Courtès
2019-07-03derivations: 'map-derivation' no longer calls 'read-derivation-from-file'....This is a followup to 5cf4b26d52bcea382d98fb4becce89be9ee37b55. * guix/derivations.scm (map-derivation)[rewritten-input]: Avoid call to 'read-derivation-from-file'. Ludovic Courtès
2019-07-03gnu: MPD: Update to 0.21.11....* gnu/packages/mpd.scm (mpd): Update to 0.21.11. Leo Famulari
2019-07-03gnu: GraphicsMagick: Update to 1.3.32....* gnu/packages/imagemagick.scm (graphicsmagick): Update to 1.3.32. Leo Famulari
2019-07-03gnu: irssi: Update to 1.1.3. [fixes CVE-2019-13045]....* gnu/packages/irc.scm (irssi): Update to 1.1.3. Leo Famulari
2019-07-03derivations: Work around pathological memoization behavior....This works around <https://bugs.gnu.org/36487>. * guix/derivations.scm (invalidate-derivation-caches!): Comment out 'hash-clear!' call. Ludovic Courtès
2019-07-03gnu: python-pygit2: Update to 0.28.2....* gnu/packages/python-xyz.scm (python-pygit2): Update to 0.28.2. Julien Lepiller