diff options
author | Josselin Poiret <dev@jpoiret.xyz> | 2024-05-16 11:41:07 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:03 +0200 |
commit | 2f8fb69a55fa9a5bff008d901c36eea8a8294730 (patch) | |
tree | c23ddc35a09c260990fb33806313e39bfb4da88d | |
parent | e312bce54340022a1e55dee55b8a46b3b0dfb908 (diff) | |
download | guix-2f8fb69a55fa9a5bff008d901c36eea8a8294730.tar.gz guix-2f8fb69a55fa9a5bff008d901c36eea8a8294730.zip |
gnu: nss: Ungraft update to 3.99.
* gnu/packages/nss.scm (nss): Ungraft and update to 3.99.
(nss/fixed): Remove variable.
Change-Id: I57d4426deb3b96e88d83ba1a7a529a94c9e7815f
-rw-r--r-- | gnu/packages/nss.scm | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/gnu/packages/nss.scm b/gnu/packages/nss.scm index 8e3e16afc3..d2d0b33180 100644 --- a/gnu/packages/nss.scm +++ b/gnu/packages/nss.scm @@ -114,8 +114,7 @@ in the Mozilla clients.") ;; IMPORTANT: Also update and test the nss-certs package, which duplicates ;; version and source to avoid a top-level variable reference & module ;; cycle. - (version "3.88.1") - (replacement nss/fixed) + (version "3.99") (source (origin (method url-fetch) (uri (let ((version-with-underscores @@ -126,7 +125,7 @@ in the Mozilla clients.") "nss-" version ".tar.gz"))) (sha256 (base32 - "15il9fsmixa1r4446zq1wl627sg0hz9h67w6kjxz273xz3nl7li7")) + "1g89ig40gfi1sp02gybvl2z818lawcnrqjzsws36cdva834c5maw")) ;; Create nss.pc and nss-config. (patches (search-patches "nss-3.56-pkgconfig.patch" "nss-getcwd-nonnull.patch" @@ -206,11 +205,19 @@ in the Mozilla clients.") (setenv "USE_IP" "TRUE") (setenv "IP_ADDRESS" "127.0.0.1") + ;; This specific test is looking at performance "now + ;; verify that we can quickly dump a database", and + ;; we're not testing performance here (especially + ;; since we're using faketime), so raise the + ;; threshold + (substitute* "nss/tests/dbtests/dbtests.sh" + ((" -lt 5") " -lt 50")) + ;; The "PayPalEE.cert" certificate expires every six months, ;; leading to test failures: ;; <https://bugzilla.mozilla.org/show_bug.cgi?id=609734>. To ;; work around that, set the time to roughly the release date. - (invoke "faketime" "2022-11-01" "./nss/tests/all.sh")) + (invoke "faketime" "2024-01-23" "./nss/tests/all.sh")) (format #t "test suite not run~%")))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) |