summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-12-28DRAFT substitute: Add IPFS support.wip-ipfs-substitutesLudovic Courtès
Missing: - documentation - command-line options - progress report when downloading over IPFS - fallback when we fail to fetch from IPFS * guix/scripts/substitute.scm (<narinfo>)[ipfs]: New field. (read-narinfo): Read "IPFS". (process-substitution/http): New procedure, with code formerly in 'process-substitution'. (process-substitution): Check for IPFS and call 'ipfs:restore-file-tree' when IPFS is true.
2018-12-28publish: Add IPFS support.Ludovic Courtès
* guix/scripts/publish.scm (show-help, %options): Add '--ipfs'. (narinfo-string): Add IPFS parameter and honor it. (render-narinfo/cached): Add #:ipfs? and honor it. (bake-narinfo+nar, make-request-handler, run-publish-server): Likewise. (guix-publish): Honor '--ipfs' and parameterize %IPFS-BASE-URL.
2018-12-28Add (guix ipfs).Ludovic Courtès
* guix/ipfs.scm, tests/ipfs.scm: New files. * Makefile.am (MODULES, SCM_TESTS): Add them.
2018-12-28tests: 'file=?' now recurses on directories.Ludovic Courtès
* guix/tests.scm (not-dot?): New procedure. (file=?)[executable?]: New procedure. In 'regular case, check whether the executable bit is preserved. Add 'directory case.
2018-12-28Add (guix json).Ludovic Courtès
* guix/swh.scm: Use (guix json). (define-json-reader, define-json-mapping): Move to... * guix/json.scm: ... here. New file. * Makefile.am (MODULES): Add it.
2018-12-28gnu: cdrtools: Do not record the kernel version.Ludovic Courtès
This allows for reproducible builds across machines running different versions of the kernel Linux. * gnu/packages/cdrom.scm (cdrtools)[source](modules, snippet): New fields.
2018-12-27gnu: mbedtls-apache: Update to 2.16.0.Marius Bakke
* gnu/packages/tls.scm (mbedtls-apache): Update to 2.16.0.
2018-12-27gnu: samba: Update to 4.9.4.Marius Bakke
* gnu/packages/samba.scm (samba): Update to 4.9.4.
2018-12-27gnu: strace: Update to 4.26.Marius Bakke
* gnu/packages/linux.scm (strace): Update to 4.26. [license]: Change to LGPL2.1+.
2018-12-27gnu: vim: Don't use unstable tarball.Efraim Flashner
* gnu/packages/vim.scm (vim)[source]: Use 'git-fetch'.
2018-12-27gnu: vim: Use https.Efraim Flashner
* gnu/packages/vim.scm (vim)[home-page]: Use https.
2018-12-27gnu: viewnior: Don't use unstable tarball.Efraim Flashner
* gnu/packages/image-viewers.scm (viewnior)[source]: Use 'git-fetch'.
2018-12-27lint: Check for unstable tarballs.Efraim Flashner
* guix/scripts/lint.scm (check-source-unstable-tarball): New procedure. (%checkers): Add it. * tests/lint.scm ("source-unstable-tarball", "source-unstable-tarball: source #f", "source-unstable-tarball: valid", "source-unstable-tarball: package named archive", "source-unstable-tarball: not-github", "source-unstable-tarball: git-fetch"): New tests. * doc/guix.texi (Invoking guix lint): Document it.
2018-12-27gnu: Add guile-mastodon.Pierre-Antoine Rouby
* gnu/packages/guile.scm (guile-mastodon): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2018-12-27pull: Add '--system'.Ludovic Courtès
* guix/scripts/pull.scm (%options): Add '--system'. (guix-pull): Honor it. * doc/guix.texi (Invoking guix pull): Document it.
2018-12-27gnu: guix: Update to 7ba2b27.Ludovic Courtès
* gnu/packages/package-management.scm (guix): Update to 7ba2b27.
2018-12-27gnu: ocaml: Fix indentation.Julien Lepiller
* gnu/packages/ocaml.scm: Fix indentation issues.
2018-12-27gnu: Add ocaml-yojson.Gabriel Hondet
* gnu/packages/ocaml.scm (ocaml-yojson): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
2018-12-27gnu: Add ocaml-biniou.Gabriel Hondet
* gnu/packages/ocaml.scm (ocaml-biniou): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
2018-12-27gnu: Add emacs-flycheck-dedukti.Gabriel Hondet
* gnu/packages/emacs.scm (emacs-flycheck-dedukti): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
2018-12-27gnu: Add emacs-dedukti-mode.Gabriel Hondet
* gnu/packages/emacs.scm (emacs-dedukti-mode): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
2018-12-27gnu: terminology: Update to 1.3.2.Efraim Flashner
* gnu/packages/enlightenment.scm (terminology): Update to 1.3.2.
2018-12-27gnu: kodi: Update to 18.0rc3.Efraim Flashner
* gnu/packages/kodi.scm (kodi): Update to 18.0rc3.
2018-12-26gnu: mit-scheme: Enable tests.Kei Kebreau
* gnu/packages/scheme.scm (mit-scheme)[arguments]: Remove #:tests?. Add 'patch-/bin/sh' phase. [native-inputs]: Add autoconf, automake, and libtool.
2018-12-26gnu: antlr2: Fix reproducibility.Julien Lepiller
* gnu/packages/java.scm (antlr2)[arguments]: Add a phase to fix a timestamp issue.
2018-12-26gnu: Add badvpn.Meiyo Peng
* gnu/packages/vpn.scm (badvpn): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2018-12-26offload: Remove unnecessary locking on machine slots.Ludovic Courtès
This extra level of locking turned out to be unnecessary. * guix/scripts/offload.scm (with-machine-lock): Remove. (machine-lock-file): Remove. (acquire-build-slot): Remove surrounding 'with-machine-lock'.
2018-12-26offload: Remove the "machine choice" lock.Ludovic Courtès
This lock was unnecessary and it led to a contention when many 'guix offload' processes are polling for available machines. * guix/scripts/offload.scm (machine-choice-lock-file): Remove. (choose-build-machine): Remove surrounding 'with-file-lock (machine-lock-file)'.
2018-12-26system: Fix missing space in boot labels for kernels that are inferior packagesPkill -9
* gnu/system.scm (kernel->boot-label): Add a missing space between the kernel's package name and package version for inferior packages. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2018-12-26gnu: python-openid: Update to 3.1.0.Efraim Flashner
* gnu/packages/python-web.scm (python-openid): Update to 3.1.0. [arguments]: Update custom 'check phase. [native-inputs]: Add python-coverage.
2018-12-26gnu: python-gpg: Update to 1.10.0.Efraim Flashner
* gnu/packages/gnupg.scm (python-gpg): Update to 1.10.0. [arguments]: Add custom phase to set 'gcc' call.
2018-12-26gnu: python-apache-libcloud: Update to 2.4.0.Efraim Flashner
* gnu/packages/python.scm (python-apache-libcloud): Update to 2.4.0.
2018-12-25gnu: translate-shell: Wrap binary.Efraim Flashner
* gnu/packages/dictionaries.scm (translate-shell)[arguments]: Add custom phase to wrap the 'trans' binary with the inputs. [native-inputs]: Move curl, fribidi, rlwrap ... [inputs]: ... to here.
2018-12-25gnu: translate-shell: Update to 0.9.6.9.Efraim Flashner
* gnu/packages/dictionaries.scm (translate-shell): Update to 0.9.6.9.
2018-12-25gnu: translate-shell: Use 'git-fetch'.Efraim Flashner
* gnu/packages/dictionaries.scm (translate-shell)[source]: Use 'git-fetch'. [arguments]: Add custom phase to remove "translate" file.
2018-12-25gnu: Add dedukti.Gabriel Hondet
* gnu/packages/ocaml.scm (dedukti): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
2018-12-25gnu: Add polybar.Meiyo Peng
* gnu/packages/wm.scm (polybar): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2018-12-25offload: Adjust 'test' and 'status' to the latest changes.Ludovic Courtès
This is a followup to ed7b44370f71126087eb953f36aad8dc4c44109f; following that commit, 'guix offload test' and 'guix offload status' would abort with a backtrace instead of clearly diagnosing a missing 'guix' command on the build machine. * guix/scripts/offload.scm (assert-node-has-guix): Call 'leave' when NODE is not an inferior. Remove 'catch' blocks for 'node-repl-error'. (check-machine-availability): Invoke 'assert-node-has-guix' first. (check-machine-status): Print a warning when 'remote-inferior' returns #f.
2018-12-25gnu: llvm@7.0.0: Update to 7.0.1.Rutger Helling
* gnu/packages/llvm.scm (llvm@7.0.0): Update to 7.0.1. Rename to llvm@7.0.1.
2018-12-25gnu: librime: Remove bundled sources.Efraim Flashner
* gnu/packages/ibus.scm (librime)[source]: Add snippet to remove bundled sources. [arguments]: Add custom phase to not search bundled headers. [native-inputs]: Add googletest, xorgproto.
2018-12-25gnu: librime: Update to 1.3.2.Efraim Flashner
* gnu/packages/ibus.scm (librime): Update to 1.3.2.
2018-12-24gnu: darktable: Update to 2.6.0.Leo Famulari
* gnu/packages/photo.scm (darktable): Update to 2.6.0.
2018-12-24gnu: gcompris-qt: Enable tests.Efraim Flashner
* gnu/packages/education.scm (gcompris-qt)[arguments]: Add custom phase to start X server before tests. Add configure flag to build tests. Enable tests. [native-inputs]: Add xorg-server.
2018-12-24gnu: gcompris-qt: Update to 0.95.Efraim Flashner
* gnu/packages/education.scm (gcompris-qt): Update to 0.95. [arguments]: Remove custom phase to patch for qt@5.11.
2018-12-24gnu: guix: Update to 6f1e0bb.Ludovic Courtès
* gnu/packages/package-management.scm (guix): Update to 6f1e0bb.
2018-12-24gnu: commencement: Do not graft early bootstrap packages.Ludovic Courtès
This is a followup to e47c69f22638dc92ee962942b8e24284c8dee832 and a repetition of f00b85ff8d34df0a1879e593d4a85629b8586af7. * gnu/packages/commencement.scm (file-boot0): Use 'inherit' instead of 'package/inherit'.
2018-12-24gnu: Add font-mononoki.Gabriel Hondet
* gnu/packages/fonts.scm (font-mononoki): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
2018-12-24gnu: Remove obsolete package gpgmepp.Hartmut Goebel
This package is unused, is part of gpgme since version 1.7 and has been marked as superseded since 18 months now. * gnu/packages/kde-frameworks.scm (gpgmepp): Remove variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2018-12-24offload: Use (guix inferior) instead of (ssh dist node).Ludovic Courtès
Using inferiors and thus 'guix repl' simplifies setup on build machines (no need to worry about GUILE_LOAD_PATH etc.) Furthermore, the 'guix repl -t machine' protocol running in a remote pipe addresses several issues with the current implementation of nodes and RREPLs in Guile-SSH: fewer round trips, doesn't leave a 'guile --listen' process behind it, stateless (since a new process is started each time), more efficient (the SSH channel can be reused), more reliable (no 'pgrep', 'pkill', and shellology; see <https://github.com/artyom-poptsov/guile-ssh/issues/11> as an example.) * guix/ssh.scm (inferior-remote-eval): New procedure. (send-files): Use it instead of 'make-node' and 'node-eval'. * guix/scripts/offload.scm (node-guile-version): New procedure. (node-free-disk-space, transfer-and-offload, node-load) (choose-build-machine, assert-node-has-guix): Use 'remote-inferior' instead of 'make-node' and 'inferior-eval' instead of 'node-eval'. (assert-node-can-import, assert-node-can-export): Likewise, and add 'session' parameter. (check-machine-availability): Likewise, and add calls to 'close-inferior' and 'disconnect!'. (check-machine-status): Likewise. * doc/guix.texi (Daemon Offload Setup): Remove bit related to 'guile' in $PATH and $GUILE_LOAD_PATH; mention 'guix' alone.
2018-12-24ssh: Add 'remote-inferior'.Ludovic Courtès
* guix/inferior.scm (<inferior>)[close]: New field. (port->inferior): New procedure. (open-inferior): Rewrite in terms of 'port->inferior'. (close-inferior): Honor INFERIOR's 'close' field. (inferior-eval-with-store): Add FIXME comment. * guix/ssh.scm (remote-inferior): New procedure.