aboutsummaryrefslogtreecommitdiff
path: root/gnu/home/services/fontutils.scm
diff options
context:
space:
mode:
authorHilton Chain <hako@ultrarare.space>2023-01-24 16:13:15 +0800
committerChristopher Baines <mail@cbaines.net>2023-02-01 08:41:28 +0000
commit01f1e8bbb24bb41cf506f681470ba3b530ccae1e (patch)
treeeb4e8fdd6c3bbac1c5dca3c93738c3d06da3ba66 /gnu/home/services/fontutils.scm
parent8c62becaaa3c3a22f5c6e1dc3c39ada1935680fe (diff)
downloadguix-01f1e8bbb24bb41cf506f681470ba3b530ccae1e.tar.gz
guix-01f1e8bbb24bb41cf506f681470ba3b530ccae1e.zip
gnu: kconfig-hardened-check: Update to 0.6.1.
* gnu/packages/linux.scm (kconfig-hardened-check): Update to 0.6.1. Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu/home/services/fontutils.scm')
0 files changed, 0 insertions, 0 deletions
ariable. (deduplicate)[loop]: Do not recurse when FILE's size is below %DEDUPLICATION-MINIMUM-SIZE. (dump-port): New procedure. (dump-file/deduplicate)[hash]: Turn into... [dump-and-compute-hash]: ... this thunk. Call 'deduplicate' only when SIZE is greater than %DEDUPLICATION-MINIMUM-SIZE; otherwise call 'dump-port'. * nix/libstore/gc.cc (LocalStore::removeUnusedLinks): Drop files where st.st_size < deduplicationMinSize. * nix/libstore/local-store.hh (deduplicationMinSize): New declaration. * nix/libstore/optimise-store.cc (deduplicationMinSize): New variable. (LocalStore::optimisePath_): Return when PATH is a symlink or smaller than 'deduplicationMinSize'. * tests/derivations.scm ("identical files are deduplicated"): Produce files bigger than %DEDUPLICATION-MINIMUM-SIZE. * tests/nar.scm ("restore-file-set with directories (signed, valid)"): Likewise. * tests/store-deduplication.scm ("deduplicate, below %deduplication-minimum-size"): New test. ("deduplicate", "deduplicate, ENOSPC"): Produce files bigger than %DEDUPLICATION-MINIMUM-SIZE. * tests/store.scm ("substitute, deduplication"): Likewise. Ludovic Courtès 2021-03-06tests: do not hard code HTTP ports...Previously, test cases could fail if some process was listening at a hard-coded port. This patch eliminates most of these potential failures, by automatically assigning an unbound port. This should allow for building multiple guix trees in parallel outside a build container, though this is currently untested. The test "home-page: Connection refused" in tests/lint.scm still hardcodes port 9999, however. * guix/tests/http.scm (http-server-can-listen?): remove now unused procedure. (%http-server-port): default to port 0, meaning the OS will automatically choose a port. (open-http-server-socket): remove the false statement claiming this procedure is exported and also return the allocated port number. (%local-url): raise an error if the port is obviously unbound. (call-with-http-server): set %http-server-port to the allocated port while the thunk is called. * tests/derivations.scm: adjust test cases to use automatically assign a port. As there is no risk of a port conflict now, do not make any tests conditional upon 'http-server-can-listen?' anymore. * tests/elpa.scm: likewise. * tests/lint.scm: likewise, and add a TODO comment about a port that is still hard-coded. * tests/texlive.scm: likewise. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Maxime Devos