unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#43729] [PATCH 1/2] gnu: nss@3.56: Update to 3.57.
@ 2020-09-30 20:55 Jonathan Brielmaier
  2020-09-30 20:56 ` [bug#43729] [PATCH 2/2] gnu: icedove: Update to 78.3.1 Jonathan Brielmaier
  2020-10-02  6:13 ` bug#43729: [PATCH 1/2] gnu: nss@3.56: Update to 3.57 Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Jonathan Brielmaier @ 2020-09-30 20:55 UTC (permalink / raw)
  To: 43729; +Cc: Jonathan Brielmaier

nss@3.57 includes a critical fix for building on aarch64.

* gnu/packages/nss.scm (nss-3.56): Update to 3.57 and rename to
* nss-3.57.
* gnu/packages/gnuzilla.scm (icedove)[inputs]: Update nss variable name.
---
 gnu/packages/gnuzilla.scm | 2 +-
 gnu/packages/nss.scm      | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm
index 440d9509c1..55c8917caa 100644
--- a/gnu/packages/gnuzilla.scm
+++ b/gnu/packages/gnuzilla.scm
@@ -1426,7 +1426,7 @@ standards of the IceCat project.")
        ("mesa" ,mesa)
        ("mit-krb5" ,mit-krb5)
        ("nspr" ,nspr)
-       ("nss" ,nss-3.56)
+       ("nss" ,nss-3.57)
        ("pango" ,pango)
        ("pixman" ,pixman)
        ("pulseaudio" ,pulseaudio)
diff --git a/gnu/packages/nss.scm b/gnu/packages/nss.scm
index e4df93c8c4..949ed91020 100644
--- a/gnu/packages/nss.scm
+++ b/gnu/packages/nss.scm
@@ -193,10 +193,10 @@ PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other
 security standards.")
     (license license:mpl2.0)))

-(define-public nss-3.56
+(define-public nss-3.57
   (package
     (inherit nss)
-    (version "3.56")
+    (version "3.57")
     (source (origin
               (method url-fetch)
               (uri (let ((version-with-underscores
@@ -207,7 +207,7 @@ security standards.")
                       "nss-" version ".tar.gz")))
               (sha256
                (base32
-                "174f0ki2f8szkgv02jlsg2ci332sl9dabr2vcwnyjp1vxplf0xgq"))
+                "10n3pncg6k81ikjz12la147rppwqn57bkrdl9gb820w6pq0nra2m"))
               ;; Create nss.pc and nss-config.
               (patches (search-patches "nss-3.56-pkgconfig.patch"
                                        "nss-increase-test-timeout.patch"))
--
2.28.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#43729] [PATCH 2/2] gnu: icedove: Update to 78.3.1.
  2020-09-30 20:55 [bug#43729] [PATCH 1/2] gnu: nss@3.56: Update to 3.57 Jonathan Brielmaier
@ 2020-09-30 20:56 ` Jonathan Brielmaier
  2020-10-02  6:13 ` bug#43729: [PATCH 1/2] gnu: nss@3.56: Update to 3.57 Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Brielmaier @ 2020-09-30 20:56 UTC (permalink / raw)
  To: 43729; +Cc: Jonathan Brielmaier

* gnu/packages/gnuzilla.scm (icedove): Update to 78.3.1.
---
 gnu/packages/gnuzilla.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm
index 55c8917caa..61dac7df57 100644
--- a/gnu/packages/gnuzilla.scm
+++ b/gnu/packages/gnuzilla.scm
@@ -1157,11 +1157,11 @@ standards of the IceCat project.")
        (cpe-version . ,(first (string-split version #\-)))))))

 ;; Update this together with icecat!
-(define %icedove-build-id "20200924000000") ;must be of the form YYYYMMDDhhmmss
+(define %icedove-build-id "20200926000000") ;must be of the form YYYYMMDDhhmmss
 (define-public icedove
   (package
     (name "icedove")
-    (version "78.3.0")
+    (version "78.3.1")
     (source icecat-source)
     (properties
      `((cpe-name . "thunderbird_esr")))
@@ -1441,7 +1441,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 "35e647ebd4fa09407a0fe151d3823b1b58172a2a"))
+        ,(let ((changeset "00912779d73faef4277c57fe99aa5259b11d244d"))
            (origin
              (method hg-fetch)
              (uri (hg-reference
@@ -1450,7 +1450,7 @@ standards of the IceCat project.")
              (file-name (string-append "thunderbird-" version "-checkout"))
              (sha256
               (base32
-               "0g27rapn1xf19i5pl2g12hndb55shzsk4vrrc6bnj4vf2q49zcwy")))))
+               "12isvk6q8miwn81kimrgcmjh4vsmdbbx93q9pafgxlx3p92s5v8h")))))
        ("autoconf" ,autoconf-2.13)
        ("cargo" ,rust-1.41 "cargo")
        ("clang" ,clang)
--
2.28.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#43729: [PATCH 1/2] gnu: nss@3.56: Update to 3.57.
  2020-09-30 20:55 [bug#43729] [PATCH 1/2] gnu: nss@3.56: Update to 3.57 Jonathan Brielmaier
  2020-09-30 20:56 ` [bug#43729] [PATCH 2/2] gnu: icedove: Update to 78.3.1 Jonathan Brielmaier
@ 2020-10-02  6:13 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2020-10-02  6:13 UTC (permalink / raw)
  To: Jonathan Brielmaier; +Cc: 43729-done

Hi,

Jonathan Brielmaier <jonathan.brielmaier@web.de> skribis:

> nss@3.57 includes a critical fix for building on aarch64.
>
> * gnu/packages/nss.scm (nss-3.56): Update to 3.57 and rename to
> * nss-3.57.
> * gnu/packages/gnuzilla.scm (icedove)[inputs]: Update nss variable name.

[...]

> * gnu/packages/gnuzilla.scm (icedove): Update to 78.3.1.

Applied, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-10-02  6:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-30 20:55 [bug#43729] [PATCH 1/2] gnu: nss@3.56: Update to 3.57 Jonathan Brielmaier
2020-09-30 20:56 ` [bug#43729] [PATCH 2/2] gnu: icedove: Update to 78.3.1 Jonathan Brielmaier
2020-10-02  6:13 ` bug#43729: [PATCH 1/2] gnu: nss@3.56: Update to 3.57 Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).