diff options
author | Mark H Weaver <mhw@netris.org> | 2024-01-22 12:50:32 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2024-01-23 11:09:02 -0500 |
commit | 648085dab6c614926c47c6d4f6b8d12d82587724 (patch) | |
tree | a7599ead7b83804ee92068e4e295d4e8480420f9 /gnu | |
parent | 40fb160a5e8b0b800426489c0a2ad387c6934fba (diff) | |
download | guix-648085dab6c614926c47c6d4f6b8d12d82587724.tar.gz guix-648085dab6c614926c47c6d4f6b8d12d82587724.zip |
gnu: icecat: Update to 115.7.0-guix0-preview1 [security fixes].
Includes fixes for CVE-2024-0741, CVE-2024-0742, CVE-2024-0746,
CVE-2024-0747, CVE-2024-0749, CVE-2024-0750, CVE-2024-0751,
CVE-2024-0753, and CVE-2024-0755.
* gnu/packages/gnuzilla.scm (%icecat-base-version, %icecat-build-id): Update.
(icecat-source): Update gnuzilla commit, base version, and hashes.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnuzilla.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index e3bc625bc0..21e3cc70d9 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2013-2022 Ludovic Courtès <ludo@gnu.org> -;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Mark H Weaver <mhw@netris.org> +;;; Copyright © 2014-2024 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com> ;;; Copyright © 2016, 2017, 2018, 2019, 2021 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com> @@ -548,9 +548,9 @@ variable defined below. It requires guile-json to be installed." ;; XXXX: Workaround 'snippet' limitations. (define computed-origin-method (@@ (guix packages) computed-origin-method)) -(define %icecat-base-version "115.6.0") +(define %icecat-base-version "115.7.0") (define %icecat-version (string-append %icecat-base-version "-guix0-preview1")) -(define %icecat-build-id "20231219000000") ;must be of the form YYYYMMDDhhmmss +(define %icecat-build-id "20240123000000") ;must be of the form YYYYMMDDhhmmss ;; 'icecat-source' is a "computed" origin that generates an IceCat tarball ;; from the corresponding upstream Firefox ESR tarball, using the 'makeicecat' @@ -570,12 +570,12 @@ variable defined below. It requires guile-json to be installed." "firefox-" upstream-firefox-version ".source.tar.xz")) (sha256 (base32 - "0rmw486yhkb1is1j2fy51djl5p5qggf2fhp2hgzfdj4s2bjydmv6")))) + "0ad4az0hiq7q9pnya1pyj75a732ag5bd4jp8mxg4izz97k6zzv8k")))) ;; The upstream-icecat-base-version may be older than the ;; %icecat-base-version. - (upstream-icecat-base-version "115.6.0") - (gnuzilla-commit "6a76a10682b6e63f562e4b9f26f3ef12f88bd839") + (upstream-icecat-base-version "115.7.0") + (gnuzilla-commit "dbe6da400cf4f28e5e893d0acb5022e23cf3afcf") (gnuzilla-source (origin (method git-fetch) @@ -587,7 +587,7 @@ variable defined below. It requires guile-json to be installed." (string-take gnuzilla-commit 8))) (sha256 (base32 - "15bvlz7c4d8mk10zc317rai91hd96wnchikcfdfxzl35zdnd315r")))) + "0j7wxiyqqwn8slr4cjwqya9jh912l0xjprld5hj79an0vnb7c21h")))) ;; 'search-patch' returns either a valid file name or #f, so wrap it ;; in 'assume-valid-file-name' to avoid 'local-file' warnings. |