aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/vsearch-unbundle-cityhash.patch
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-07-23 04:53:06 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2020-07-23 16:25:10 +0200
commit4f204533b7183adadfe5cbe7f8bcd7d11c430b44 (patch)
tree7b8bf85773c6cdd4e0ca531c3868683c6a076d48 /gnu/packages/patches/vsearch-unbundle-cityhash.patch
parent56d1ab2537465302b13aaaa3c07808c0b60395b5 (diff)
downloadguix-4f204533b7183adadfe5cbe7f8bcd7d11c430b44.tar.gz
guix-4f204533b7183adadfe5cbe7f8bcd7d11c430b44.zip
gnu: ansible: Update to 2.9.11.
* gnu/packages/admin.scm (ansible): Update to 2.9.11.
Diffstat (limited to 'gnu/packages/patches/vsearch-unbundle-cityhash.patch')
0 files changed, 0 insertions, 0 deletions
m (package-upstream-name*): New procedure. * tests/packages.scm ("package-upstream-name*"): New test. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Lars-Dominik Braun 2022-11-11grafts: Run with a UTF-8 locale....Fixes <https://issues.guix.gnu.org/55968>. Reported by Maxime Devos <maximedevos@telenet.be>. * guix/grafts.scm (%graft-with-utf8-locale?): New parameter. (graft-derivation/shallow)[glibc-locales, set-utf8-locale]: New variables. [build]: Use 'set-utf8-locale'. * tests/gexp.scm, tests/grafts.scm, tests/packages.scm: Set '%graft-with-utf8-locale?' to #f. Ludovic Courtès 2022-10-22Remove now unnecessary uses of (guix grafts)....These modules would use (guix grafts) just to access '%graft?' and related bindings, which are now in (guix store). * gnu/ci.scm, guix/gexp.scm, guix/lint.scm, guix/scripts.scm, guix/scripts/archive.scm, guix/scripts/build.scm, guix/scripts/challenge.scm, guix/scripts/deploy.scm, guix/scripts/environment.scm, guix/scripts/home.scm, guix/scripts/pack.scm, guix/scripts/package.scm, guix/scripts/pull.scm, guix/scripts/size.scm, guix/scripts/system.scm, guix/scripts/weather.scm, tests/builders.scm, tests/channels.scm, tests/cpan.scm, tests/derivations.scm, tests/gexp.scm, tests/graph.scm, tests/guix-daemon.sh, tests/monads.scm, tests/pack.scm, tests/packages.scm, tests/profiles.scm, tests/system.scm: Remove #:use-module (guix grafts). Ludovic Courtès 2022-10-10packages: Raise an exception for invalid 'license' values....This is written in such a way that the type check turns into a no-op at macro-expansion time for trivial cases: > ,optimize (validate-license gpl3+) $18 = gpl3+ > ,optimize (validate-license (list gpl3+ gpl2+)) $19 = (list gpl3+ gpl2+) * guix/packages.scm (valid-license-value?, validate-license): New macros. (<package>)[license]: Add 'sanitize' option. (&package-license-error): New error condition type. * tests/packages.scm ("license type checking"): New test. Ludovic Courtès