2021-01-11 01:49:14 +00:00
|
|
|
################################################################################
|
|
|
|
Name: jss
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
Summary: Java Security Services (JSS)
|
|
|
|
URL: http://www.dogtagpki.org/wiki/JSS
|
|
|
|
License: MPLv1.1 or GPLv2+ or LGPLv2+
|
|
|
|
|
2021-06-19 05:10:50 +00:00
|
|
|
# For development (i.e. unsupported) releases, use x.y.z-0.n.<phase>.
|
|
|
|
# For official (i.e. supported) releases, use x.y.z-r where r >=1.
|
|
|
|
Version: 4.9.0
|
2021-08-09 19:45:17 +00:00
|
|
|
Release: 1%{?_timestamp}%{?_commit_id}%{?dist}
|
|
|
|
#global _phase -alpha1
|
2021-01-11 01:49:14 +00:00
|
|
|
|
|
|
|
# To generate the source tarball:
|
|
|
|
# $ git clone https://github.com/dogtagpki/jss.git
|
|
|
|
# $ cd jss
|
|
|
|
# $ git tag v4.5.<z>
|
|
|
|
# $ git push origin v4.5.<z>
|
|
|
|
# Then go to https://github.com/dogtagpki/jss/releases and download the source
|
|
|
|
# tarball.
|
|
|
|
Source: https://github.com/dogtagpki/%{name}/archive/v%{version}%{?_phase}/%{name}-%{version}%{?_phase}.tar.gz
|
|
|
|
|
|
|
|
# To create a patch for all changes since a version tag:
|
|
|
|
# $ git format-patch \
|
|
|
|
# --stdout \
|
|
|
|
# <version tag> \
|
|
|
|
# > jss-VERSION-RELEASE.patch
|
|
|
|
# Patch: jss-VERSION-RELEASE.patch
|
2021-06-19 05:10:50 +00:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Java
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
%if 0%{?fedora} && 0%{?fedora} <= 32 || 0%{?rhel} && 0%{?rhel} <= 8
|
|
|
|
%define java_devel java-1.8.0-openjdk-devel
|
|
|
|
%define java_headless java-1.8.0-openjdk-headless
|
|
|
|
%define java_home /usr/lib/jvm/jre-1.8.0-openjdk
|
|
|
|
%else
|
|
|
|
%define java_devel java-11-openjdk-devel
|
|
|
|
%define java_headless java-11-openjdk-headless
|
|
|
|
%define java_home /usr/lib/jvm/jre-11-openjdk
|
|
|
|
%endif
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Build Options
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# By default the build will execute unit tests unless --without test
|
|
|
|
# option is specified.
|
|
|
|
|
|
|
|
%bcond_without test
|
2021-01-11 01:49:14 +00:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Build Dependencies
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
BuildRequires: make
|
2021-01-21 06:24:11 +00:00
|
|
|
BuildRequires: cmake >= 3.14
|
2021-01-11 01:49:14 +00:00
|
|
|
BuildRequires: zip
|
|
|
|
BuildRequires: unzip
|
|
|
|
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
BuildRequires: nss-devel >= 3.44
|
|
|
|
BuildRequires: nss-tools >= 3.44
|
2021-06-19 05:10:50 +00:00
|
|
|
BuildRequires: %{java_devel}
|
2021-01-11 01:49:14 +00:00
|
|
|
BuildRequires: jpackage-utils
|
|
|
|
BuildRequires: slf4j
|
|
|
|
BuildRequires: glassfish-jaxb-api
|
|
|
|
BuildRequires: slf4j-jdk14
|
|
|
|
BuildRequires: apache-commons-lang3
|
|
|
|
|
|
|
|
BuildRequires: junit
|
|
|
|
|
|
|
|
Requires: nss >= 3.44
|
2021-06-19 05:10:50 +00:00
|
|
|
Requires: %{java_headless}
|
2021-01-11 01:49:14 +00:00
|
|
|
Requires: jpackage-utils
|
|
|
|
Requires: slf4j
|
|
|
|
Requires: glassfish-jaxb-api
|
|
|
|
Requires: slf4j-jdk14
|
|
|
|
Requires: apache-commons-lang3
|
|
|
|
|
|
|
|
Conflicts: ldapjdk < 4.20
|
|
|
|
Conflicts: idm-console-framework < 1.2
|
|
|
|
Conflicts: tomcatjss < 7.6.0
|
|
|
|
Conflicts: pki-base < 10.10.0
|
|
|
|
|
|
|
|
%description
|
|
|
|
Java Security Services (JSS) is a java native interface which provides a bridge
|
|
|
|
for java-based applications to use native Network Security Services (NSS).
|
|
|
|
This only works with gcj. Other JREs require that JCE providers be signed.
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
%package javadoc
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
Summary: Java Security Services (JSS) Javadocs
|
|
|
|
Requires: jss = %{version}-%{release}
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
This package contains the API documentation for JSS.
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
%prep
|
|
|
|
|
2021-06-19 05:10:50 +00:00
|
|
|
%autosetup -n %{name}-%{version}%{?_phase} -p 1
|
2021-01-11 01:49:14 +00:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
%build
|
|
|
|
|
|
|
|
%set_build_flags
|
|
|
|
|
|
|
|
# Enable compiler optimizations
|
|
|
|
export BUILD_OPT=1
|
|
|
|
|
|
|
|
# Generate symbolic info for debuggers
|
|
|
|
CFLAGS="-g $RPM_OPT_FLAGS"
|
|
|
|
export CFLAGS
|
|
|
|
|
|
|
|
# Check if we're in FIPS mode
|
|
|
|
modutil -dbdir /etc/pki/nssdb -chkfips true | grep -q enabled && export FIPS_ENABLED=1
|
|
|
|
|
|
|
|
# The Makefile is not thread-safe
|
|
|
|
%cmake \
|
2021-06-19 05:10:50 +00:00
|
|
|
-DVERSION=%{version} \
|
2021-01-11 01:49:14 +00:00
|
|
|
-DJAVA_HOME=%{java_home} \
|
|
|
|
-DJAVA_LIB_INSTALL_DIR=%{_jnidir} \
|
2021-06-19 05:10:50 +00:00
|
|
|
-DJSS_LIB_INSTALL_DIR=%{_libdir}/jss \
|
2021-01-11 01:49:14 +00:00
|
|
|
-B %{_vpath_builddir}
|
|
|
|
|
|
|
|
cd %{_vpath_builddir}
|
2021-06-19 05:10:50 +00:00
|
|
|
|
|
|
|
%{__make} \
|
|
|
|
VERBOSE=%{?_verbose} \
|
|
|
|
CMAKE_NO_VERBOSE=1 \
|
|
|
|
--no-print-directory \
|
|
|
|
all
|
|
|
|
|
|
|
|
%{__make} \
|
|
|
|
VERBOSE=%{?_verbose} \
|
|
|
|
CMAKE_NO_VERBOSE=1 \
|
|
|
|
--no-print-directory \
|
|
|
|
javadoc
|
|
|
|
|
|
|
|
%if %{with test}
|
2021-01-11 01:49:14 +00:00
|
|
|
ctest --output-on-failure
|
2021-06-19 05:10:50 +00:00
|
|
|
%endif
|
2021-01-11 01:49:14 +00:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
%install
|
|
|
|
|
2021-06-19 05:10:50 +00:00
|
|
|
cd %{_vpath_builddir}
|
2021-01-11 01:49:14 +00:00
|
|
|
|
2021-06-19 05:10:50 +00:00
|
|
|
%{__make} \
|
|
|
|
VERBOSE=%{?_verbose} \
|
|
|
|
CMAKE_NO_VERBOSE=1 \
|
|
|
|
DESTDIR=%{buildroot} \
|
|
|
|
INSTALL="install -p" \
|
|
|
|
--no-print-directory \
|
|
|
|
install
|
2021-01-11 01:49:14 +00:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
%files
|
|
|
|
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc jss.html
|
|
|
|
%license MPL-1.1.txt gpl.txt lgpl.txt
|
|
|
|
%{_libdir}/*
|
|
|
|
%{_jnidir}/*
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
%files javadoc
|
|
|
|
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_javadocdir}/%{name}-%{version}/
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
%changelog
|
2021-08-09 19:45:17 +00:00
|
|
|
* Mon Jul 26 2021 Red Hat PKI Team <rhcs-maint@redhat.com> 4.9.0-1
|
|
|
|
- Rebase to JSS 4.9.0
|
|
|
|
|
2021-06-19 05:10:50 +00:00
|
|
|
* Fri Jun 11 2021 Red Hat PKI Team <rhcs-maint@redhat.com> 4.9.0-0.2
|
|
|
|
- Rebase to JSS 4.9.0-alpha2
|
|
|
|
|
|
|
|
* Wed Jun 02 2021 Red Hat PKI Team <rhcs-maint@redhat.com> 4.9.0-0.1
|
|
|
|
- Rebase to JSS 4.9.0-alpha1
|
2021-03-27 04:56:03 +00:00
|
|
|
|
2021-01-21 06:24:11 +00:00
|
|
|
* Thu Jan 14 2021 Red Hat PKI Team <rhcs-maint@redhat.com> 4.8.1-1
|
|
|
|
- Rebase to upstream JSS v4.8.1
|
|
|
|
- Red Hat Bugilla #1908541 - jss broke SCEP - missing PasswordChallenge class
|
|
|
|
- Red Hat Bugilla #1489256 - [RFE] jss should support RSA with OAEP padding
|
|
|
|
|
2021-01-11 01:49:14 +00:00
|
|
|
* Wed Nov 18 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.8.0-2
|
|
|
|
- Only check PKCS11Constants on beta builds
|
|
|
|
- Bump tomcatjss, pki-core conflicts due to lang3
|
|
|
|
|
|
|
|
* Wed Oct 28 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.8.0-1
|
|
|
|
- Rebase to upstream JSS v4.8.0
|
|
|
|
|
|
|
|
* Tue Oct 20 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.8.0-0.1
|
|
|
|
- Rebase to upstream JSS v4.8.0-b1
|
|
|
|
|
|
|
|
* Fri Sep 11 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.7.3-1
|
|
|
|
- Rebase to upstream stable release JSS v4.7.3
|
|
|
|
- Red Hat Bugzilla #1873235 - Fix SSL_ERROR_INAPPROPRIATE_FALLBACK_ALERT in pki ca-user-cert-add
|
|
|
|
|
|
|
|
* Thu Aug 06 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.7.2-1
|
|
|
|
- Rebase to upstream stable release JSS v4.7.2
|
|
|
|
- Red Hat Bugzilla #1822246 - Fix SSLSocket NULL pointer deference after close
|
|
|
|
|
|
|
|
* Fri Jul 31 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.7.1-1
|
|
|
|
- Rebase to upstream stable release JSS v4.7.1
|
|
|
|
|
|
|
|
* Thu Jul 09 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.7.0-1
|
|
|
|
- Rebase to upstream stable release JSS v4.7.0
|
|
|
|
- Fixed TestSSLEngine
|
|
|
|
|
|
|
|
* Thu Jun 25 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.7.0-0.4
|
|
|
|
- Rebased to JSS 4.7.0-b4
|
|
|
|
|
|
|
|
* Mon Jun 22 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.7.0-0.3
|
|
|
|
- Rebased to JSS 4.7.0-b3
|
|
|
|
|
|
|
|
* Tue May 26 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.7.0-0.1
|
|
|
|
- Rebased to JSS 4.7.0-b1
|
|
|
|
|
|
|
|
* Mon Mar 23 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.6.2-4
|
|
|
|
- Red Hat Bugzilla #1807371 - KRA-HSM: Async and sync key recovery using kra agent web is failing
|
|
|
|
|
|
|
|
* Mon Mar 02 2020 Red Hat PKI Team <rhcs-maint@redhat.com> 4.6.2-3
|
|
|
|
- Red Hat Bugzilla #1807371 - KRA-HSM: Async and sync key recovery using kra agent web is failing
|
|
|
|
|
|
|
|
* Tue Oct 29 2019 Red Hat PKI Team <rhcs-maint@redhat.com> 4.6.2-2
|
|
|
|
- Red Hat Bugzilla #1730767 - JSS: Wrap NSS CMAC + KDF implementations
|
|
|
|
- Rebased to JSS 4.6.2
|
|
|
|
|
|
|
|
* Wed Sep 11 2019 Red Hat PKI Team <rhcs-maint@redhat.com> 4.6.0-5
|
|
|
|
- Red Hat Bugzilla #1747987 - CVE 2019-14823 jss: OCSP policy "Leaf and Chain" implicitly trusts the root certificate
|
|
|
|
|
|
|
|
* Wed Aug 14 2019 Red Hat PKI Team <rhcs-maint@redhat.com> 4.6.0-4
|
|
|
|
- Red Hat Bugzilla #1698059 - pki-core implements crypto
|
|
|
|
|
|
|
|
* Tue Jul 16 2019 Red Hat PKI Team <rhcs-maint@redhat.com> 4.6.0-3
|
|
|
|
- Red Hat Bugzilla #1721135 - JSS - LD_FLAGS support
|
|
|
|
|
|
|
|
* Wed Jun 12 2019 Red Hat PKI Team <rhcs-maint@redhat.com> 4.6.0-2
|
|
|
|
- Minor updates to release
|
|
|
|
|
|
|
|
* Wed Jun 12 2019 Red Hat PKI Team <rhcs-maint@redhat.com> 4.6.0-1
|
|
|
|
- Rebased to JSS 4.6.0
|
|
|
|
|
|
|
|
* Thu Apr 25 2019 Red Hat PKI Team <rhcs-maint@redhat.com> 4.5.3-1
|
|
|
|
- Rebased to JSS 4.5.3
|
|
|
|
|
|
|
|
* Fri Aug 10 2018 Red Hat PKI Team <rhcs-maint@redhat.com> 4.5.0-1
|
|
|
|
- Rebased to JSS 4.5.0
|
|
|
|
|
|
|
|
* Tue Aug 07 2018 Red Hat PKI Team <rhcs-maint@redhat.com> 4.5.0-0.6
|
|
|
|
- Rebased to JSS 4.5.0-b1
|
|
|
|
|
|
|
|
* Tue Aug 07 2018 Red Hat PKI Team <rhcs-maint@redhat.com> 4.5.0-0.5
|
|
|
|
- Red Hat Bugzilla #1612063 - Do not override system crypto policy (support TLS 1.3)
|
|
|
|
|
|
|
|
* Fri Jul 20 2018 Red Hat PKI Team <rhcs-maint@redhat.com> 4.5.0-0.4
|
|
|
|
- Rebased to JSS 4.5.0-a4
|
|
|
|
- Red Hat Bugzilla #1604462 - jss: FTBFS in Fedora rawhide
|
|
|
|
|
|
|
|
* Thu Jul 05 2018 Red Hat PKI Team <rhcs-maint@redhat.com> 4.5.0-0.3
|
|
|
|
- Rebased to JSS 4.5.0-a3
|
|
|
|
|
|
|
|
* Fri Jun 22 2018 Red Hat PKI Team <rhcs-maint@redhat.com> 4.5.0-0.2
|
|
|
|
- Rebased to JSS 4.5.0-a2
|
|
|
|
|
|
|
|
* Fri Jun 15 2018 Red Hat PKI Team <rhcs-maint@redhat.com> 4.5.0-0.1
|
|
|
|
- Rebased to JSS 4.5.0-a1
|