| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
| |
The asdf documentation specifies that asdf:load-asd should be preferred to
calling load on a system definition file.
* guix/build/lisp-utils.scm (compile-system): Replace load with asdf:load-asd.
(system-dependencies): Likewise.
(test-system): Likewise.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
|
|
|
|
|
|
|
| |
* guix/build/lisp-utils.scm (lisp-eval-program): Replace system* and error
handling with invoke.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
|
|
|
|
|
|
|
| |
* guix/build/lisp-system.scm: (lisp-eval-program): Log the arguments to
system*.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add support for dependencies of the form (:version <name> <version>),
(:feature <feature> <dependency-specification>) and (:require <module-name>),
as defined by
<https://common-lisp.net/project/asdf/asdf.html#The-defsystem-grammar>.
* guix/build/lisp-utils.scm (normalize-dependency): New variable.
(make-asd-file)[dependencies]: Use it to generate dependencies with normalized
names.
[dependency-name]: New variable.
[registry]: Use it to flatten the normalized dependencies.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
|
|
|
|
|
|
| |
* gnu/services/base.scm (static-networking-shepherd-service): Remove
spurious ":" in 'stop' method inadvertently introduced in commit
c9436025a90b86047ba2203d58bbf238f8f9b2f9.
|
|
|
|
|
|
| |
* gnu/services/base.scm (udev-shepherd-service)[start](find): Remove.
(udev): Hardwire the eudev file name.
Use 'fork+exec-command' instead of 'primitive-fork' and 'exec-command'.
|
|
|
|
| |
* gnu/packages/maths.scm (glm): Update to 0.9.9.2.
|
|
|
|
| |
* gnu/packages/image-viewers.scm (feh): Update to 2.28.
|
|
|
|
| |
* gnu/packages/maths.scm (arpack-ng): Update to 3.6.3.
|
|
|
|
| |
* gnu/packages/maths.scm (arpack-ng)[source]: Use GIT-FETCH.
|
|
|
|
|
|
| |
* gnu/packages/patches/xf86-video-ast-remove-mibstore.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
* gnu/packages/xorg.scm (xf86-video-ast): New public variable.
|
|
|
|
|
| |
* gnu/packages/rust.scm (rust-1.19)[arguments]<#:phases>[build]: Build
libtest.
|
|
|
|
|
| |
* gnu/packages/rust.scm (mrustc)[arguments]: Add #:test-target.
<#:phases>[install]: Don't install test output.
|
|
|
|
| |
* gnu/packages/version-control.scm (git)[credential-netrc]: Add Git.pm to PERL5LIB.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously, on machines where /etc/ssl/certs did exist, we'd have this:
$ unset SSL_CERT_DIR
$ unset SSL_CERT_FILE
$ guix pull
Updating channel 'guix' from Git repository at 'https://git.savannah.gnu.org/git/guix.git'...
guix pull: error: Git error: the SSL certificate is invalid
This is because we'd let OpenSSL look for certificates in its default
location, which is an empty directory in its own prefix.
* guix/scripts/pull.scm (honor-x509-certificates): New procedure.
(guix-pull): Use it instead of calling 'honor-lets-encrypt-certificates!'.
|
|
|
|
|
| |
* guix/scripts/pull.scm (honor-lets-encrypt-certificates!): Call
'set-tls-certificate-locations!' unconditionally.
|
|
|
|
| |
* gnu/packages/guile.scm (guile-debbugs): New variable.
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously a command like:
$(readlink -f ~/.config/guix/current)/bin/guix describe
would succeed without printing anything.
* guix/scripts/describe.scm (display-profile-info): Don't call
'generation-file-name' when NUMBER is zero.
* guix/scripts/pull.scm (display-profile-content): Likewise.
|
|
|
|
| |
* tests/pack.scm ("self-contained-tarball"): Skip unconditionally.
|
|
|
|
|
|
|
| |
This is a followup to 3809824199cdd52446176c9cd4761dd09f732542.
* guix/store.scm (add-file-tree-to-store): Add 'write-buffered-output'
call.
|
|
|
|
| |
* gnu/packages/golang.scm (go-1.10): Update to 1.10.4.
|
|
|
|
| |
* gnu/packages/busybox.scm (busybox): Update to 1.29.3.
|
|
|
|
| |
* gnu/packages/cdrom.scm (xorriso): Update to 1.5.0.
|
|
|
|
| |
* gnu/packages/cdrom.scm (libisofs): Update to 1.5.0.
|
|
|
|
| |
* gnu/packages/cdrom.scm (libburn): Update to 1.5.0.
|
|
|
|
|
|
|
|
| |
* gnu/packages/shells.scm (rc)[source]: Replace magic commit ID with the
tagged release. Use GIT-FILE-NAME.
[arguments]: Remove 'autoreconf' phase (relying on Guix's built-in
'bootstrap' phase instead) and adjust the ordering of 'patch-trip.rc'
accordingly.
|
|
|
|
|
|
| |
* gnu/packages/mpd.scm (ncmpc): Update to 0.30.
[arguments]: Add 'expand-C++-include-path' phase.
[inputs]: Add gcc-8.
|
|
|
|
| |
* gnu/packages/mtools.scm (exfat-utils): Update to 1.3.0.
|
|
|
|
|
| |
* gnu/packages/cinnamon.scm (cinnamon-desktop)[arguments]: Remove
'autoconf' phase. Add 'skip-premature-configure' phase.
|
|
|
|
|
| |
* gnu/packages/nutrition.scm (gourmet)[arguments]: Substitute INVOKE for
SYSTEM*.
|
|
|
|
|
|
| |
* gnu/packages/lisp.scm (confusion-mdl): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
|
|
|
|
|
| |
* guix/git.scm (%repository-cache-directory): Use 'cache-directory'
by default unless running as root.
|
|
|
|
|
|
|
|
|
| |
This could result in deadlock in unusual situations, whereby we'd start
waiting for a reply while the query hasn't been flushed to the socket.
* guix/store.scm (buffering-output-port)[flush]: Add call to
'force-output'.
(add-to-store): Add call to 'write-buffered-output'.
|
|
|
|
| |
* gnu/packages/enlightenment.scm (enlightenment): Update to 0.22.4.
|
|
|
|
| |
* gnu/packages/enlightenment.scm (efl): Update to 1.21.1.
|
|
|
|
| |
* gnu/packages/cups.scm (foo2zjs): Update to 20180910.
|
|
|
|
| |
* gnu/packages/image.scm (libiptcdata)[description]: Use @dfn{}.
|
|
|
|
| |
* gnu/packages/games.scm (powwow): Update to 1.2.18.
|
|
|
|
| |
* gnu/packages/games.scm (powwow)[home-page]: Use HTTPS.
|
|
|
|
|
| |
* gnu/packages/python.scm (python-dirsync): Update to 2.2.3.
[native-inputs]: Remove unzip.
|
|
|
|
| |
* gnu/packages/tls.scm (mbedtls-apache): Update to 2.7.6.
|
|
|
|
|
| |
* gnu/packages/linux.scm (%linux-libre-version): Update to 4.18.8.
(%linux-libre-hash): Update hash.
|
|
|
|
|
| |
* gnu/packages/linux.scm (%linux-libre-4.14-version): Update to 4.14.70.
(%linux-libre-4.14-hash): Update hash.
|
|
|
|
| |
* gnu/packages/linux.scm (linux-libre-4.9): Update to 4.9.127.
|
|
|
|
| |
* gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.156.
|
|
|
|
| |
* gnu/packages/admin.scm (dmidecode): Update to 3.2.
|
|
|
|
|
|
|
|
|
|
|
|
| |
* guix/gnupg.scm (%gpgv-command, current-keyring): New variables
(gnupg-verify): Add optional 'keyring' parameter. Use 'gpgv' instead of
'gpg' and pass it '--keyring'.
(gnupg-receive-keys): Add optional 'keyring' parameter and honor it.
(gnupg-verify*): Add #:keyring and honor it.
* guix/scripts/refresh.scm (%options, show-help): Add '--keyring'.
(guix-refresh): Parameterize CURRENT-KEYRING.
* doc/guix.texi (Invoking guix refresh): Document '--keyring' and the
keybox format.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fixes a regression introduced in
aed0a594058a59bc3bb1d2686391dc0e8a181b1f whereby external channels would
fail to build due to the lack of a (git) module.
Reported by Alex ter Weele on #guix.
* guix/channels.scm (channel-instance-derivations)[guile-gcrypt]:
Remove.
[dependencies]: New variable.
Use it in the 2nd argument to 'build-channel-instance'.
|
|
|
|
|
|
| |
* guix/scripts/graph.scm (%options, show-help): Add '--system'.
(%default-options): Add 'system'.
(guix-graph): Pass #:system to 'run-with-store'.
|
|
|
|
|
|
| |
* gnu/packages/ruby.scm (ruby-multi-test): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
|