* Fri Apr 18 2014 Paul Wouters <pwouters@redhat.com> - 1.3.6-1
- Updated to 1.3.6 (rhbz#1070196)
This commit is contained in:
parent
d46dcc398e
commit
51a0ed814e
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@
|
|||||||
/softhsm-1.3.2.tar.gz
|
/softhsm-1.3.2.tar.gz
|
||||||
/softhsm-1.3.3.tar.gz
|
/softhsm-1.3.3.tar.gz
|
||||||
/softhsm-1.3.5.tar.gz
|
/softhsm-1.3.5.tar.gz
|
||||||
|
/softhsm-1.3.6.tar.gz
|
||||||
|
42
softhsm.spec
42
softhsm.spec
@ -1,14 +1,21 @@
|
|||||||
Summary: Software version of a PKCS#11 Hardware Security Module
|
Summary: Software version of a PKCS#11 Hardware Security Module
|
||||||
Name: softhsm
|
Name: softhsm
|
||||||
Version: 1.3.5
|
Version: 1.3.6
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: BSD
|
License: BSD
|
||||||
Url: http://www.opendnssec.org/
|
Url: http://www.opendnssec.org/
|
||||||
Source: http://www.opendnssec.org/files/source/%{name}-%{version}.tar.gz
|
Source: http://www.opendnssec.org/files/source/%{name}-%{version}.tar.gz
|
||||||
|
Source1: softhsm.module
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
BuildRequires: botan-devel >= 1.8.5 sqlite-devel >= 3.4.2
|
BuildRequires: botan-devel >= 1.8.5 sqlite-devel >= 3.4.2
|
||||||
Requires(pre): shadow-utils
|
Requires(pre): shadow-utils
|
||||||
|
Requires: p11-kit
|
||||||
|
# temp. for p11install
|
||||||
|
Requires: coolkey
|
||||||
|
|
||||||
|
%global softhsm_module "SoftHSM PKCS #11 Module"
|
||||||
|
%global nssdb %{_sysconfdir}/pki/nssdb
|
||||||
|
|
||||||
%description
|
%description
|
||||||
OpenDNSSEC is providing a software implementation of a generic
|
OpenDNSSEC is providing a software implementation of a generic
|
||||||
@ -37,39 +44,56 @@ make check
|
|||||||
%install
|
%install
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
make DESTDIR=%{buildroot} install
|
make DESTDIR=%{buildroot} install
|
||||||
|
mkdir -p %{buildroot}/%{_libdir}/pkcs11
|
||||||
|
#p11-kit install
|
||||||
|
ln -s ../softhsm/libsofthsm.so %{buildroot}/%{_libdir}/pkcs11/
|
||||||
|
install -D %{SOURCE1} %{buildroot}/%{_datadir}/p11-kit/modules/softhsm.module
|
||||||
|
|
||||||
rm %{buildroot}/etc/softhsm.conf.sample
|
rm %{buildroot}/etc/softhsm.conf.sample
|
||||||
rm -f %{buildroot}/%{_libdir}/softhsm/*a
|
rm -f %{buildroot}/%{_libdir}/softhsm/*a
|
||||||
mkdir -p %{buildroot}%{_includedir}/softhsm
|
mkdir -p %{buildroot}%{_includedir}/softhsm
|
||||||
cp src/lib/*.h %{buildroot}%{_includedir}/softhsm
|
cp src/lib/*.h %{buildroot}%{_includedir}/softhsm
|
||||||
mkdir -p %{buildroot}/var/softhsm
|
mkdir -p %{buildroot}/var/softhsm
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf %{buildroot}
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
|
||||||
%config(noreplace) %{_sysconfdir}/softhsm.conf
|
%config(noreplace) %{_sysconfdir}/softhsm.conf
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%dir %{_libdir}/softhsm/
|
%dir %{_libdir}/softhsm/
|
||||||
%{_libdir}/softhsm/libsofthsm.so
|
%{_libdir}/softhsm/libsofthsm.so
|
||||||
|
%{_libdir}/pkcs11/libsofthsm.so
|
||||||
|
%{_datadir}/p11-kit/modules/softhsm.module
|
||||||
%attr(0770,ods,ods) %dir /var/softhsm
|
%attr(0770,ods,ods) %dir /var/softhsm
|
||||||
%doc AUTHORS NEWS README
|
%doc AUTHORS NEWS LICENSE
|
||||||
%{_mandir}/*/*
|
%{_mandir}/*/*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%attr(0755,root,root) %dir %{_includedir}/softhsm
|
%attr(0755,root,root) %dir %{_includedir}/softhsm
|
||||||
%{_includedir}/softhsm/*.h
|
%{_includedir}/softhsm/*.h
|
||||||
%doc README
|
|
||||||
|
|
||||||
%pre
|
%pre
|
||||||
getent group ods >/dev/null || groupadd -r ods
|
getent group ods >/dev/null || groupadd -r ods
|
||||||
getent passwd ods >/dev/null || \
|
getent passwd ods >/dev/null || \
|
||||||
useradd -r -g ods -d /var/softhsm -s /sbin/nologin \
|
useradd -r -g ods -d /var/softhsm -s /sbin/nologin \
|
||||||
-c "DNSSEC private keys owner" ods
|
-c "softhsm private keys owner" ods
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
|
%post
|
||||||
|
isThere=`modutil -rawlist -dbdir %{nssdb} | grep %{softhsm_module} || echo NO`
|
||||||
|
if [ "$isThere" == "NO" ]; then
|
||||||
|
if [ -x %{_bindir}/pk11install ]; then
|
||||||
|
pk11install -p %{nssdb} 'name=%{softhsm_module} library=libsofthsm.so' ||:
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $1 -eq 0 ]; then
|
||||||
|
modutil -delete %{softhsm_module} -dbdir %{nssdb} -force || :
|
||||||
|
fi
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Apr 18 2014 Paul Wouters <pwouters@redhat.com> - 1.3.6-1
|
||||||
|
- Updated to 1.3.6 (rhbz#1070196)
|
||||||
|
- Provide a p11-kit module file (rhbz#1085327)
|
||||||
|
|
||||||
* Sun Nov 03 2013 Paul Wouters <pwouters@redhat.com> - 1.3.5-1
|
* Sun Nov 03 2013 Paul Wouters <pwouters@redhat.com> - 1.3.5-1
|
||||||
- Updated to 1.3.5 (rhbz#987721)
|
- Updated to 1.3.5 (rhbz#987721)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user