public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Marco Fargetta <mfargett@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/jss] rawhide: Rebase to jss 5.10.1
Date: Tue, 28 Jul 2026 17:19:02 GMT	[thread overview]
Message-ID: <178525914214.1.17564479498897842648.rpms-jss-cbce202eb34f@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/jss
Branch : rawhide
Commit : cbce202eb34f123f6822c6cbfa25edfa62646ce2
Author : Marco Fargetta <mfargett@redhat.com>
Date   : 2026-07-28T19:17:16+02:00
Stats  : +35/-7 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/jss/c/cbce202eb34f123f6822c6cbfa25edfa62646ce2?branch=rawhide

Log:
Rebase to jss 5.10.1

---
diff --git a/.gitignore b/.gitignore
index 881fcb3..8459e2f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -55,3 +55,4 @@ jss-4.2.6.tar.gz
 /jss-5.8.0.tar.gz
 /jss-5.9.0-beta1.tar.gz
 /jss-5.9.0.tar.gz
+/jss-5.10.1.tar.gz

diff --git a/jss.spec b/jss.spec
index 0295135..205ab24 100644
--- a/jss.spec
+++ b/jss.spec
@@ -7,8 +7,8 @@ Name:           jss
 
 # Upstream version number:
 %global         major_version 5
-%global         minor_version 9
-%global         update_version 0
+%global         minor_version 10
+%global         update_version 1
 
 # Downstream release number:
 # - development/stabilization (unsupported): 0.<n> where n >= 1
@@ -30,7 +30,7 @@ Summary:        Java Security Services (JSS)
 URL:            https://github.com/dogtagpki/jss
 License:        (MPL-1.1 OR GPL-2.0-or-later OR LGPL-2.1-or-later) AND Apache-2.0
 Version:        %{major_version}.%{minor_version}.%{update_version}
-Release:        %{release_number}%{?phase:.}%{?phase}%{?timestamp:.}%{?timestamp}%{?commit_id:.}%{?commit_id}%{?dist}.2
+Release:        %{release_number}%{?phase:.}%{?phase}%{?timestamp:.}%{?timestamp}%{?commit_id:.}%{?commit_id}%{?dist}
 
 # To generate the source tarball:
 # $ git clone https://github.com/dogtagpki/jss.git
@@ -55,6 +55,30 @@ ExcludeArch: i686
 %endif
 
 ################################################################################
+# NSS
+################################################################################
+
+%if 0%{?rhel}
+
+# the current NSS on RHEL only supports ML-DSA
+#define nss_version 3.112
+%global with_mldsa 1
+#undefine with_mlkem
+
+# temporarily enable ML-KEM on RHEL using NSS COPR build
+%define nss_version 3.123
+%global with_mlkem 1
+
+%else
+
+# the current NSS on Fedora supports both ML-DSA and ML-KEM
+%define nss_version 3.123
+%global with_mldsa 1
+%global with_mlkem 1
+
+%endif
+
+################################################################################
 # Java
 ################################################################################
 
@@ -103,8 +127,8 @@ BuildRequires:  zip
 BuildRequires:  unzip
 
 BuildRequires:  gcc-c++
-BuildRequires:  nss-devel >= 3.118
-BuildRequires:  nss-tools >= 3.118
+BuildRequires:  nss-devel >= %{nss_version}
+BuildRequires:  nss-tools >= %{nss_version}
 
 BuildRequires:  %{java_devel}
 BuildRequires:  %{maven_local}
@@ -123,7 +147,7 @@ This only works with gcj. Other JREs require that JCE providers be signed.
 
 Summary:        Java Security Services (JSS)
 
-Requires:       nss >= 3.118
+Requires:       nss >= %{nss_version}
 
 Requires:       %{java_headless}
 Requires:       mvn(org.apache.commons:commons-lang3)
@@ -396,6 +420,9 @@ cp base/target/jss-tests.jar %{buildroot}%{_datadir}/jss/tests/lib
 
 ################################################################################
 %changelog
+* Tue Jul 28 2026 Dogtag PKI Team <devel@lists.dogtagpki.org> - 5.10.1-1
+- Rebase to JSS 5.10.1
+
 * Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 5.9.0-1.2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
 

diff --git a/sources b/sources
index f086bc8..427b026 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (jss-5.9.0.tar.gz) = 8d302b2056527f0eb01d3971e00c9bee3716d6f63fc1ca622e1b88799dbbbd557d53a2ca93e1cbebf7ca00045e6f4f15dcf61d66e958584f9492286724e65343
+SHA512 (jss-5.10.1.tar.gz) = 53e2dd9652d7af050662a57ca48d25e6a1c79b4b951afb831e9152eb5a6137a89e38311e1907024281c2a981b9e5b058325fb226271207d1d9fdcacd2e9cfa52

                 reply	other threads:[~2026-07-28 17:19 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=178525914214.1.17564479498897842648.rpms-jss-cbce202eb34f@fedoraproject.org \
    --to=mfargett@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /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