import python-itsdangerous-0.24-14.el8
This commit is contained in:
commit
ae626e1462
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/itsdangerous-0.24.tar.gz
|
1
.python-itsdangerous.metadata
Normal file
1
.python-itsdangerous.metadata
Normal file
@ -0,0 +1 @@
|
||||
0a6ae9c20cd72e89d75314ebc7b0f390f93e6a0d SOURCES/itsdangerous-0.24.tar.gz
|
176
SPECS/python-itsdangerous.spec
Normal file
176
SPECS/python-itsdangerous.spec
Normal file
@ -0,0 +1,176 @@
|
||||
%global upstream_name itsdangerous
|
||||
|
||||
%if 0%{?fedora} || 0%{?rhel} > 7
|
||||
%bcond_without python3
|
||||
%else
|
||||
%bcond_with python3
|
||||
%endif
|
||||
|
||||
%if 0%{?rhel} > 7
|
||||
# Disable python2 build by default
|
||||
%bcond_with python2
|
||||
%else
|
||||
%bcond_without python2
|
||||
%endif
|
||||
|
||||
Name: python-%{upstream_name}
|
||||
Version: 0.24
|
||||
Release: 14%{?dist}
|
||||
Summary: Python library for passing trusted data to untrusted environments
|
||||
License: BSD
|
||||
URL: http://pythonhosted.org/itsdangerous/
|
||||
Source0: http://pypi.python.org/packages/source/i/%{upstream_name}/%{upstream_name}-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Itsdangerous is a Python library for passing data through untrusted
|
||||
environments (for example, HTTP cookies) while ensuring the data is not
|
||||
tampered with.
|
||||
|
||||
Internally itsdangerous uses HMAC and SHA1 for signing by default and bases the
|
||||
implementation on the Django signing module. It also however supports JSON Web
|
||||
Signatures (JWS).
|
||||
|
||||
%if %{with python2}
|
||||
%package -n python2-%{upstream_name}
|
||||
Summary: Python 2 library for passing trusted data to untrusted environments
|
||||
%{?python_provide:%python_provide python2-%{upstream_name}}
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python2-setuptools
|
||||
|
||||
%description -n python2-%{upstream_name}
|
||||
Itsdangerous is a Python library for passing data through untrusted
|
||||
environments (for example, HTTP cookies) while ensuring the data is not
|
||||
tampered with.
|
||||
|
||||
Internally itsdangerous uses HMAC and SHA1 for signing by default and bases the
|
||||
implementation on the Django signing module. It also however supports JSON Web
|
||||
Signatures (JWS).
|
||||
%endif # with python2
|
||||
|
||||
%if %{with python3}
|
||||
%package -n python3-%{upstream_name}
|
||||
Summary: Python 3 library for passing trusted data to untrusted environments
|
||||
%{?python_provide:%python_provide python3-%{upstream_name}}
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
|
||||
%description -n python3-%{upstream_name}
|
||||
Itsdangerous is a Python 3 library for passing data through untrusted
|
||||
environments (for example, HTTP cookies) while ensuring the data is not
|
||||
tampered with.
|
||||
|
||||
Internally itsdangerous uses HMAC and SHA1 for signing by default and bases the
|
||||
implementation on the Django signing module. It also however supports JSON Web
|
||||
Signatures (JWS).
|
||||
%endif
|
||||
|
||||
%prep
|
||||
%setup -q -n %{upstream_name}-%{version}
|
||||
rm -r *.egg-info
|
||||
|
||||
%build
|
||||
%if %{with python2}
|
||||
%py2_build
|
||||
%endif # with python2
|
||||
%if %{with python3}
|
||||
%py3_build
|
||||
%endif
|
||||
|
||||
%install
|
||||
%if %{with python2}
|
||||
%py2_install
|
||||
%endif # with python2
|
||||
%if %{with python3}
|
||||
%py3_install
|
||||
%endif
|
||||
|
||||
%check
|
||||
%if %{with python2}
|
||||
PYTHONPATH=%{buildroot}%{python2_sitelib} %{__python2} tests.py
|
||||
%endif # with python2
|
||||
%if %{with python3}
|
||||
PYTHONPATH=%{buildroot}%{python3_sitelib} %{__python3} tests.py
|
||||
%endif
|
||||
|
||||
%if %{with python2}
|
||||
%files -n python2-%{upstream_name}
|
||||
%license LICENSE
|
||||
%doc CHANGES README
|
||||
%{python2_sitelib}/%{upstream_name}.py*
|
||||
%{python2_sitelib}/%{upstream_name}*.egg-info
|
||||
%endif # with python2
|
||||
|
||||
%if %{with python3}
|
||||
%files -n python3-%{upstream_name}
|
||||
%license LICENSE
|
||||
%doc CHANGES README
|
||||
%{python3_sitelib}/%{upstream_name}.py
|
||||
%{python3_sitelib}/%{upstream_name}*.egg-info
|
||||
%{python3_sitelib}/__pycache__/%{upstream_name}*
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jun 22 2018 Charalampos Stratakis <cstratak@redhat.com> - 0.24-14
|
||||
- Conditionalize the python2 subpackage
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.24-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Fri Sep 29 2017 Troy Dawson <tdawson@redhat.com> - 0.24-12
|
||||
- Cleanup spec file conditionals
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.24-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Jun 23 2017 Dan Callaghan <dcallagh@redhat.com> - 0.24-10
|
||||
- renamed python-itsdangerous to python2-itsdangerous
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.24-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 0.24-8
|
||||
- Rebuild for Python 3.6
|
||||
|
||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.24-7
|
||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.24-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Wed Oct 14 2015 Robert Kuska <rkuska@redhat.com> - 0.24-5
|
||||
- Rebuilt for Python3.5 rebuild
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.24-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.24-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Tue May 13 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.24-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
||||
|
||||
* Mon Mar 31 2014 Dan Callaghan <dcallagh@redhat.com> - 0.24-1
|
||||
- new upstream release 0.24
|
||||
|
||||
* Thu Aug 15 2013 Dan Callaghan <dcallagh@redhat.com> - 0.23-1
|
||||
- new upstream release 0.23 (no code changes, only packaging fixes)
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.22-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Tue Jul 09 2013 Dan Callaghan <dcallagh@redhat.com> - 0.22-1
|
||||
- new upstream release 0.22
|
||||
|
||||
* Tue Jun 18 2013 Dan Callaghan <dcallagh@redhat.com> - 0.21-3
|
||||
- disable Python 3 subpackage on Fedora 17
|
||||
|
||||
* Mon Jun 17 2013 Dan Callaghan <dcallagh@redhat.com> - 0.21-2
|
||||
- $RPM_BUILD_ROOT -> %%{buildroot}
|
||||
|
||||
* Fri Jun 14 2013 Dan Callaghan <dcallagh@redhat.com> - 0.21-1
|
||||
- updated to upstream release 0.21
|
||||
- added Python 3 subpackage
|
||||
|
||||
* Wed Nov 16 2011 Dan Callaghan <dcallagh@redhat.com> - 0.11-1
|
||||
- initial version
|
Loading…
Reference in New Issue
Block a user