import tpm2-tss-2.3.2-2.el8
This commit is contained in:
parent
9b7eb82794
commit
faeb832d1c
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/tpm2-tss-2.0.0.tar.gz
|
SOURCES/tpm2-tss-2.3.2.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
761801d46ed538949a418844a33603500e637433 SOURCES/tpm2-tss-2.0.0.tar.gz
|
c24ce8b20a8686ada775239389292f6d78020668 SOURCES/tpm2-tss-2.3.2.tar.gz
|
||||||
|
84
SOURCES/0001-man-Clean-up-libmandoc-parser-warnings.patch
Normal file
84
SOURCES/0001-man-Clean-up-libmandoc-parser-warnings.patch
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
From d696645b147eaac5d5c90ff3dca672e52d89d7f0 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jerry Snitselaar <jsnitsel@redhat.com>
|
||||||
|
Date: Mon, 27 Apr 2020 12:16:47 -0700
|
||||||
|
Subject: [PATCH] man: Clean up libmandoc parser warnings
|
||||||
|
|
||||||
|
- Fix typo in Tss2_Tcti_Device_Init.3.in.
|
||||||
|
- Remove .RE macros that had no preceding .RS macro in Tss2_TctiLdr_Initialize.3.in.
|
||||||
|
Replace .RE .sp with .LP.
|
||||||
|
- ' is a control character, format function names to be similar to
|
||||||
|
other manpages, and use \(oq and \(cq for quotes instead in tss2-tctildr.7.in.
|
||||||
|
|
||||||
|
Signed-off-by: Jerry Snitselaar <jsnitsel@redhat.com>
|
||||||
|
---
|
||||||
|
man/Tss2_TctiLdr_Initialize.3.in | 6 ++----
|
||||||
|
man/Tss2_Tcti_Device_Init.3.in | 2 +-
|
||||||
|
man/tss2-tctildr.7.in | 12 ++++++++----
|
||||||
|
3 files changed, 11 insertions(+), 9 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/man/Tss2_TctiLdr_Initialize.3.in b/man/Tss2_TctiLdr_Initialize.3.in
|
||||||
|
index 8e5fffaa247b..eb5ea1f8315f 100644
|
||||||
|
--- a/man/Tss2_TctiLdr_Initialize.3.in
|
||||||
|
+++ b/man/Tss2_TctiLdr_Initialize.3.in
|
||||||
|
@@ -65,8 +65,7 @@ libtss2-tcti-tabrmd.so.0
|
||||||
|
libtss2-tcti-device.so.0
|
||||||
|
.IP \[bu]
|
||||||
|
libtss2-tcti-mssim.so.0
|
||||||
|
-.RE
|
||||||
|
-.sp
|
||||||
|
+.LP
|
||||||
|
When the
|
||||||
|
.I name
|
||||||
|
string is neither NULL nor the empty string the implementation will attempt
|
||||||
|
@@ -81,8 +80,7 @@ name with the following permutations:
|
||||||
|
libtss2-tcti-<name>.so.0
|
||||||
|
.IP \[bu]
|
||||||
|
libtss2-tcti-<name>.so
|
||||||
|
-.RE
|
||||||
|
-.sp
|
||||||
|
+.LP
|
||||||
|
The
|
||||||
|
.I config
|
||||||
|
string is not interpreted by the TctiLdr init functions and is passed
|
||||||
|
diff --git a/man/Tss2_Tcti_Device_Init.3.in b/man/Tss2_Tcti_Device_Init.3.in
|
||||||
|
index 3cd2eed7fb0b..122ede1536bc 100644
|
||||||
|
--- a/man/Tss2_Tcti_Device_Init.3.in
|
||||||
|
+++ b/man/Tss2_Tcti_Device_Init.3.in
|
||||||
|
@@ -86,7 +86,7 @@ is returned if any parameters contain unexpected values.
|
||||||
|
is returned if any parameters are NULL when they should not be.
|
||||||
|
.B TSS2_TCTI_RC_BAD_CONTEXT
|
||||||
|
is returned if the size of the provided
|
||||||
|
-.i tctiContext
|
||||||
|
+.I tctiContext
|
||||||
|
is insufficient.
|
||||||
|
.SH EXAMPLE
|
||||||
|
TCTI initialization fragment:
|
||||||
|
diff --git a/man/tss2-tctildr.7.in b/man/tss2-tctildr.7.in
|
||||||
|
index a907aec0cd64..7432316ec6bb 100644
|
||||||
|
--- a/man/tss2-tctildr.7.in
|
||||||
|
+++ b/man/tss2-tctildr.7.in
|
||||||
|
@@ -10,13 +10,17 @@ instances.
|
||||||
|
.SH DESCRIPTION
|
||||||
|
The TCTI dynamic loading and initialization protocol requires a lot of
|
||||||
|
boilerplate code. To reduce duplication the tss2-tctildr library adds the
|
||||||
|
-'Tss2_TctiLdr_Initialize', 'Tss2_TctiLdr_Initialize_Ex' and
|
||||||
|
-'Tss2_TctiLdr_Finalize' functions to abstract away the machinery required
|
||||||
|
+.BR Tss2_TctiLdr_Initialize (),
|
||||||
|
+.BR Tss2_TctiLdr_Initialize_Ex (),
|
||||||
|
+and
|
||||||
|
+.BR Tss2_TctiLdr_Finalize ()
|
||||||
|
+functions to abstract away the machinery required
|
||||||
|
to load, initialize, and finalize a TCTI context.
|
||||||
|
|
||||||
|
To assist in the discovery of TCTIs this library provides the
|
||||||
|
-'Tss2_TctiLdr_GetInfo' function. This function, paired with a 'free'
|
||||||
|
-function to free the memory allocated by 'GetInfo', provides a simple
|
||||||
|
+.BR Tss2_TctiLdr_GetInfo ()
|
||||||
|
+function. This function, paired with a \(oqfree\(cq
|
||||||
|
+function to free the memory allocated by \(oqGetInfo\(cq, provides a simple
|
||||||
|
query interface for discovery of the available and default TCTIs
|
||||||
|
available to the tss2-tctildr implementation
|
||||||
|
|
||||||
|
--
|
||||||
|
2.24.0
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
Name: tpm2-tss
|
Name: tpm2-tss
|
||||||
Version: 2.0.0
|
Version: 2.3.2
|
||||||
Release: 4%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: TPM2.0 Software Stack
|
Summary: TPM2.0 Software Stack
|
||||||
|
|
||||||
# The entire source code is under BSD except implementation.h and tpmb.h which
|
# The entire source code is under BSD except implementation.h and tpmb.h which
|
||||||
@ -8,16 +8,20 @@ Summary: TPM2.0 Software Stack
|
|||||||
License: BSD
|
License: BSD
|
||||||
URL: https://github.com/tpm2-software/tpm2-tss
|
URL: https://github.com/tpm2-software/tpm2-tss
|
||||||
Source0: https://github.com/tpm2-software/tpm2-tss/releases/download/%{version}/%{name}-%{version}.tar.gz
|
Source0: https://github.com/tpm2-software/tpm2-tss/releases/download/%{version}/%{name}-%{version}.tar.gz
|
||||||
|
# patch submitted upstream https://github.com/tpm2-software/tpm2-tss/pull/1707
|
||||||
|
Patch0: 0001-man-Clean-up-libmandoc-parser-warnings.patch
|
||||||
|
|
||||||
%global udevrules_prefix 60-
|
%global udevrules_prefix 60-
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: doxygen
|
||||||
BuildRequires: autoconf-archive
|
BuildRequires: autoconf-archive
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: systemd
|
BuildRequires: systemd
|
||||||
BuildRequires: libgcrypt-devel
|
BuildRequires: libgcrypt-devel
|
||||||
|
BuildRequires: openssl-devel
|
||||||
|
|
||||||
%description
|
%description
|
||||||
tpm2-tss is a software stack supporting Trusted Platform Module(TPM) 2.0 system
|
tpm2-tss is a software stack supporting Trusted Platform Module(TPM) 2.0 system
|
||||||
@ -25,7 +29,7 @@ APIs. It sits between TPM driver and applications, providing TPM2.0 specified
|
|||||||
APIs for applications to access TPM module through kernel TPM drivers.
|
APIs for applications to access TPM module through kernel TPM drivers.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{name}-%{version}
|
%autosetup -p1 -n %{name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Use built-in tpm-udev.rules, with specified installation path and prefix.
|
# Use built-in tpm-udev.rules, with specified installation path and prefix.
|
||||||
@ -47,6 +51,8 @@ find %{buildroot}%{_libdir} -type f -name \*.la -delete
|
|||||||
%{_libdir}/libtss2-mu.so.*
|
%{_libdir}/libtss2-mu.so.*
|
||||||
%{_libdir}/libtss2-sys.so.*
|
%{_libdir}/libtss2-sys.so.*
|
||||||
%{_libdir}/libtss2-esys.so.*
|
%{_libdir}/libtss2-esys.so.*
|
||||||
|
%{_libdir}/libtss2-rc.so.*
|
||||||
|
%{_libdir}/libtss2-tctildr.so.*
|
||||||
%{_libdir}/libtss2-tcti-device.so.*
|
%{_libdir}/libtss2-tcti-device.so.*
|
||||||
%{_libdir}/libtss2-tcti-mssim.so.*
|
%{_libdir}/libtss2-tcti-mssim.so.*
|
||||||
%{_udevrulesdir}/%{udevrules_prefix}tpm-udev.rules
|
%{_udevrulesdir}/%{udevrules_prefix}tpm-udev.rules
|
||||||
@ -65,14 +71,19 @@ use tpm2-tss.
|
|||||||
%{_libdir}/libtss2-mu.so
|
%{_libdir}/libtss2-mu.so
|
||||||
%{_libdir}/libtss2-sys.so
|
%{_libdir}/libtss2-sys.so
|
||||||
%{_libdir}/libtss2-esys.so
|
%{_libdir}/libtss2-esys.so
|
||||||
|
%{_libdir}/libtss2-rc.so
|
||||||
|
%{_libdir}/libtss2-tctildr.so
|
||||||
|
%{_libdir}/libtss2-tcti-default.so
|
||||||
%{_libdir}/libtss2-tcti-device.so
|
%{_libdir}/libtss2-tcti-device.so
|
||||||
%{_libdir}/libtss2-tcti-mssim.so
|
%{_libdir}/libtss2-tcti-mssim.so
|
||||||
%{_libdir}/pkgconfig/tss2-mu.pc
|
%{_libdir}/pkgconfig/tss2-mu.pc
|
||||||
%{_libdir}/pkgconfig/tss2-sys.pc
|
%{_libdir}/pkgconfig/tss2-sys.pc
|
||||||
%{_libdir}/pkgconfig/tss2-esys.pc
|
%{_libdir}/pkgconfig/tss2-esys.pc
|
||||||
|
%{_libdir}/pkgconfig/tss2-rc.pc
|
||||||
|
%{_libdir}/pkgconfig/tss2-tctildr.pc
|
||||||
%{_libdir}/pkgconfig/tss2-tcti-device.pc
|
%{_libdir}/pkgconfig/tss2-tcti-device.pc
|
||||||
%{_libdir}/pkgconfig/tss2-tcti-mssim.pc
|
%{_libdir}/pkgconfig/tss2-tcti-mssim.pc
|
||||||
%{_mandir}/man3/Tss2*.3.gz
|
%{_mandir}/man3/*.3.gz
|
||||||
%{_mandir}/man7/tss2*.7.gz
|
%{_mandir}/man7/tss2*.7.gz
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
@ -80,6 +91,18 @@ use tpm2-tss.
|
|||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Apr 27 2020 Jerry Snitselaar <jsnitsel@redhat.com> - 2.3.2-2
|
||||||
|
- Clean up libmandoc parser errors.
|
||||||
|
resolves: rhbz#1789684
|
||||||
|
|
||||||
|
* Thu Feb 20 2020 Jerry Snitselaar <jsnitsel@redhat.com> - 2.3.2-1
|
||||||
|
- Update to 2.3.2 release
|
||||||
|
resolves: rhbz#1789684
|
||||||
|
|
||||||
|
* Tue May 28 2019 Jerry Snitselaar <jsnitsel@redhat.com> - 2.0.0-5
|
||||||
|
- Add CI gating support
|
||||||
|
resolves: rhbz#1682418
|
||||||
|
|
||||||
* Mon Jul 23 2018 Jerry Snitselaar <jsnitsel@redhat.com> - 2.0.0-4
|
* Mon Jul 23 2018 Jerry Snitselaar <jsnitsel@redhat.com> - 2.0.0-4
|
||||||
- Remove TCGL from spec license list.
|
- Remove TCGL from spec license list.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user