Blame SPECS/python-gssapi.spec

8395ad
# NOTE: tests are disabled since should_be has not yet been packaged.
8395ad
8395ad
Name:           python-gssapi
8395ad
Version:        1.5.1
8395ad
Release:        5%{?dist}
8395ad
Summary:        Python Bindings for GSSAPI (RFC 2743/2744 and extensions)
8395ad
8395ad
License:        ISC
8395ad
URL:            https://github.com/pythongssapi/python-gssapi
8395ad
Source0:        https://github.com/pythongssapi/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
8395ad
8395ad
# Patches
8395ad
8395ad
BuildRequires:  krb5-devel >= 1.10
8395ad
BuildRequires:  krb5-libs >= 1.10
8395ad
BuildRequires:  gcc
8395ad
BuildRequires:  python3-devel
8395ad
BuildRequires:  python3-setuptools
8395ad
BuildRequires:  python3-Cython
8395ad
8395ad
# For autosetup
8395ad
BuildRequires: git
8395ad
8395ad
%global _description\
8395ad
A set of Python bindings to the GSSAPI C library providing both\
8395ad
a high-level pythonic interfaces and a low-level interfaces\
8395ad
which more closely matches RFC 2743.  Includes support for\
8395ad
RFC 2743, as well as multiple extensions.
8395ad
8395ad
%description %_description
8395ad
8395ad
%package -n python3-gssapi
8395ad
Summary:        Python 3 Bindings for GSSAPI (RFC 2743/2744 and extensions)
8395ad
8395ad
Requires:       krb5-libs >= 1.10
8395ad
Requires:       python3-six
8395ad
Requires:       python3-decorator
8395ad
8395ad
%description -n python3-gssapi %_description
8395ad
8395ad
%{?python_provide:%python_provide python3-gssapi}
8395ad
8395ad
%prep
8395ad
%autosetup -S git -n %{name}-%{version}
8395ad
8395ad
%build
8395ad
%py3_build
8395ad
8395ad
%install
8395ad
%py3_install
8395ad
8395ad
# fix permissions on shared objects (mock seems to set them
8395ad
# to 0775, whereas a normal build gives 0755)
8395ad
find %{buildroot}%{python3_sitearch}/gssapi -name '*.so' \
8395ad
    -exec chmod 0755 {} \;
8395ad
8395ad
%files -n python3-gssapi
8395ad
%doc README.txt
8395ad
%license LICENSE.txt
8395ad
%{python3_sitearch}/*
8395ad
8395ad
%changelog
8395ad
* Fri May 31 2019 Robbie Harwood <rharwood@redhat.com> - 1.5.1-5
8395ad
- Gating can't be bothered to check my BuildRequires
8395ad
- Resolves: #1715040
8395ad
8395ad
* Thu May 30 2019 Robbie Harwood <rharwood@redhat.com> - 1.5.1-4
8395ad
- Bump NVR to re-run our useless gating
8395ad
- Resolves: #1715040
8395ad
8395ad
* Thu May 30 2019 Robbie Harwood <rharwood@redhat.com> - 1.5.1-3
8395ad
- Update spec file from Fedora
8395ad
- Resolves: #1715040
8395ad
8395ad
* Tue Mar 19 2019 Robbie Harwood <rharwood@redhat.com> - 1.5.1-2
8395ad
- Add gating tests
8395ad
- Resolves: #1682269
8395ad
8395ad
* Wed Aug 01 2018 Robbie Harwood <rharwood@redhat.com> - 1.5.1-1
8395ad
- Remove warning about collections ABCs on python3.7
8395ad
- Resolves: #1594834
8395ad
8395ad
* Fri Jun 22 2018 Charalampos Stratakis <cstratak@redhat.com> - 1.5.0-3
8395ad
- Conditionalize the python2 subpackage
8395ad
8395ad
* Tue May 08 2018 Robbie Harwood <rharwood@redhat.com> - 1.5.0-2
8395ad
- Fix tox dependency
8395ad
8395ad
* Fri Apr 06 2018 Robbie Harwood <rharwood@redhat.com> - 1.5.0-1
8395ad
- Prepare for release 1.5.0
8395ad
8395ad
* Wed Mar 07 2018 Robbie Harwood <rharwood@redhat.com> - 1.4.1-2
8395ad
- Add gcc to build-deps
8395ad
8395ad
* Fri Feb 16 2018 Robbie Harwood <rharwood@redhat.com> - 1.4.1-1
8395ad
- Prepare for release 1.4.1
8395ad
8395ad
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-3
8395ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8395ad
8395ad
* Fri Jan 19 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.3.0-2
8395ad
- Update Python 2 dependency declarations to new packaging standards
8395ad
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
8395ad
8395ad
* Fri Dec 01 2017 Robbie Harwood <rharwood@redhat.com> - 1.3.0-1
8395ad
- New upstream release v1.3.0
8395ad
8395ad
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.2.0-8
8395ad
- Python 2 binary package renamed to python2-gssapi
8395ad
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
8395ad
8395ad
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-7
8395ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
8395ad
8395ad
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-6
8395ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8395ad
8395ad
* Tue Apr 04 2017 Robbie Harwood <rharwood@redhat.com> 1.2.0-5
8395ad
- Fix problem where gss_display_status can infinite loop
8395ad
- Move to autosetup and rpm-git-tree
8395ad
8395ad
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-4
8395ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8395ad
8395ad
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.2.0-3
8395ad
- Rebuild for Python 3.6
8395ad
8395ad
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
8395ad
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
8395ad
8395ad
* Thu Mar 03 2016 Robbie Harwood <rharwood@redhat.com> - 1.2.0-1
8395ad
- New upstream version 1.2.0
8395ad
8395ad
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.4-2
8395ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8395ad
8395ad
* Mon Nov 30 2015 Robbie Harwood <rharwood@redhat.com> - 1.1.4-1
8395ad
- New upstream version 1.1.4
8395ad
- Resolves #1286458
8395ad
8395ad
* Wed Nov 04 2015 Robert Kuska <rkuska@redhat.com> - 1.1.3-2
8395ad
- Rebuilt for Python3.5 rebuild
8395ad
8395ad
* Fri Sep 04 2015 Robbie Harwood <rharwood@redhat.com> - 1.1.3-1
8395ad
- New upstream minor release
8395ad
8395ad
* Thu Aug 20 2015 Simo Sorce <simo@redhat.com> - 1.1.2-1
8395ad
- New minor release.
8395ad
- Resolves #1254458
8395ad
- Fixes a crash bug when inquiring incomplete security contexts
8395ad
8395ad
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.1-2
8395ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8395ad
8395ad
* Tue Apr 28 2015 Simo Sorce <simo@redhat.com> - 1.1.1-1
8395ad
- New minor release.
8395ad
8395ad
* Thu Feb 19 2015 Solly Ross <sross@redhat.com> - 1.1.0-1
8395ad
- Initial Packaging