9eff276328
This commit updates tpm2-tss to version 1.2.0. It also does some cleanups such as changing the SPEC file permission bits, that were not correct and renames the project prefix from TPM2.0-TSS to tpm2-tss, that is the name used in the upstream project now. tpm2-tss 1.2.0 does not build correctly on Fedora with GCC7, this has been fixed in tpm2-tss master with commits: 64862cb1f7a0 ("implementation.h: Remove preprocessor magic to selectively enable commands.") 87feb17d81b8 ("implementation.h: Remove preprocessor magic to selectively enable algorithms.") But those can't be easily cherry picked for 1.2.0, so this commit disables the GCC7 int-in-bool-context warning instead. Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
104 lines
3.3 KiB
RPMSpec
104 lines
3.3 KiB
RPMSpec
Name: tpm2-tss
|
|
Version: 1.2.0
|
|
Release: 1%{?dist}
|
|
Summary: TPM2.0 Software Stack
|
|
|
|
%global pkg_prefix tpm2-tss
|
|
|
|
# The entire source code is under BSD except implementation.h and tpmb.h which
|
|
# is under TCGL(Trusted Computing Group License).
|
|
License: BSD and TCGL
|
|
URL: https://github.com/01org/tpm2-tss
|
|
Source0: https://github.com/01org/tpm2-tss/archive/%{version}.tar.gz#/%{pkg_prefix}-%{version}.tar.gz
|
|
|
|
BuildRequires: gcc
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: autoconf-archive
|
|
BuildRequires: libtool
|
|
BuildRequires: pkgconfig
|
|
|
|
# this package does not support big endian arch so far,
|
|
# and has been verified only on Intel platforms.
|
|
ExclusiveArch: %{ix86} x86_64
|
|
|
|
%description
|
|
tpm2-tss is a software stack supporting Trusted Platform Module(TPM) 2.0 system
|
|
APIs. It sits between TPM driver and applications, providing TPM2.0 specified
|
|
APIs for applications to access TPM module through kernel TPM drivers.
|
|
|
|
%prep
|
|
%autosetup -n %{pkg_prefix}-%{version}
|
|
./bootstrap
|
|
|
|
|
|
%build
|
|
# This flag is only needed for this version, upstream has been fixed and builds correctly.
|
|
%configure EXTRA_CFLAGS="-Wno-int-in-bool-context" --disable-static --disable-silent-rules
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot}%{_libdir} -type f -name \*.la -delete
|
|
|
|
%files
|
|
%doc README.md CHANGELOG.md
|
|
%license LICENSE
|
|
%{_libdir}/libsapi.so.*
|
|
%{_libdir}/libtcti-device.so.*
|
|
%{_libdir}/libtcti-socket.so.*
|
|
|
|
|
|
%package devel
|
|
Summary: Headers and libraries for building apps that use tpm2-tss
|
|
Requires: %{name}%{_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
This package contains headers and libraries required to build applications that
|
|
use tpm2-tss.
|
|
|
|
%files devel
|
|
%{_includedir}/sapi/
|
|
%{_includedir}/tcti/
|
|
%{_libdir}/libsapi.so
|
|
%{_libdir}/libtcti-device.so
|
|
%{_libdir}/libtcti-socket.so
|
|
%{_libdir}/pkgconfig/sapi.pc
|
|
%{_libdir}/pkgconfig/tcti-device.pc
|
|
%{_libdir}/pkgconfig/tcti-socket.pc
|
|
%{_mandir}/man3/Init*Tcti.3.gz
|
|
%{_mandir}/man7/tcti-*.7.gz
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%changelog
|
|
* Mon Aug 28 2017 Javier Martinez Canillas <javierm@redhat.com> - 1.2.0-1
|
|
- Update to 1.2.0 release
|
|
- Use tpm2-tss instead of TPM2.0-TSS as prefix since project name changed
|
|
- Fix SPEC file access mode
|
|
- Include new man pages in %files directive
|
|
|
|
* Fri Aug 18 2017 Javier Martinez Canillas <javierm@redhat.com> - 1.1.0-3
|
|
- Remove unneeded source tarballs (RHBZ#1482828)
|
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
* Wed Jul 26 2017 Sun Yunying <yunying.sun@intel.com> - 1.1.0-1
|
|
- Update to 1.1.0 release
|
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
* Mon Dec 12 2016 Sun Yunying <yunying.sun@intel.com> - 1.0-2
|
|
- Remove global macro pkg_version to avoid duplicate of version
|
|
- Use ExclusiveArch instead of ExcludeArch
|
|
- Use less wildcard in %files section to be more specific
|
|
- Add trailing slash at end of added directory in %file section
|
|
- Remove autoconf/automake/pkgconfig(cmocka) from BuildRequires
|
|
- Increase release version to 2
|
|
|
|
* Fri Dec 2 2016 Sun Yunying <yunying.sun@intel.com> - 1.0-1
|
|
- Initial version of the package
|