tpm2-pkcs11/tpm2-pkcs11.spec

118 lines
3.4 KiB
RPMSpec
Raw Normal View History

2019-10-11 09:02:55 +00:00
%global commit0 0b7ceffb81dc5d9863fa6e4bdae5cf393dfd038a
2019-02-20 14:19:50 +00:00
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
Name: tpm2-pkcs11
Version: 0
2019-10-11 09:02:55 +00:00
Release: 0.8.20191011git%{shortcommit0}%{?dist}
2019-02-20 14:19:50 +00:00
Summary: PKCS#11 interface for TPM 2.0 hardware
License: BSD
URL: https://github.com/tpm2-software/tpm2-pkcs11
Source0: https://github.com/tpm2-software/tpm2-pkcs11/archive/%{commit0}.tar.gz#/%{name}-%{version}-git%{shortcommit0}.tar.gz
BuildRequires: automake
BuildRequires: libtool
BuildRequires: gcc
BuildRequires: make
BuildRequires: tpm2-tss-devel
BuildRequires: tpm2-tools
BuildRequires: python3
BuildRequires: openssl-devel
BuildRequires: autoconf-archive
BuildRequires: sqlite-devel
BuildRequires: libgcrypt-devel
BuildRequires: p11-kit-devel
# for tests
BuildRequires: libcmocka-devel
BuildRequires: dbus-daemon
# for tools
BuildRequires: python3-devel
2019-04-23 12:38:22 +00:00
BuildRequires: python3-pyyaml
BuildRequires: python3-cryptography
%package tools
2019-10-11 09:02:55 +00:00
# Automatic generator does not work for me even though the requires.txt is in place
Requires: python3-pyyaml
Requires: python3-cryptography
Summary: The tools required to setup and configure TPM2 for PKCS#11
2019-02-20 14:19:50 +00:00
%description
PKCS #11 is a Public-Key Cryptography Standard that defines a standard method
to access cryptographic services from tokens/ devices such as hardware security
modules (HSM), smart cards, etc. In this project we intend to use a TPM2 device
as the cryptographic token.
%description tools
The tools required to setup and configure TPM2 for PKCS#11.
2019-02-20 14:19:50 +00:00
%prep
%setup -q -n tpm2-pkcs11-%{commit0}
%build
./bootstrap
%configure --enable-unit
make %{?_smp_mflags}
cd tools
%py3_build
2019-02-20 14:19:50 +00:00
%check
make check
cd tools
%{__python3} setup.py test
2019-02-20 14:19:50 +00:00
%install
%make_install
rm $RPM_BUILD_ROOT%{_libdir}/pkgconfig/tpm2-pkcs11.pc
[ -f $RPM_BUILD_ROOT%{_libdir}/pkcs11/libtpm2_pkcs11.la ] && \
rm $RPM_BUILD_ROOT%{_libdir}/pkcs11/libtpm2_pkcs11.la
2019-10-11 09:02:55 +00:00
[ -f $RPM_BUILD_ROOT%{_libdir}/pkcs11/libtpm2_pkcs11.a ] && \
rm $RPM_BUILD_ROOT%{_libdir}/pkcs11/libtpm2_pkcs11.a
cd tools
%py3_install
sed -i "s/python/python3/g" tpm2_ptool
install -Dpm 755 tpm2_ptool $RPM_BUILD_ROOT%{_bindir}/tpm2_ptool
2019-02-20 14:19:50 +00:00
%files
%license LICENSE
%{_datadir}/p11-kit/modules/tpm2_pkcs11.module
%%dir %{_libdir}/pkcs11
%{_libdir}/pkcs11/libtpm2_pkcs11.so
%{_libdir}/pkcs11/libtpm2_pkcs11.so.0*
%files tools
%{_bindir}/tpm2_ptool
%{python3_sitelib}/tpm2_pkcs11/*
%{python3_sitelib}/tpm2_pkcs11_tools-*/*
2019-02-20 14:19:50 +00:00
%changelog
2019-10-11 09:02:55 +00:00
* Fri Oct 11 2019 Jakub Jelen <jjelen@redhat.com> - 0-0.3.20191011git0b7ceff
- Update to current git version
- Fix missing requires (#1757179)
2019-10-03 12:39:38 +00:00
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0-0.7.20190813git2f3058c
- Rebuilt for Python 3.8.0rc1 (#1748018)
2019-08-21 17:16:28 +00:00
* Wed Aug 21 2019 Miro Hrončok <mhroncok@redhat.com> - 0-0.6.20190813git2f3058c
- Rebuilt for Python 3.8
* Tue Aug 20 2019 Peter Robinson <pbrobinson@fedoraproject.org> 0-0.5.20190813git2f3058c
- Update to new git snapshot for better use of tss2-tools 4.0 features
2019-08-19 09:07:12 +00:00
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0-0.4.20190219git1e84553
- Rebuilt for Python 3.8
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.3.20190219git1e84553
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2019-04-23 11:00:17 +00:00
* Tue Apr 23 2019 Jakub Jelen <jjelen@redhat.com> - 0-0.2.20190219git1e84553
- Package missing python tool for TPM2 initialization
- Update to current version from github
2019-02-20 14:19:50 +00:00
* Tue Feb 19 2019 Jakub Jelen <jjelen@redhat.com> - 0-0.1.20190219git836d715
- Initial release for Fedora