jss/jss.spec

196 lines
6.1 KiB
RPMSpec
Raw Normal View History

2018-05-29 17:26:04 +00:00
################################################################################
Name: jss
2018-05-29 17:26:04 +00:00
################################################################################
2018-05-29 17:26:04 +00:00
Summary: Java Security Services (JSS)
URL: http://www.dogtagpki.org/wiki/JSS
2008-08-05 15:11:36 +00:00
License: MPLv1.1 or GPLv2+ or LGPLv2+
2018-05-29 17:26:04 +00:00
Version: 4.5.3
Release: 1%{?_timestamp}%{?_commit_id}%{?dist}
2018-08-10 20:53:52 +00:00
# global _phase -a1
2018-05-29 17:26:04 +00:00
# To generate the source tarball:
2018-06-15 21:31:35 +00:00
# $ git clone https://github.com/dogtagpki/jss.git
# $ cd jss
# $ git archive \
# --format=tar.gz \
# --prefix jss-VERSION/ \
# -o jss-VERSION.tar.gz \
# <version tag>
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
# Patch1: jss-pki-sync-netscape-security-util-Utils.patch
2018-07-11 01:23:47 +00:00
################################################################################
# Build Dependencies
################################################################################
2018-05-29 17:26:04 +00:00
# autosetup
BuildRequires: git
BuildRequires: make
BuildRequires: cmake
2018-05-29 17:26:04 +00:00
2018-07-11 01:23:47 +00:00
BuildRequires: gcc-c++
BuildRequires: nspr-devel >= 4.13.1
BuildRequires: nss-devel >= 3.30
BuildRequires: nss-tools >= 3.30
BuildRequires: java-devel
2018-05-29 17:26:04 +00:00
BuildRequires: jpackage-utils
2018-06-15 21:31:35 +00:00
BuildRequires: slf4j
BuildRequires: glassfish-jaxb-api
2018-07-11 01:23:47 +00:00
%if 0%{?rhel} && 0%{?rhel} <= 7
# no slf4j-jdk14
%else
2018-06-15 21:31:35 +00:00
BuildRequires: slf4j-jdk14
%endif
BuildRequires: apache-commons-lang
2018-06-22 14:57:30 +00:00
BuildRequires: apache-commons-codec
2018-06-15 21:31:35 +00:00
2018-01-08 14:13:53 +00:00
%if 0%{?fedora} >= 25 || 0%{?rhel} > 7
BuildRequires: perl-interpreter
%endif
2018-05-29 17:26:04 +00:00
Requires: nss >= 3.30
2018-05-29 17:26:04 +00:00
Requires: java-headless
Requires: jpackage-utils
2018-06-15 21:31:35 +00:00
Requires: slf4j
Requires: glassfish-jaxb-api
2018-07-11 01:23:47 +00:00
%if 0%{?rhel} && 0%{?rhel} <= 7
# no slf4j-jdk14
%else
2018-06-15 21:31:35 +00:00
Requires: slf4j-jdk14
%endif
Requires: apache-commons-lang
2018-06-22 14:57:30 +00:00
Requires: apache-commons-codec
2018-07-11 01:23:47 +00:00
2018-08-10 20:53:52 +00:00
Conflicts: ldapjdk < 4.20
Conflicts: idm-console-framework < 1.2
2018-08-07 15:19:08 +00:00
Conflicts: tomcatjss < 7.3.4
2018-08-10 20:53:52 +00:00
Conflicts: pki-base < 10.6.5
%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.
2018-05-29 17:26:04 +00:00
################################################################################
%package javadoc
2018-05-29 17:26:04 +00:00
################################################################################
Summary: Java Security Services (JSS) Javadocs
Requires: jss = %{version}-%{release}
%description javadoc
This package contains the API documentation for JSS.
2018-05-29 17:26:04 +00:00
################################################################################
%prep
2018-06-15 21:31:35 +00:00
%autosetup -n %{name}-%{version}%{?_phase} -p 1 -S git
2018-05-29 17:26:04 +00:00
################################################################################
%build
%set_build_flags
[ -z "$JAVA_HOME" ] && export JAVA_HOME=%{_jvmdir}/java
2018-06-15 21:31:35 +00:00
# Enable compiler optimizations
export BUILD_OPT=1
# Generate symbolic info for debuggers
CFLAGS="-g $RPM_OPT_FLAGS"
export CFLAGS
# The Makefile is not thread-safe
rm -rf build && mkdir -p build && cd build
%cmake \
-DJAVA_HOME=%{java_home} \
-DJAVA_LIB_INSTALL_DIR=%{_jnidir} \
..
%{__make} all test javadoc
2018-05-29 17:26:04 +00:00
################################################################################
%install
# There is no install target so we'll do it by hand
# jars
install -d -m 0755 $RPM_BUILD_ROOT%{_jnidir}
install -m 644 build/jss4.jar ${RPM_BUILD_ROOT}%{_jnidir}/jss4.jar
# We have to use the name libjss4.so because this is dynamically
# loaded by the jar file.
install -d -m 0755 $RPM_BUILD_ROOT%{_libdir}/jss
install -m 0755 build/libjss4.so ${RPM_BUILD_ROOT}%{_libdir}/jss/
pushd ${RPM_BUILD_ROOT}%{_libdir}/jss
ln -fs %{_jnidir}/jss4.jar jss4.jar
popd
# javadoc
install -d -m 0755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
cp -rp build/docs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
2018-06-15 21:31:35 +00:00
cp -p jss.html $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
cp -p *.txt $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
# No ldconfig is required since this library is loaded by Java itself.
2018-05-29 17:26:04 +00:00
################################################################################
%files
2018-05-29 17:26:04 +00:00
%defattr(-,root,root,-)
2018-06-15 21:31:35 +00:00
%doc jss.html MPL-1.1.txt gpl.txt lgpl.txt
2018-07-11 01:23:47 +00:00
%{_libdir}/*
%{_jnidir}/*
2018-05-29 17:26:04 +00:00
################################################################################
%files javadoc
2018-05-29 17:26:04 +00:00
%defattr(-,root,root,-)
2018-07-11 01:23:47 +00:00
%{_javadocdir}/%{name}-%{version}/
2018-05-29 17:26:04 +00:00
################################################################################
%changelog
* Fri Feb 01 2019 Dogtag PKI Team <pki-devel@redhat.com> 4.5.2-3
- Include nuxwdog patch for netscape.security.util.Utils from PKI
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Mon Jan 14 2019 Dogtag PKI Team <pki-devel@redhat.com> 4.5.2-1
- Rebased to JSS 4.5.2
* Thu Nov 29 2018 Dogtag PKI Team <pki-devel@redhat.com> 4.5.1-1
- Rebased to JSS 4.5.1
- Red Hat Bugzilla #1582323 - DER encoding error for enumerated types with a value of zero
- Red Hat Bugzilla #1534765 - javadoc for org.mozilla.jss.pkix.cms.SignedData.getSignerInfos() is incorrect
2018-08-10 20:53:52 +00:00
* Fri Aug 10 2018 Dogtag PKI Team <pki-devel@redhat.com> 4.5.0-1
- Rebased to JSS 4.5.0
* Tue Aug 07 2018 Dogtag PKI Team <pki-devel@redhat.com> 4.5.0-0.6
2018-08-07 15:19:08 +00:00
- Rebased to JSS 4.5.0-b1
2018-08-10 20:53:52 +00:00
* Tue Aug 07 2018 Dogtag PKI Team <pki-devel@redhat.com> 4.5.0-0.5
2018-08-07 15:19:08 +00:00
- Red Hat Bugzilla #1612063 - Do not override system crypto policy (support TLS 1.3)
2018-07-11 01:23:47 +00:00
* Fri Jul 20 2018 Dogtag PKI Team <pki-devel@redhat.com> 4.5.0-0.4
- Rebased to JSS 4.5.0-a4
- Red Hat Bugzilla #1604462 - jss: FTBFS in Fedora rawhide
2018-05-29 17:26:04 +00:00
2018-08-10 20:53:52 +00:00
* Thu Jul 05 2018 Dogtag PKI Team <pki-devel@redhat.com> 4.5.0-0.3
2018-07-05 15:47:39 +00:00
- Rebased to JSS 4.5.0-a3
2018-06-22 14:57:30 +00:00
* Fri Jun 22 2018 Dogtag PKI Team <pki-devel@redhat.com> 4.5.0-0.2
- Rebased to JSS 4.5.0-a2
2018-06-15 21:31:35 +00:00
* Fri Jun 15 2018 Dogtag PKI Team <pki-devel@redhat.com> 4.5.0-0.1
- Rebased to JSS 4.5.0-a1