mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Christian Melki <christian.melki@t2data.com>
To: ptxdist@pengutronix.de
Subject: [ptxdist] [PATCH] nss: Version bump. 3.89.1 -> 3.91
Date: Sun,  2 Jul 2023 23:05:07 +0200	[thread overview]
Message-ID: <20230702210507.3845291-1-christian.melki@t2data.com> (raw)

Minor bugfixes.
https://firefox-source-docs.mozilla.org/security/nss/releases/nss_3_90.html
https://firefox-source-docs.mozilla.org/security/nss/releases/nss_3_91.html

* Forward patchset applies cleanly. Remove GCC 13 patch. Included in the release.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 .../0006-fix-building-with-gcc-13.patch       | 50 -------------------
 .../0001-nss-fix-nsinstall-build.patch        |  0
 .../0002-add-nss.pc.in.patch                  |  0
 ...-don-t-build-commands-that-need-zlib.patch |  0
 ...004-HACK-fix-parallel-building-issue.patch |  0
 .../0005-fix-dependency-generation.patch      |  0
 patches/{nss-3.89.1 => nss-3.91}/series       |  3 +-
 rules/nss.make                                |  4 +-
 8 files changed, 3 insertions(+), 54 deletions(-)
 delete mode 100644 patches/nss-3.89.1/0006-fix-building-with-gcc-13.patch
 rename patches/{nss-3.89.1 => nss-3.91}/0001-nss-fix-nsinstall-build.patch (100%)
 rename patches/{nss-3.89.1 => nss-3.91}/0002-add-nss.pc.in.patch (100%)
 rename patches/{nss-3.89.1 => nss-3.91}/0003-HACK-don-t-build-commands-that-need-zlib.patch (100%)
 rename patches/{nss-3.89.1 => nss-3.91}/0004-HACK-fix-parallel-building-issue.patch (100%)
 rename patches/{nss-3.89.1 => nss-3.91}/0005-fix-dependency-generation.patch (100%)
 rename patches/{nss-3.89.1 => nss-3.91}/series (72%)

