From 2e9636124848376996d46486026f3a4584879ff3 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Tue, 13 Feb 2024 07:49:49 -0600 Subject: [PATCH] Remove third party license file The pkcs11.h header file was replaced in the previous revision but the third party license file was not removed. This commit removes that license file. Resolves: RHEL-12453 Signed-off-by: Major Hayden --- python-awscrt.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/python-awscrt.spec b/python-awscrt.spec index aead52f..85d9071 100644 --- a/python-awscrt.spec +++ b/python-awscrt.spec @@ -4,7 +4,7 @@ Python bindings for the AWS Common Runtime} Name: python-awscrt Version: 0.20.2 -Release: 2%{dist} +Release: 3%{dist} Summary: Python bindings for the AWS Common Runtime # All files are licensed under Apache-2.0, except: @@ -55,6 +55,10 @@ Summary: %{summary} rm -fv crt/aws-c-io/source/pkcs11/v2.40/* cp %{SOURCE1} crt/aws-c-io/source/pkcs11/v2.40/ +# Remove the third party license that goes along with +# the removed pkcs11.h header file. +rm -rf crt/aws-c-io/THIRD-PARTY-LICENSES.txt + %generate_buildrequires %pyproject_buildrequires @@ -84,6 +88,9 @@ PYTHONPATH="%{buildroot}%{python3_sitearch}:%{buildroot}%{python3_sitelib}" %{py %changelog +* Tue Feb 13 2024 Major Hayden - 0.20.2-3 +- Remove the third party license file from excluded pkcs11.h + * Mon Feb 12 2024 Major Hayden - 0.20.2-2 - Replacing upstream's pkcs11.h with Simo's public domain version.