import jss-5.0.3-1.el9
This commit is contained in:
commit
150c1e4ce2
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
SOURCES/jss-5.0.3.tar.gz
|
1
.jss.metadata
Normal file
1
.jss.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
6351e00796eb7639da6a974044ef5101a9ecf67a SOURCES/jss-5.0.3.tar.gz
|
192
SPECS/jss.spec
Normal file
192
SPECS/jss.spec
Normal file
@ -0,0 +1,192 @@
|
|||||||
|
################################################################################
|
||||||
|
Name: jss
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
Summary: Java Security Services (JSS)
|
||||||
|
URL: http://www.dogtagpki.org/wiki/JSS
|
||||||
|
License: MPLv1.1 or GPLv2+ or LGPLv2+
|
||||||
|
|
||||||
|
# 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: 5.0.3
|
||||||
|
Release: 1%{?_timestamp}%{?_commit_id}%{?dist}
|
||||||
|
#global _phase -alpha1
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Java
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
%define java_devel java-11-openjdk-devel
|
||||||
|
%define java_headless java-11-openjdk-headless
|
||||||
|
%define java_home %{_jvmdir}/jre-11-openjdk
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Build Options
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# By default the javadoc package will be built unless --without javadoc
|
||||||
|
# option is specified.
|
||||||
|
|
||||||
|
%bcond_without javadoc
|
||||||
|
|
||||||
|
# By default the build will execute unit tests unless --without test
|
||||||
|
# option is specified.
|
||||||
|
|
||||||
|
%bcond_without test
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Build Dependencies
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: cmake >= 3.14
|
||||||
|
BuildRequires: zip
|
||||||
|
BuildRequires: unzip
|
||||||
|
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: nss-devel >= 3.66
|
||||||
|
BuildRequires: nss-tools >= 3.66
|
||||||
|
BuildRequires: %{java_devel}
|
||||||
|
BuildRequires: jpackage-utils
|
||||||
|
BuildRequires: slf4j
|
||||||
|
BuildRequires: slf4j-jdk14
|
||||||
|
BuildRequires: apache-commons-lang3
|
||||||
|
|
||||||
|
BuildRequires: junit
|
||||||
|
|
||||||
|
Requires: nss >= 3.66
|
||||||
|
Requires: %{java_headless}
|
||||||
|
Requires: jpackage-utils
|
||||||
|
Requires: slf4j
|
||||||
|
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.
|
||||||
|
|
||||||
|
%if %{with javadoc}
|
||||||
|
################################################################################
|
||||||
|
%package javadoc
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
Summary: Java Security Services (JSS) Javadocs
|
||||||
|
Requires: jss = %{version}-%{release}
|
||||||
|
|
||||||
|
%description javadoc
|
||||||
|
This package contains the API documentation for JSS.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
%prep
|
||||||
|
|
||||||
|
%autosetup -n %{name}-%{version}%{?_phase} -p 1
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
%build
|
||||||
|
|
||||||
|
%set_build_flags
|
||||||
|
|
||||||
|
export JAVA_HOME=%{java_home}
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
./build.sh \
|
||||||
|
%{?_verbose:-v} \
|
||||||
|
--work-dir=%{_vpath_builddir} \
|
||||||
|
--java-lib-dir=%{_jnidir} \
|
||||||
|
--jss-lib-dir=%{_libdir}/jss \
|
||||||
|
--version=%{version} \
|
||||||
|
%{!?with_javadoc:--without-javadoc} \
|
||||||
|
%{!?with_test:--without-test} \
|
||||||
|
dist
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
%install
|
||||||
|
|
||||||
|
./build.sh \
|
||||||
|
%{?_verbose:-v} \
|
||||||
|
--work-dir=%{_vpath_builddir} \
|
||||||
|
--install-dir=%{buildroot} \
|
||||||
|
install
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
%files
|
||||||
|
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc jss.html
|
||||||
|
%license MPL-1.1.txt gpl.txt lgpl.txt
|
||||||
|
%{_libdir}/*
|
||||||
|
%{_jnidir}/*
|
||||||
|
|
||||||
|
%if %{with javadoc}
|
||||||
|
################################################################################
|
||||||
|
%files javadoc
|
||||||
|
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_javadocdir}/%{name}/
|
||||||
|
%endif
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
%changelog
|
||||||
|
%changelog
|
||||||
|
* Tue Feb 15 2022 Red Hat PKI Team <rhcs-maint@redhat.com> - 5.0.3-1
|
||||||
|
- Rebase to JSS 5.0.3
|
||||||
|
- Bug 2046023 - CVE-2021-4213 jss: memory leak in TLS connection leads to OOM [rhel-9.0]
|
||||||
|
|
||||||
|
* Wed Feb 02 2022 Red Hat PKI Team <rhcs-maint@redhat.com> - 5.0.2-1
|
||||||
|
- Rebase to JSS 5.0.2
|
||||||
|
- Bug 2029838 - SHA1withRSA being listed in signing certificates while approving certificate via Agent page in browser
|
||||||
|
|
||||||
|
* Fri Nov 19 2021 Red Hat PKI Team <rhcs-maint@redhat.com> - 5.0.1-1
|
||||||
|
- Rebase to JSS 5.0.1
|
||||||
|
|
||||||
|
* Tue Oct 05 2021 Red Hat PKI Team <rhcs-maint@redhat.com> - 5.0.0-1
|
||||||
|
- Rebase to JSS 5.0.0
|
||||||
|
|
||||||
|
* Thu Sep 16 2021 Red Hat PKI Team <rhcs-maint@redhat.com> - 5.0.0-0.5.beta1
|
||||||
|
- Rebase to JSS 5.0.0-beta1
|
||||||
|
|
||||||
|
* Thu Sep 09 2021 Red Hat PKI Team <rhcs-maint@redhat.com> - 5.0.0-0.4.alpha1
|
||||||
|
- Drop BuildRequires and Requires on glassfish-jaxb-api
|
||||||
|
Resolves #2002576
|
||||||
|
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 5.0.0-0.3.alpha1
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Mon Aug 2 2021 Red Hat PKI Team <rhcs-maint@redhat.com> - 5.0.0-0.2
|
||||||
|
- Drop javadoc package
|
||||||
|
|
||||||
|
* Fri Jun 25 2021 Red Hat PKI Team <rhcs-maint@redhat.com> - 5.0.0-0.1
|
||||||
|
- Rebase to JSS 5.0.0-alpha1
|
Loading…
Reference in New Issue
Block a user