diff --git a/patches/nss-3.89.1/0006-fix-building-with-gcc-13.patch b/patches/nss-3.89.1/0006-fix-building-with-gcc-13.patch
deleted file mode 100644
index 90b0771a2..000000000
--- a/patches/nss-3.89.1/0006-fix-building-with-gcc-13.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From: Michael Olbrich <m.olbrich@pengutronix.de>
-Date: Sun, 28 May 2023 13:13:33 +0200
-Subject: [PATCH] fix building with gcc 13
-
-Without this building fails with:
-
-ecperf.c: In function 'genericThread':
-ecperf.c:99:24: error: storing the address of local variable 'sig' in '*threadData.p2' [-Werror=dangling-pointer=]
-ecperf.c:91:13: note: 'sig' declared here
-ecperf.c:86:21: note: 'data' declared here
-ecperf.c: In function 'PKCS11Thread':
-ecperf.c:71:24: error: storing the address of local variable 'sig' in '*threadData.p2' [-Werror=dangling-pointer=]
-ecperf.c:53:13: note: 'sig' declared here
-ecperf.c:47:20: note: 'data' declared here
-cc1: all warnings being treated as errors
-
-threadData is a pointer argument so any member variable that is set may
-be used after the function ends. So in theory, setting threadData->p2
-can be a problem.
-
-It's not actually used after the end of the function so just clear it
-again to make the compiler happy.
-
-Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
----
- nss/cmd/ecperf/ecperf.c | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/nss/cmd/ecperf/ecperf.c b/nss/cmd/ecperf/ecperf.c
-index 705d68f358f4..418e2b20c2e7 100644
---- a/nss/cmd/ecperf/ecperf.c
-+++ b/nss/cmd/ecperf/ecperf.c
-@@ -79,6 +79,8 @@ PKCS11Thread(void *data)
-         }
-         threadData->count++;
-     }
-+    if (threadData->isSign)
-+        threadData->p2 = NULL;
-     return;
- }
- 
-@@ -107,6 +109,8 @@ genericThread(void *data)
-         }
-         threadData->count++;
-     }
-+    if (threadData->isSign)
-+        threadData->p2 = NULL;
-     return;
- }
- 
diff --git a/patches/nss-3.89.1/0001-nss-fix-nsinstall-build.patch b/patches/nss-3.91/0001-nss-fix-nsinstall-build.patch
similarity index 100%
rename from patches/nss-3.89.1/0001-nss-fix-nsinstall-build.patch
rename to patches/nss-3.91/0001-nss-fix-nsinstall-build.patch
diff --git a/patches/nss-3.89.1/0002-add-nss.pc.in.patch b/patches/nss-3.91/0002-add-nss.pc.in.patch
similarity index 100%
rename from patches/nss-3.89.1/0002-add-nss.pc.in.patch
rename to patches/nss-3.91/0002-add-nss.pc.in.patch
diff --git a/patches/nss-3.89.1/0003-HACK-don-t-build-commands-that-need-zlib.patch b/patches/nss-3.91/0003-HACK-don-t-build-commands-that-need-zlib.patch
similarity index 100%
rename from patches/nss-3.89.1/0003-HACK-don-t-build-commands-that-need-zlib.patch
rename to patches/nss-3.91/0003-HACK-don-t-build-commands-that-need-zlib.patch
diff --git a/patches/nss-3.89.1/0004-HACK-fix-parallel-building-issue.patch b/patches/nss-3.91/0004-HACK-fix-parallel-building-issue.patch
similarity index 100%
rename from patches/nss-3.89.1/0004-HACK-fix-parallel-building-issue.patch
rename to patches/nss-3.91/0004-HACK-fix-parallel-building-issue.patch
diff --git a/patches/nss-3.89.1/0005-fix-dependency-generation.patch b/patches/nss-3.91/0005-fix-dependency-generation.patch
similarity index 100%
rename from patches/nss-3.89.1/0005-fix-dependency-generation.patch
rename to patches/nss-3.91/0005-fix-dependency-generation.patch
diff --git a/patches/nss-3.89.1/series b/patches/nss-3.91/series
similarity index 72%
rename from patches/nss-3.89.1/series
rename to patches/nss-3.91/series
index aba5ce408..534d0d6d6 100644
--- a/patches/nss-3.89.1/series
+++ b/patches/nss-3.91/series
@@ -5,5 +5,4 @@
 0003-HACK-don-t-build-commands-that-need-zlib.patch
 0004-HACK-fix-parallel-building-issue.patch
 0005-fix-dependency-generation.patch
-0006-fix-building-with-gcc-13.patch
-# 49d396aebdf3361484f7d43c92213908  - git-ptx-patches magic
+# 51749efb4fc421b49999aad3745d75b9  - git-ptx-patches magic
diff --git a/rules/nss.make b/rules/nss.make
index 64c1e5777..e768af1be 100644
--- a/rules/nss.make
+++ b/rules/nss.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_NSS) += nss
 #
 # Paths and names
 #
-NSS_VERSION	:= 3.89.1
-NSS_MD5		:= c7e06669859cd27af7405ce6ab62cbfb
+NSS_VERSION	:= 3.91
+NSS_MD5		:= a8168bc23c9e9b5419aede4984ba259e
 NSS		:= nss-$(NSS_VERSION)
 NSS_SUFFIX	:= tar.gz
 NSS_URL		:= https://ftp.mozilla.org/pub/security/nss/releases/NSS_$(subst .,_,$(NSS_VERSION))_RTM/src/$(NSS).$(NSS_SUFFIX)
-- 
2.34.1




             reply	other threads:[~2023-07-02 21:05 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-02 21:05 Christian Melki [this message]
2023-07-08  7:02 ` [ptxdist] [APPLIED] " Michael Olbrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230702210507.3845291-1-christian.melki@t2data.com \
    --to=christian.melki@t2data.com \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox