From f1e0e5fde34ff0e882247498ecf78106c73284d6 Mon Sep 17 00:00:00 2001 From: Jonathan Brielmaier Date: Sat, 5 Jun 2021 20:36:45 +0200 Subject: gnu: icedove: Update to 78.11.0 [fixes CVE-2021-29967]. * gnu/packages/gnuzilla.scm (icedove): Update to 78.11.0. --- gnu/packages/gnuzilla.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index cc65b1ccfb..ab4c9ac193 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -1302,11 +1302,11 @@ standards of the IceCat project.") (cpe-version . ,(first (string-split version #\-))))))) ;; Update this together with icecat! -(define %icedove-build-id "20210504000000") ;must be of the form YYYYMMDDhhmmss +(define %icedove-build-id "20210601000000") ;must be of the form YYYYMMDDhhmmss (define-public icedove (package (name "icedove") - (version "78.10.1") + (version "78.11.0") (source icecat-source) (properties `((cpe-name . "thunderbird_esr"))) @@ -1586,7 +1586,7 @@ standards of the IceCat project.") ;; in the Thunderbird release tarball. We don't use the release ;; tarball because it duplicates the Icecat sources and only adds the ;; "comm" directory, which is provided by this repository. - ,(let ((changeset "14a9afcfb6cc0c466e0d0b8222e85de5b2d8078d")) + ,(let ((changeset "1717d8d5fbd359aab7a4a0a15f4d15c72a7e6afc")) (origin (method hg-fetch) (uri (hg-reference @@ -1595,7 +1595,7 @@ standards of the IceCat project.") (file-name (string-append "thunderbird-" version "-checkout")) (sha256 (base32 - "18658r4b1f5p8jcz68l31z29ny73lic0br7gc827m72nfc85wqz3"))))) + "10l042dd7b8rvla0cbiks5kjrz2b28yy7hr8sr169wlx202hxa01"))))) ("autoconf" ,autoconf-2.13) ("cargo" ,rust-1.41 "cargo") ("clang" ,clang) -- cgit v1.2.3 name='q' value=''/>
path: root/tests/guix-download.sh
AgeCommit message (Expand)Author
2020-09-28tests: Simplify shell exit status negation;...* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-lint.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh: Use the shell '!' keyword to negate command exit status in place of 'if ...; then false; else true; fi' Eric Bavier
2017-08-20guix download: Support retrieving local file without the URI scheme....* guix/scripts/download.scm (guix-download): Treat the URL argument as a local file path when it fails on 'string->uri'. Call 'fetch' with the processed 'uri' instead of the original URL argument. * tests/guix-download.sh: Adjust accordingly. 宋文武