diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a48c7ad --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/six-1.11.0.tar.gz diff --git a/.python-six.metadata b/.python-six.metadata new file mode 100644 index 0000000..69fba5a --- /dev/null +++ b/.python-six.metadata @@ -0,0 +1 @@ +3647372a0e104e7b53bd477762392024e1083ac0 SOURCES/six-1.11.0.tar.gz diff --git a/SPECS/python-six.spec b/SPECS/python-six.spec new file mode 100644 index 0000000..d2efb79 --- /dev/null +++ b/SPECS/python-six.spec @@ -0,0 +1,279 @@ +%global modname six +%global build_wheel 1 +%global py2_wheel 0 + +%bcond_without tests + +%bcond_with python2 +%bcond_without python3 + +%global python2_wheelname %{modname}-%{version}-py2.py3-none-any.whl +%global python3_wheelname %python2_wheelname + +Name: python-%{modname} +Version: 1.11.0 +Release: 8%{?dist} +Summary: Python 2 and 3 compatibility utilities + +License: MIT +URL: https://pypi.python.org/pypi/six +Source0: https://files.pythonhosted.org/packages/source/%(n=%{modname}; echo ${n:0:1})/%{modname}/%{modname}-%{version}.tar.gz + +BuildArch: noarch + +%global _description \ +%%{name} provides simple utilities for wrapping over differences between\ +Python 2 and Python 3. + +%description %{_description} + +%if %{with python2} +%package -n python2-%{modname} +Summary: %{summary} +%{?python_provide:%python_provide python2-%{modname}} +BuildRequires: python2-devel +BuildRequires: python2-setuptools + +%if %{with tests} +BuildRequires: python2-pytest +#BuildRequires: python2-tkinter +%endif + +%if 0%{?py2_wheel} +BuildRequires: python2-pip +BuildRequires: python2-wheel +%endif + +%description -n python2-%{modname} %{_description} +Python 2 version. + +%endif + + +%if %{with python3} +%package -n python3-%{modname} +Summary: %{summary} +%{?python_provide:%python_provide python3-%{modname}} +Obsoletes: platform-python-%{modname} < %{version}-%{release} +BuildRequires: python3-devel +BuildRequires: python3-setuptools + +%if %{with tests} +BuildRequires: python3-pytest +BuildRequires: python3-tkinter +%endif + +%if 0%{?build_wheel} +BuildRequires: python%{python3_pkgversion}-pip +BuildRequires: python%{python3_pkgversion}-wheel +%endif + +%description -n python3-%{modname} %{_description} +Python 3 version. + +%endif + + +%prep +%autosetup -n %{modname}-%{version} + + +%build +%if %{with python2} +export RHEL_ALLOW_PYTHON2_FOR_BUILD=1 +%if 0%{?py2_wheel} +%py2_build_wheel +%else +%py2_build +%endif +%endif + +%if %{with python3} +%if 0%{?build_wheel} +%py3_build_wheel +%else +%py3_build +%endif +%endif + + +%install +%if %{with python2} +export RHEL_ALLOW_PYTHON2_FOR_BUILD=1 +%if 0%{?py2_wheel} +%py2_install_wheel %{python2_wheelname} +%else +%py2_install +%endif +%endif + +%if %{with python3} +%if 0%{?build_wheel} +%py3_install_wheel %{python3_wheelname} +%else +%py3_install +%endif +%endif + + +%if %{with tests} +%check +%if %{with python2} +export RHEL_ALLOW_PYTHON2_FOR_BUILD=1 +py.test-2 -rfsxX test_six.py +%endif #{with python2} +py.test-3 -rfsxX test_six.py +%endif + + +%if %{with python2} +%files -n python2-%{modname} +%license LICENSE +%doc README.rst documentation/index.rst +%{python2_sitelib}/%{modname}-*.*-info/ +%{python2_sitelib}/%{modname}.py* +%endif + +%if %{with python3} +%files -n python3-%{modname} +%license LICENSE +%doc README.rst documentation/index.rst +%{python3_sitelib}/%{modname}-*.dist-info/ +%{python3_sitelib}/%{modname}.py +%{python3_sitelib}/__pycache__/%{modname}.* +%endif + + +%changelog +* Fri Jul 13 2018 Petr Viktorin - 1.11.0-8 +- Disable the Python 2 subpackage + https://bugzilla.redhat.com/show_bug.cgi?id=1594157 + +* Wed Jun 27 2018 Petr Viktorin - 1.11.0-7 +- Drop dependency on python2-tkinter + This results in one skipped test. + +* Fri Jun 22 2018 Petr Viktorin - 1.11.0-6 +- Do not use wheel on Python 2 + +* Fri Jun 22 2018 Petr Viktorin - 1.11.0-5 +- Conditionalize bulding wheel on Python 2 + +* Thu Jun 21 2018 Lumír Balhar - 1.11.0-4 +- Allow build with Python 2 + +* Fri Feb 09 2018 Fedora Release Engineering - 1.11.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Nov 15 2017 Lumír Balhar - 1.11.0-2 +- Removed and obsoleted the platform-python subpackage + +* Tue Sep 19 2017 Charalampos Stratakis - 1.11.0-1 +- Update to 1.11.0 + +* Thu Aug 10 2017 Tomas Orsava - 1.10.0-11 +- Added the platform-python subpackage + +* Thu Jul 27 2017 Fedora Release Engineering - 1.10.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Jul 03 2017 Petr Viktorin - 1.10.0-9 +- Fix unversioned Python BuildRequires + +* Mon Feb 13 2017 Charalampos Stratakis - 1.10.0-8 +- Rebuild as wheel + +* Sat Feb 11 2017 Fedora Release Engineering - 1.10.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Dec 13 2016 Charalampos Stratakis - 1.10.0-6 +- Enable tests + +* Fri Dec 09 2016 Charalampos Stratakis - 1.10.0-5 +- Rebuild for Python 3.6 +- Disable python3 tests + +* Tue Aug 09 2016 Igor Gnatenko - 1.10.0-4 +- Modernize spec more +- Depend on system-python(abi) +- Cleanups + +* Tue Jul 19 2016 Fedora Release Engineering - 1.10.0-3 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Wed Feb 3 2016 Orion Poplawski - 1.10.0-2 +- Modernize spec +- Fix python3 package file ownership + +* Fri Nov 13 2015 Slavek Kabrda - 1.10.0-1 +- Update to 1.10.0 + +* Tue Oct 13 2015 Robert Kuska - 1.9.0-4 +- Rebuilt for Python3.5 rebuild + +* Mon Jul 13 2015 Slavek Kabrda - 1.9.0-3 +- Added python2-six provide to python-six + +* Thu Jun 18 2015 Fedora Release Engineering - 1.9.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Feb 23 2015 Haïkel Guémar - 1.9.0-1 +- Upstream 1.9.0 +- Packaging cleanups + +* Fri Nov 14 2014 Slavek Kabrda - 1.8.0-1 +- upgrade to 1.8.0 (rhbz#1105861) + +* Sun Aug 3 2014 Tom Callaway - 1.7.3-2 +- fix license handling + +* Thu Jul 31 2014 Pádraig Brady - 1.7.3-1 +- Latest upstream + +* Sat Jun 07 2014 Fedora Release Engineering - 1.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu May 08 2014 Orion Poplawski - 1.6.1-2 +- Rebuild for Python 3.4 + +* Tue Apr 29 2014 Matthias Runge - 1.6.1-1 +- upgrade to 1.6.1 (rhbz#1076578) + +* Fri Mar 07 2014 Matthias Runge - 1.5.2-1 +- upgrade to 1.5.2 (rhbz#1048819) + +* Mon Sep 16 2013 Bohuslav Kabrda - 1.4.1-1 +- 1.4.1 + +* Sun Aug 04 2013 Fedora Release Engineering - 1.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Mar 21 2013 David Malcolm - 1.3.0-1 +- 1.3.0 + +* Thu Feb 14 2013 Fedora Release Engineering - 1.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Aug 29 2012 David Malcolm - 1.2.0-1 +- 1.2.0 (rhbz#852658) +- add %%check section + +* Sat Aug 04 2012 David Malcolm - 1.1.0-4 +- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3 + +* Sat Jul 21 2012 Fedora Release Engineering - 1.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Jun 22 2012 Ralph Bean - 1.1.0-2 +- Conditionalized python3-six, allowing an el6 build. + +* Tue Feb 7 2012 David Malcolm - 1.1.0-1 +- 1.1.0 + +* Sat Jan 14 2012 Fedora Release Engineering - 1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Thu Mar 24 2011 David Malcolm - 1.0.0-1 +- initial packaging + +