2014-10-23 15:07:33 +00:00
|
|
|
%global realname kdcproxy
|
|
|
|
|
|
|
|
Name: python-%{realname}
|
2020-12-08 18:40:42 +00:00
|
|
|
Version: 1.0.0
|
2021-01-27 11:24:15 +00:00
|
|
|
Release: 3%{?dist}
|
2014-10-23 15:07:33 +00:00
|
|
|
Summary: MS-KKDCP (kerberos proxy) WSGI module
|
|
|
|
|
|
|
|
License: MIT
|
2020-12-08 18:40:42 +00:00
|
|
|
URL: https://github.com/latchset/%{realname}
|
|
|
|
Source0: https://github.com/latchset/%{realname}/archive/%{realname}-%{version}.tar.gz
|
2014-10-23 15:07:33 +00:00
|
|
|
|
2021-01-20 16:02:28 +00:00
|
|
|
Patch0: Drop-coverage-from-tests.patch
|
|
|
|
|
2014-10-23 15:07:33 +00:00
|
|
|
BuildArch: noarch
|
2018-08-09 16:54:33 +00:00
|
|
|
BuildRequires: git
|
2018-03-22 19:32:27 +00:00
|
|
|
|
2020-06-25 18:38:55 +00:00
|
|
|
BuildRequires: python3-coverage
|
|
|
|
BuildRequires: python3-devel
|
2015-06-11 16:22:42 +00:00
|
|
|
BuildRequires: python3-dns
|
|
|
|
BuildRequires: python3-mock
|
2020-12-08 18:40:42 +00:00
|
|
|
BuildRequires: python3-pyasn1
|
2020-06-25 18:38:55 +00:00
|
|
|
BuildRequires: python3-pytest
|
|
|
|
BuildRequires: python3-setuptools
|
2015-06-11 16:22:42 +00:00
|
|
|
|
2014-10-23 15:07:33 +00:00
|
|
|
%description
|
2017-01-16 15:25:17 +00:00
|
|
|
This package contains a Python WSGI module for proxying KDC requests over
|
|
|
|
HTTP by following the MS-KKDCP protocol. It aims to be simple to deploy, with
|
|
|
|
minimal configuration.
|
|
|
|
|
2014-10-23 15:07:33 +00:00
|
|
|
%package -n python3-%{realname}
|
|
|
|
Summary: MS-KKDCP (kerberos proxy) WSGI module
|
|
|
|
Requires: python3-dns
|
2020-12-08 18:40:42 +00:00
|
|
|
Requires: python3-pyasn1
|
2014-10-23 15:07:33 +00:00
|
|
|
|
2017-01-16 15:25:17 +00:00
|
|
|
%{?python_provide:%python_provide python3-%{realname}}
|
|
|
|
|
2014-10-23 15:07:33 +00:00
|
|
|
%description -n python3-%{realname}
|
|
|
|
This package contains a Python 3.x WSGI module for proxying KDC requests over
|
|
|
|
HTTP by following the MS-KKDCP protocol. It aims to be simple to deploy, with
|
|
|
|
minimal configuration.
|
|
|
|
|
|
|
|
%prep
|
2018-08-09 16:54:33 +00:00
|
|
|
%autosetup -S git -n %{realname}-%{version}
|
|
|
|
|
2014-10-23 15:07:33 +00:00
|
|
|
%build
|
2017-09-05 17:54:34 +00:00
|
|
|
%py3_build
|
2014-10-23 15:07:33 +00:00
|
|
|
|
|
|
|
%install
|
2017-09-05 17:54:34 +00:00
|
|
|
%py3_install
|
2014-10-23 15:07:33 +00:00
|
|
|
|
2015-06-11 16:22:42 +00:00
|
|
|
%check
|
2020-12-08 18:40:42 +00:00
|
|
|
%{__python3} -m pytest
|
2014-10-23 15:07:33 +00:00
|
|
|
|
|
|
|
%files -n python3-%{realname}
|
2017-01-16 15:25:17 +00:00
|
|
|
%doc README
|
|
|
|
%license COPYING
|
2017-09-05 17:56:42 +00:00
|
|
|
%{python3_sitelib}/%{realname}/
|
2014-10-23 15:07:33 +00:00
|
|
|
%{python3_sitelib}/%{realname}-%{version}-*.egg-info
|
|
|
|
|
|
|
|
%changelog
|
2021-01-27 11:24:15 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-20 16:02:28 +00:00
|
|
|
* Wed Jan 20 2021 Robbie Harwood <rharwood@redhat.com> - 1.0.0-2
|
|
|
|
- Drop coverage from tests
|
|
|
|
|
2020-12-08 18:40:42 +00:00
|
|
|
* Tue Dec 08 2020 Robbie Harwood <rharwood@redhat.com> - 1.0.0-1
|
|
|
|
- New upstream version (1.0.0)
|
|
|
|
- Drop asn1crypto in favor of pyasn1
|
|
|
|
|
2020-07-29 01:49:34 +00:00
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.2-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-06-25 18:38:55 +00:00
|
|
|
* Thu Jun 25 2020 Robbie Harwood <rharwood@redhat.com> - 0.4.2-5
|
|
|
|
- Explicitly depend on python3-setuptools
|
|
|
|
|
2020-05-26 01:22:09 +00:00
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.4.2-4
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-01-30 13:01:22 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-10-03 12:16:49 +00:00
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.4.2-2
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
2019-08-29 18:46:06 +00:00
|
|
|
* Thu Aug 29 2019 Robbie Harwood <rharwood@redhat.com> - 0.4.2-1
|
|
|
|
- New upstream version (0.4.2)
|
|
|
|
|
2019-08-19 08:43:14 +00:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.4.1-3
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-07-26 14:14:47 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-02-11 16:26:14 +00:00
|
|
|
* Mon Feb 11 2019 Robbie Harwood <rharwood@redhdat.com> 0.4.1-1
|
|
|
|
- New upstream release - 0.4.1
|
|
|
|
- Fixes build with rawhide (dnspython/dnspython3)
|
|
|
|
|
2019-02-02 07:29:17 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-09-17 15:34:05 +00:00
|
|
|
* Mon Sep 17 2018 Robbie Harwood <rharwood@redhat.com> - 0.4-3
|
|
|
|
- Drop python2 subpackage
|
|
|
|
- Resolves: #1629775
|
|
|
|
|
2018-08-09 19:13:29 +00:00
|
|
|
* Thu Aug 09 2018 Robbie Harwood <rharwood@redhat.com> - 0.4-2
|
|
|
|
- Update dependencies in test suite
|
|
|
|
|
2018-08-09 16:54:33 +00:00
|
|
|
* Thu Aug 09 2018 Robbie Harwood <rharwood@redhat.com> - 0.4-1
|
|
|
|
- New upstream release - 0.4
|
|
|
|
- Port to autosetup
|
|
|
|
|
2018-07-14 00:44:55 +00:00
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-19 09:06:56 +00:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.3.2-13
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-03-22 19:32:27 +00:00
|
|
|
* Thu Mar 22 2018 Troy Dawson <tdawson@redhat.com> - 0.3.2-12
|
|
|
|
- Update conditionals.
|
|
|
|
- Make preperations for non-python2 builds
|
|
|
|
|
2018-02-12 03:15:01 +00:00
|
|
|
* Mon Feb 12 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.3.2-11
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2018-02-09 08:35:11 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-09-05 17:58:17 +00:00
|
|
|
* Tue Sep 05 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.3.2-9
|
|
|
|
- Ignore test results
|
|
|
|
|
2017-07-27 10:43:49 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-11 09:24:39 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-16 15:25:17 +00:00
|
|
|
* Mon Jan 16 2017 Charalampos Stratakis <cstratak@redhat.com> - 0.3.2-6
|
|
|
|
- Fix failing tests
|
|
|
|
- Modernize the SPEC file
|
|
|
|
|
2016-12-19 17:20:37 +00:00
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.3.2-5
|
|
|
|
- Rebuild for Python 3.6
|
2017-01-02 15:32:55 +00:00
|
|
|
- BR /usr/bin/tox instead of python-tox
|
|
|
|
- Use %%{python3_version_nodots} instead of hardcoded 35
|
2016-12-19 17:20:37 +00:00
|
|
|
|
2016-07-19 10:13:31 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.2-4
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-02-04 20:00:22 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-10 16:14:07 +00:00
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-08-03 19:03:28 +00:00
|
|
|
* Mon Aug 03 2015 Nathaniel McCallum <npmccallum@fedoraproject.org> - 0.3.2-1
|
|
|
|
- Update to 0.3.2
|
|
|
|
- Fixes CVE-2015-5159
|
|
|
|
|
2015-07-22 17:08:52 +00:00
|
|
|
* Wed Jul 22 2015 Nathaniel McCallum <npmccallum@fedoraproject.org> - 0.3.1-1
|
|
|
|
- Update to 0.3.1
|
|
|
|
|
2015-06-18 19:44:40 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-11 16:22:42 +00:00
|
|
|
* Wed Jun 10 2015 Nathaniel McCallum <npmccallum@fedoraproject.org> - 0.3-1
|
|
|
|
- Update to 0.3
|
|
|
|
- Run tests in Fedora (not RHEL due to python-tox)
|
|
|
|
|
2014-10-24 14:26:14 +00:00
|
|
|
* Fri Oct 24 2014 Nathaniel McCallum <npmccallum@fedoraproject.org> - 0.2.1-1
|
|
|
|
- Update to 0.2.1
|
|
|
|
|
2014-10-23 15:20:34 +00:00
|
|
|
* Thu Oct 23 2014 Nathaniel McCallum <npmccallum@fedoraproject.org> - 0.2-1
|
|
|
|
- Update to 0.2
|
2014-10-23 15:47:35 +00:00
|
|
|
- Fix EPEL7 build
|
2014-10-23 15:20:34 +00:00
|
|
|
|
2014-10-23 15:07:33 +00:00
|
|
|
* Tue Jan 21 2014 Nathaniel McCallum <npmccallum@fedoraproject.org> - 0.1.1-1
|
|
|
|
- Initial package
|