fedpkg: Updates to tss2 2.1.1
Signed-off-by: Ken Goldman <kgoldman@us.ibm.com>
This commit is contained in:
parent
a3e4dc4279
commit
18413220cc
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@
|
|||||||
/makeman.sh
|
/makeman.sh
|
||||||
/ibmtss1331.tar.gz
|
/ibmtss1331.tar.gz
|
||||||
/ibmtss1.6.0.tar.gz
|
/ibmtss1.6.0.tar.gz
|
||||||
|
/ibmtss2.1.1.tar.gz
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (ibmtss1.6.0.tar.gz) = 0bbe5282df56790dc2b63f4916977e15818704f6acdc18ee815fdf233d5a5955edfe285131a1e64c1c49d6f0fdde8e8baf97b633866e595df902dccbd4c61d5f
|
SHA512 (ibmtss2.1.1.tar.gz) = ac28d3e714299b01edd0a664e623cea7e8dfb9983279818456c3eeebf26289583fbea333fba66f3df270810cf47b26775a74fab8af2ee027d6f4cdeca392bcb3
|
||||||
|
File diff suppressed because it is too large
Load Diff
60
tss2.spec
60
tss2.spec
@ -5,23 +5,22 @@
|
|||||||
|
|
||||||
%global incname ibmtss
|
%global incname ibmtss
|
||||||
|
|
||||||
Name: tss2
|
Name: tss2
|
||||||
Version: 1.6.0
|
Version: 2.1.1
|
||||||
Release: 8%{?dist}
|
Release: 1%{?dist}
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Summary: IBM's TCG Software Stack (TSS) for TPM 2.0 and related utilities
|
Summary: IBM's TCG Software Stack (TSS) for TPM 2.0 and related utilities
|
||||||
|
|
||||||
License: BSD-3-Clause AND LicenseRef-TCGL
|
License: BSD-3-Clause AND TCGL
|
||||||
URL: http://sourceforge.net/projects/ibmtpm20tss/
|
URL: http://sourceforge.net/projects/ibmtpm20tss/
|
||||||
Source0: https://sourceforge.net/projects/ibmtpm20tss/files/ibmtss%{version}.tar.gz
|
Source0: https://sourceforge.net/projects/ibmtpm20tss/files/ibmtss%{version}.tar.gz
|
||||||
Patch0: tss2-1.6.0-manpage-cleanup.patch
|
|
||||||
|
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: openssl-devel
|
BuildRequires: openssl-devel
|
||||||
Requires: openssl
|
Requires: openssl
|
||||||
|
|
||||||
%description
|
%description
|
||||||
TSS2 is a user space Trusted Computing Group's Software Stack (TSS) for
|
TSS2 is a user space Trusted Computing Group's Software Stack (TSS) for
|
||||||
@ -29,12 +28,12 @@ TPM 2.0. It implements the functionality equivalent to the TCG TSS
|
|||||||
working group's ESAPI, SAPI, and TCTI layers (and perhaps more) but with
|
working group's ESAPI, SAPI, and TCTI layers (and perhaps more) but with
|
||||||
a hopefully far simpler interface.
|
a hopefully far simpler interface.
|
||||||
|
|
||||||
It comes with about 80 "TPM tools" that can be used for rapid prototyping,
|
It comes with about 120 "TPM tools" that can be used for rapid prototyping,
|
||||||
education and debugging.
|
education and debugging.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development libraries and headers for IBM's TSS 2.0
|
Summary: Development libraries and headers for IBM's TSS 2.0
|
||||||
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
|
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Development libraries and headers for IBM's TSS 2.0. You will need this in
|
Development libraries and headers for IBM's TSS 2.0. You will need this in
|
||||||
@ -56,31 +55,36 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
|||||||
|
|
||||||
%ldconfig_scriptlets
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
|
# files in the tss2 package
|
||||||
%files
|
%files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
# becomes /usr/bin/tss*, the command line utilities
|
||||||
%{_bindir}/tss*
|
%{_bindir}/tss*
|
||||||
%{_libdir}/libibmtss.so.*
|
# becomes /usr/lib64
|
||||||
%{_libdir}/libibmtssutils.so.*
|
%{_libdir}/libibmtss.so.2
|
||||||
|
%{_libdir}/libibmtss.so.2.*
|
||||||
|
%{_libdir}/libibmtssutils.so.2
|
||||||
|
%{_libdir}/libibmtssutils.so.2.*
|
||||||
%attr(0644, root, root) %{_mandir}/man1/tss*.1*
|
%attr(0644, root, root) %{_mandir}/man1/tss*.1*
|
||||||
|
|
||||||
|
# files devel is the tss2-devel package
|
||||||
%files devel
|
%files devel
|
||||||
|
# becomes /usr/include/ibmtss, the headers
|
||||||
%{_includedir}/%{incname}
|
%{_includedir}/%{incname}
|
||||||
|
# becomes /usr/lib64
|
||||||
%{_libdir}/libibmtss.so
|
%{_libdir}/libibmtss.so
|
||||||
%{_libdir}/libibmtssutils.so
|
%{_libdir}/libibmtssutils.so
|
||||||
%doc ibmtss.doc
|
%doc ibmtss.docx
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|
||||||
|
* Fri Sep 29 2023 Ken Goldman <kgoldman@us.ibm.com> - 1:2.1.1-1
|
||||||
|
- Updates to release 2.1
|
||||||
|
|
||||||
* Mon Aug 21 2023 Jerry Snitselaar <jsnitsel@redhat.com> - 1:1.6.0-8
|
* Mon Aug 21 2023 Jerry Snitselaar <jsnitsel@redhat.com> - 1:1.6.0-8
|
||||||
- migrated to SPDX license
|
- migrated to SPDX license
|
||||||
resolves: rhbz#2219549
|
- resolves: rhbz#2219549* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.6.0-5
|
||||||
|
|
||||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.6.0-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Mar 03 2023 Jerry Snitselaar <jsnitsel@redhat.com> - 1:1.6.0-6
|
|
||||||
- Rebuild after un-retiring package.
|
|
||||||
|
|
||||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.6.0-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.6.0-4
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.6.0-4
|
||||||
|
Loading…
Reference in New Issue
Block a user