From ab934776ef35a95f95793dbfbd458223731642f0 Mon Sep 17 00:00:00 2001 From: Wilko Meyer Date: Sat, 6 Jul 2024 00:25:04 +0200 Subject: gnu: linux-libre 5.15: Update to 5.15.162. * gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.162. (linux-libre-5.15-pristine-source, deblob-scripts-5.15): Update hashes. Change-Id: I0586acec38ed8d6de0f07084794c928821ae17c2 Signed-off-by: Leo Famulari --- gnu/packages/linux.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 3439f692c0..280d47b511 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -562,17 +562,17 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-6.1))) -(define-public linux-libre-5.15-version "5.15.161") +(define-public linux-libre-5.15-version "5.15.162") (define-public linux-libre-5.15-gnu-revision "gnu") (define deblob-scripts-5.15 (linux-libre-deblob-scripts linux-libre-5.15-version linux-libre-5.15-gnu-revision (base32 "18ac30kxg2mf2f6gk3p935hzhz2qs110jy4xwk21kblnnkskbxj8") - (base32 "121shkzgixmywa19xx5f2yxg1primarpg4bxin3jyw0214xbfh2n"))) + (base32 "0p6spfkf3smm4wlgfmqahzcfnlzij5nkhqh297h91r3xqxis0l1y"))) (define-public linux-libre-5.15-pristine-source (let ((version linux-libre-5.15-version) - (hash (base32 "0k277hz6nq62v0xfc1n2hc69cyvmnxpl0qcbszinajywh23gfafn"))) + (hash (base32 "0z0s5gk8akcbpb99jp08px78fhr8r6kkb7dpl01b3rrc2pmc1gwi"))) (make-linux-libre-source version (%upstream-linux-source version hash) deblob-scripts-5.15))) -- cgit v1.2.3 e='grep'>log msg
3a'>pack: 'self-contained-tarball' runs derivation in a UTF-8local.... gmsg'> * guix/utils.scm (string-distance): New procedure. (string-closest): New procedure. * tests/utils.scm ("string-distance", "string-closest"): New tests. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
AgeCommit message (Expand)Author
2020-03-09gnu: slang: Use HTTPS home page....Tobias Geerinckx-Rice
Ludovic Courtès
2019-12-26gnu: Remove squashfs-tools-next....Ricardo Wurmus
2019-08-27pack: Create /tmp in Docker images....Ludovic Courtès
2019-03-24tests: Adjust 'guix pack -f squashfs' test....Ludovic Courtès
2018-11-06store-copy: Canonicalize the mtime and permissions of the store copy....Ludovic Courtès
2018-11-06pack: Add test for 'self-contained-tarball' with localstatedir....Ludovic Courtès
2018-11-06pack: Squashfs backend now honors '--localstatedir'....Ludovic Courtès
2018-11-06pack: Docker backend now honors '--localstatedir'....Ludovic Courtès
2018-11-06pack: Import (guix store database) only when '--localstatedir' is passed....Ludovic Courtès
2018-10-28tests: Fix typo....Ludovic Courtès
2018-10-19tests: Run 'guix pack' tests using the external store....Ludovic Courtès
2018-09-18tests: Skip 'self-contained-tarball' test unconditionally....Ludovic Courtès
2018-06-01pack: Adjust test to expect relative symlinks....Ludovic Courtès
2018-06-01tests: Fix arguments in pack test....Ricardo Wurmus
2021-02-01utils: Add 'version-unique-prefix'.Ludovic Courtès
* guix/utils.scm (version-unique-prefix): New procedure. * tests/utils.scm ("version-unique-prefix"): New test.
2021-01-13utils: Support zstd compression via Guile-zstd.Ludovic Courtès
* guix/utils.scm (lzip-port): Return a single value. (zstd-port): New procedure. (decompressed-port, compressed-output-port): Add 'zstd' case. * tests/utils.scm (test-compression/decompression): Test 'zstd' when the (zstd) module is available.
2021-01-13utils: Remove 'compressed-output-port'.Ludovic Courtès
This procedure was unused except in one test. * guix/utils.scm (compressed-port): Remove. * tests/utils.scm (test-compression/decompression): Rewrite to use 'compressed-output-port' instead.