aboutsummaryrefslogtreecommitdiff
path: root/tests/glob.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-11-12 23:13:34 +0900
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-11-17 16:54:47 +0900
commitd5107b0c5a52f52b92127f36879ffffdf037cae8 (patch)
tree83fe03e795543672df82e4b4539728aec309dbca /tests/glob.scm
parent0e1ffbc7f5f060f89c890472377a6102f27f6e9b (diff)
downloadguix-d5107b0c5a52f52b92127f36879ffffdf037cae8.tar.gz
guix-d5107b0c5a52f52b92127f36879ffffdf037cae8.zip
gnu: libarchive/fixed: Do not export variable.
* gnu/packages/backup.scm (libarchive/fixed): Do not export variable; it's used by libarchive as its replacement and need not be exposed to the command line. Change-Id: Iad6f0b6badb3fa728a69663f69419505da393c56
Diffstat (limited to 'tests/glob.scm')
0 files changed, 0 insertions, 0 deletions
n->derivation): Adjust accordingly. * tests/packages.scm ("package-source-derivation, origin, sha512"): New test. * guix/tests.scm: Hide (gcrypt hash) 'sha256' for proper syntax matching. * tests/challenge.scm: Add #:prefix for (gcrypt hash) and adjust users. * tests/derivations.scm: Likewise. * tests/store.scm: Likewise. * tests/graph.scm ("bag DAG, including origins"): Provide 'sha256' field with the right length. * gnu/packages/aspell.scm (aspell-dictionary) (aspell-dict-ca, aspell-dict-it): Use 'hash' and 'content-hash' for proper syntax matching. * gnu/packages/bash.scm (bash-patch): Rename 'sha256' to 'sha256-bv'. * gnu/packages/bootstrap.scm (bootstrap-executable): Rename 'sha256' to 'bv'. * gnu/packages/readline.scm (readline-patch): Likewise. * gnu/packages/virtualization.scm (qemu-patch): Rename 'sha256' to 'sha256-bv'. * guix/import/utils.scm: Hide (gcrypt hash) 'sha256'. Ludovic Courtès 2020-05-11graph: Add 'shortest-path'....* guix/graph.scm (shortest-path): New procedure. * tests/graph.scm ("shortest-path, packages + derivations") ("shortest-path, reverse packages") ("shortest-path, references"): New tests. Ludovic Courtès 2020-05-11graph: reference/referrer node types work with graph traversal....The graph traversal procedures in (guix graph) assume that nodes can be compared with 'eq?', which was not the case for nodes of %REFERENCE-NODE-TYPE and %REFERRER-NODE-TYPE (strings). * guix/scripts/graph.scm (intern): New procedure. (ensure-store-items, references*) (%reference-node-type, non-derivation-referrers) (%referrer-node-type): Use it on all store items. * tests/graph.scm ("node-transitive-edges, references"): New test. Ludovic Courtès