From b37482f98c3f3e15df41cd128e44540bd24b0370 Mon Sep 17 00:00:00 2001 From: Robbie Harwood Date: Wed, 17 Jan 2018 16:44:51 +0000 Subject: [PATCH 1/4] Minor changes to enable el6 building Not incrementing NVR because it's just moving the LICENSE file handling around. --- python3-gssapi.spec | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/python3-gssapi.spec b/python3-gssapi.spec index 105f605..e30f598 100644 --- a/python3-gssapi.spec +++ b/python3-gssapi.spec @@ -63,14 +63,11 @@ Requires: %{python3}-decorator %files -n %{python3}-gssapi -%doc README.txt -%license LICENSE.txt +%doc README.txt LICENSE.txt %{python3_sitearch}/gssapi %{python3_sitearch}/gssapi-%{version}-py%{python3_version}.egg-info %changelog * Thu Jan 04 2017 Robbie Harwood - 1.3.0-1 -- Initial import -- Resolves: #1529318 -- Resolves: #1531288 +- Minor changes to el7 to enable building on el6 From e231873853ade8cba8d80712a9fd349d8adc6714 Mon Sep 17 00:00:00 2001 From: Robbie Harwood Date: Tue, 24 Sep 2019 19:16:15 +0000 Subject: [PATCH 2/4] Try again at making the specfile work Resolves: #1755043 --- python3-gssapi.spec | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/python3-gssapi.spec b/python3-gssapi.spec index e30f598..497a426 100644 --- a/python3-gssapi.spec +++ b/python3-gssapi.spec @@ -16,6 +16,9 @@ Source0: https://github.com/pythongssapi/%{mname}/releases/download/v%{ve # Patches +Requires: %{python3}-six +Requires: %{python3}-decorator + BuildRequires: krb5-devel >= 1.10 BuildRequires: krb5-libs >= 1.10 BuildRequires: %{python3}-devel @@ -37,12 +40,6 @@ RFC 2743, as well as multiple extensions. %description %_description -%package -n %{python3}-gssapi -Summary: %summary -Requires: %{python3}-six -Requires: %{python3}-decorator -%description -n %{python3}-gssapi %_description - %prep %setup -q -n %{mname}-%{version} @@ -69,5 +66,9 @@ Requires: %{python3}-decorator %changelog -* Thu Jan 04 2017 Robbie Harwood - 1.3.0-1 +* Tue Sep 24 2019 Robbie Harwood - 1.3.0-2 +- Try again at making the specfile work +- Resolves: #1755043 + +* Thu Jan 10 2017 Robbie Harwood - 1.3.0-1 - Minor changes to el7 to enable building on el6 From b50ec89ad3aadfbf4d019f255ad764ca3cb208a7 Mon Sep 17 00:00:00 2001 From: Robbie Harwood Date: Tue, 24 Sep 2019 19:24:00 +0000 Subject: [PATCH 3/4] More of the same Resolves: #1755043 --- python3-gssapi.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/python3-gssapi.spec b/python3-gssapi.spec index 497a426..47c558b 100644 --- a/python3-gssapi.spec +++ b/python3-gssapi.spec @@ -7,7 +7,7 @@ Name: python3-gssapi Version: 1.3.0 -Release: 1%{?dist} +Release: 3%{?dist} Summary: Python 3 Bindings for GSSAPI (RFC 2743/2744 and extensions) License: ISC @@ -59,13 +59,17 @@ RFC 2743, as well as multiple extensions. %endif -%files -n %{python3}-gssapi +%files %doc README.txt LICENSE.txt %{python3_sitearch}/gssapi %{python3_sitearch}/gssapi-%{version}-py%{python3_version}.egg-info %changelog +* Tue Sep 24 2019 Robbie Harwood - 1.3.0-3 +- More of the same +- Resolves: #1755043 + * Tue Sep 24 2019 Robbie Harwood - 1.3.0-2 - Try again at making the specfile work - Resolves: #1755043 From 1c8a872cb3e224b9ec65e83ca2a92d4312632a4a Mon Sep 17 00:00:00 2001 From: Robbie Harwood Date: Thu, 31 Oct 2019 17:02:22 +0000 Subject: [PATCH 4/4] Fix workaround so that we provide python34-gssapi Resolves: #1763080 --- python3-gssapi.spec | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/python3-gssapi.spec b/python3-gssapi.spec index 47c558b..4cd71e1 100644 --- a/python3-gssapi.spec +++ b/python3-gssapi.spec @@ -7,7 +7,7 @@ Name: python3-gssapi Version: 1.3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Python 3 Bindings for GSSAPI (RFC 2743/2744 and extensions) License: ISC @@ -16,9 +16,6 @@ Source0: https://github.com/pythongssapi/%{mname}/releases/download/v%{ve # Patches -Requires: %{python3}-six -Requires: %{python3}-decorator - BuildRequires: krb5-devel >= 1.10 BuildRequires: krb5-libs >= 1.10 BuildRequires: %{python3}-devel @@ -40,6 +37,12 @@ RFC 2743, as well as multiple extensions. %description %_description +%package -n %{python3}-gssapi +Summary: %summary +Requires: %{python3}-six +Requires: %{python3}-decorator +%description -n %{python3}-gssapi %_description + %prep %setup -q -n %{mname}-%{version} @@ -59,18 +62,22 @@ RFC 2743, as well as multiple extensions. %endif -%files +%files -n %{python3}-gssapi %doc README.txt LICENSE.txt %{python3_sitearch}/gssapi %{python3_sitearch}/gssapi-%{version}-py%{python3_version}.egg-info %changelog -* Tue Sep 24 2019 Robbie Harwood - 1.3.0-3 +* Thu Oct 31 2019 Robbie Harwood - 1.3.0-4 +- Fix workaround so that we provide python34-gssapi +- Resolves: #1763080 + +* Tue Sep 24 2019 Robbie Harwood - 1.3.0-3 - More of the same - Resolves: #1755043 -* Tue Sep 24 2019 Robbie Harwood - 1.3.0-2 +* Tue Sep 24 2019 Robbie Harwood - 1.3.0-2 - Try again at making the specfile work - Resolves: #1755043