aboutsummaryrefslogtreecommitdiff
path: root/gnu/build/linux-modules.scm
diff options
context:
space:
mode:
authorAndré Batista <nandre@riseup.net>2024-12-11 19:56:18 -0300
committerHilton Chain <hako@ultrarare.space>2024-12-21 00:56:26 +0800
commitceec3d0c8014ccb083dcafe27fcefe57a5686c03 (patch)
tree43ab149626278742e35b4be1d101950b5c8ece6c /gnu/build/linux-modules.scm
parent9466afbac6c9d51c6cd9a0f947d2a92f0bea0024 (diff)
downloadguix-ceec3d0c8014ccb083dcafe27fcefe57a5686c03.tar.gz
guix-ceec3d0c8014ccb083dcafe27fcefe57a5686c03.zip
gnu: make-torbrowser: Unbundle libevent.
* gnu/packages/tor-browsers.scm (make-torbrowser)[arguments] <#:configure-flags>: Uncomment '--with-system-libevent'. <#:phases>: Remove bundled libevent. Change-Id: I695ecd2648d6cd97c91297b0ad4e0d0985783b64 Signed-off-by: Hilton Chain <hako@ultrarare.space>
Diffstat (limited to 'gnu/build/linux-modules.scm')
0 files changed, 0 insertions, 0 deletions
ead of (guix zlib). * guix/profiles.scm (manual-database): Do not stub (guix config) in imported modules list, instead add "guile-zlib" to the extension list. * guix/scripts/publish.scm: Use (zlib) instead of (guix zlib) and (lzlib) instead of (guix lzlib), (string->compression-type, effective-compression): do not check for zlib and lzlib availability. * guix/scripts/substitute.scm (%compression-methods): Do not check for lzlib availability. * guix/self.scm (specification->package): Add "guile-zlib" and "guile-lzlib" and remove "zlib" and "lzlib", (compiled-guix): remove "zlib" and "lzlib" arguments and add guile-zlib and guile-lzlib to the dependencies, also do not pass "zlib" and "lzlib" to "make-config.scm" procedure, (make-config.scm): remove "zlib" and "lzlib" arguments as well as %libz and %liblz variables. * guix/utils.scm (lzip-port): Use (lzlib) instead of (guix lzlib) and do not check for lzlib availability. * guix/zlib.scm: Remove it. * m4/guix.m4 (GUIX_LIBZ_LIBDIR, GUIX_LIBLZ_FILE_NAME): Remove them. * tests/lzlib.scm: Use (zlib) instead of (guix zlib) and (lzlib) instead of (guix lzlib), and do not check for zlib and lzlib availability. * tests/publish.scm: Ditto. * tests/substitute.scm: Do not check for lzlib availability. * tests/utils.scm: Ditto. * tests/zlib.scm: Remove it. Mathieu Othacehe 2019-06-20utils: canonical-newline-port: Fix handling of carriage return at buffer end....Prior to this change the added test fails for me locally at byte 1024. It might depend on some default buffer sizes. Fixes <https://bugs.gnu.org/35863>. * tests/utils.scm ("canonical-newline-port-1024"): Add test. * guix/utils.scm (canonical-newline-port): Correct comments on CR/LF. Remove CR even when they're at the end of the buffer. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Robert Vollmert 2019-05-27utils: Support compression and decompression with lzip....* guix/utils.scm (lzip-port): New procedure. (decompressed-port, compressed-port, compressed-output-port): Add 'lzip case. * tests/utils.scm <top level>: Call 'test-compression/decompression' for 'lzip as well. Ludovic Courtès 2019-05-27utils: Test 'compressed-port' and 'decompressed-port' for both gzip and xz....* tests/utils.scm (test-compression/decompression): New procedure. <top level>: Call it for both 'xz and 'gzip. Ludovic Courtès