2015-04-06 13:20:13 +00:00
|
|
|
# NOTE: tests are disabled since should_be has not yet been packaged.
|
|
|
|
# To re-enable, uncomment the 'check' section and lines marked 'for tests'
|
|
|
|
%global run_tests 0
|
|
|
|
%global with_python3 1
|
|
|
|
|
|
|
|
Name: python-gssapi
|
2016-03-03 18:52:41 +00:00
|
|
|
Version: 1.2.0
|
|
|
|
Release: 1%{?dist}
|
2015-04-06 13:20:13 +00:00
|
|
|
Summary: Python Bindings for GSSAPI (RFC 2743/2744 and extensions)
|
|
|
|
|
|
|
|
License: ISC
|
|
|
|
URL: https://github.com/pythongssapi/python-gssapi
|
2015-04-28 16:31:15 +00:00
|
|
|
Source0: https://github.com/pythongssapi/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
2015-04-06 13:20:13 +00:00
|
|
|
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
BuildRequires: krb5-devel >= 1.10
|
|
|
|
BuildRequires: krb5-libs >= 1.10
|
|
|
|
BuildRequires: Cython >= 0.21
|
|
|
|
BuildRequires: python-setuptools
|
2015-08-20 12:15:09 +00:00
|
|
|
BuildRequires: python-tox
|
2015-04-06 13:20:13 +00:00
|
|
|
Requires: krb5-libs >= 1.10
|
|
|
|
Requires: python-six
|
|
|
|
Requires: python-enum34
|
|
|
|
Requires: python-decorator
|
|
|
|
|
|
|
|
%if 0%{?run_tests}
|
|
|
|
BuildRequires: python-nose
|
|
|
|
BuildRequires: python-nose-parameterized
|
|
|
|
BuildRequires: python-shouldbe
|
|
|
|
BuildRequires: krb5-server >= 1.10
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
BuildRequires: python3-Cython
|
|
|
|
|
|
|
|
%if 0%{?run_tests}
|
|
|
|
BuildRequires: python3-nose
|
|
|
|
BuildRequires: python3-nose-parameterized
|
|
|
|
BuildRequires: python3-should-be
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
|
|
|
A set of Python bindings to the GSSAPI C library providing both
|
|
|
|
a high-level pythonic interfaces and a low-level interfaces
|
|
|
|
which more closely matches RFC 2743. Includes support for
|
|
|
|
RFC 2743, as well as multiple extensions.
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%package -n python3-gssapi
|
|
|
|
Summary: Python 3 Bindings for GSSAPI (RFC 2743/2744 and extensions)
|
|
|
|
|
|
|
|
Requires: krb5-libs >= 1.10
|
|
|
|
Requires: python3-six
|
|
|
|
Requires: python3-decorator
|
|
|
|
|
|
|
|
%description -n python3-gssapi
|
|
|
|
A set of Python 3 bindings to the GSSAPI C library providing both
|
|
|
|
a high-level pythonic interfaces and a low-level interfaces
|
|
|
|
which more closely matches RFC 2743. Includes support for
|
|
|
|
RFC 2743, as well as multiple extensions.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
rm -rf %{py3dir}
|
|
|
|
cp -a . %{py3dir}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
CFLAGS="%{optflags}" %{__python2} setup.py build
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
|
|
|
CFLAGS="%{optflags}" %{__python3} setup.py build
|
|
|
|
popd
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
|
|
|
%{__python3} setup.py install --skip-build --root %{buildroot}
|
|
|
|
|
|
|
|
# fix permissions on shared objects (mock seems to set them
|
|
|
|
# to 0775, whereas a normal build gives 0755)
|
|
|
|
find %{buildroot}%{python3_sitearch}/gssapi -name '*.so' \
|
|
|
|
-exec chmod 0755 {} \;
|
|
|
|
|
|
|
|
popd
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%{__python2} setup.py install --skip-build --root %{buildroot}
|
|
|
|
|
|
|
|
# fix permissions on shared objects (mock seems to set them
|
|
|
|
# to 0775, whereas a normal build gives 0755)
|
|
|
|
find %{buildroot}%{python2_sitearch}/gssapi -name '*.so' \
|
|
|
|
-exec chmod 0755 {} \;
|
|
|
|
|
|
|
|
%check
|
|
|
|
%if 0%{?run_tests}
|
|
|
|
%{__python2} setup.py nosetests
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
|
|
|
%{__python3} setup.py nosetests
|
|
|
|
popd
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc README.txt
|
|
|
|
%license LICENSE.txt
|
|
|
|
%{python2_sitearch}/*
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%files -n python3-gssapi
|
|
|
|
%doc README.txt
|
|
|
|
%license LICENSE.txt
|
|
|
|
%{python3_sitearch}/*
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2016-03-03 18:52:41 +00:00
|
|
|
* Thu Mar 03 2016 Robbie Harwood <rharwood@redhat.com> - 1.2.0-1
|
|
|
|
- New upstream version 1.2.0
|
|
|
|
|
2016-02-04 19:50:06 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-30 18:37:17 +00:00
|
|
|
* Mon Nov 30 2015 Robbie Harwood <rharwood@redhat.com> - 1.1.4-1
|
|
|
|
- New upstream version 1.1.4
|
|
|
|
- Resolves #1286458
|
|
|
|
|
2015-11-04 15:25:13 +00:00
|
|
|
* Wed Nov 04 2015 Robert Kuska <rkuska@redhat.com> - 1.1.3-2
|
|
|
|
- Rebuilt for Python3.5 rebuild
|
|
|
|
|
2015-09-04 21:06:05 +00:00
|
|
|
* Fri Sep 04 2015 Robbie Harwood <rharwood@redhat.com> - 1.1.3-1
|
|
|
|
- New upstream minor release
|
|
|
|
|
2015-08-20 12:15:09 +00:00
|
|
|
* Thu Aug 20 2015 Simo Sorce <simo@redhat.com> - 1.1.2-1
|
|
|
|
- New minor release.
|
|
|
|
- Resolves #1254458
|
|
|
|
- Fixes a crash bug when inquiring incomplete security contexts
|
|
|
|
|
2015-06-18 19:33:22 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-28 16:31:15 +00:00
|
|
|
* Tue Apr 28 2015 Simo Sorce <simo@redhat.com> - 1.1.1-1
|
|
|
|
- New minor release.
|
|
|
|
|
2015-04-06 13:20:13 +00:00
|
|
|
* Thu Feb 19 2015 Solly Ross <sross@redhat.com> - 1.1.0-1
|
|
|
|
- Initial Packaging
|