Blame SPECS/python3x-six.spec

792124
%global modname six
792124
792124
# tests are enabled by default, but on Fedora 32+, Python 2 tests are skipped
792124
%bcond_without tests
792124
792124
# python2 is enabled by default, Fedora 32+ exception is anticipated
792124
%bcond_with python2
792124
792124
%global python_wheelname %{modname}-%{version}-py2.py3-none-any.whl
792124
792124
Name:           python3x-%{modname}
792124
Version:        1.12.0
792124
Release:        10%{?dist}
792124
Summary:        Python 2 and 3 compatibility utilities
792124
792124
License:        MIT
792124
URL:            https://pypi.python.org/pypi/six
792124
Source0:        https://files.pythonhosted.org/packages/source/%(n=%{modname}; echo ${n:0:1})/%{modname}/%{modname}-%{version}.tar.gz
792124
792124
BuildArch:      noarch
792124
# Exclude i686 arch. Due to a modularity issue it's being added to the
792124
# x86_64 compose of CRB, but we don't want to ship it at all.
792124
# See: https://projects.engineering.redhat.com/browse/RCM-72605
792124
ExcludeArch:    i686
792124
792124
%global _description \
792124
python-%{modname} provides simple utilities for wrapping over differences between\
792124
Python 2 and Python 3.
792124
792124
%description %{_description}
792124
792124
%if %{with python2}
792124
%package -n python2-%{modname}
792124
Summary:        %{summary}
792124
%{?python_provide:%python_provide python2-%{modname}}
792124
BuildRequires:  python2-devel
792124
BuildRequires:  python2-setuptools
792124
792124
%if %{with tests} && 0%{?fedora} < 32
792124
BuildRequires:  python2-pytest
792124
BuildRequires:  python2-tkinter
792124
%endif
792124
792124
%description -n python2-%{modname} %{_description}
792124
Python 2 version.
792124
792124
%endif
792124
792124
792124
%package -n python%{python3_pkgversion}-%{modname}
792124
Summary:        %{summary}
792124
%{?python_provide:%python_provide python%{python3_pkgversion}-%{modname}}
792124
BuildRequires:  python%{python3_pkgversion}-devel
792124
BuildRequires:  python%{python3_pkgversion}-setuptools
792124
BuildRequires:  python%{python3_pkgversion}-pip
792124
BuildRequires:  python%{python3_pkgversion}-wheel
792124
BuildRequires:  python%{python3_pkgversion}-rpm-macros
792124
792124
%if %{with tests}
792124
BuildRequires:  python%{python3_pkgversion}-pytest
792124
BuildRequires:  python%{python3_pkgversion}-tkinter
792124
%endif
792124
792124
%description -n python%{python3_pkgversion}-%{modname} %{_description}
792124
Python 3 version.
792124
792124
792124
%prep
792124
%autosetup -n %{modname}-%{version}
792124
792124
792124
%build
792124
%if %{with python2}
792124
%py2_build
792124
%endif
792124
792124
%py3_build_wheel
792124
792124
792124
%install
792124
%if %{with python2}
792124
%py2_install
792124
%endif
792124
792124
%py3_install_wheel %{python_wheelname}
792124
792124
%if %{with tests}
792124
%check
792124
%if %{with python2} && 0%{?fedora} < 32
792124
PYTHONPATH=%{buildroot}%{python2_sitelib} py.test-2 -rfsxX test_six.py
792124
%endif
792124
PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version} -rfsxX test_six.py
792124
%endif
792124
792124
792124
%if %{with python2}
792124
%files -n python2-%{modname}
792124
%license LICENSE
792124
%doc README.rst documentation/index.rst
792124
%{python2_sitelib}/%{modname}-*.egg-info/
792124
%{python2_sitelib}/%{modname}.py*
792124
%endif
792124
792124
%files -n python%{python3_pkgversion}-%{modname}
792124
%license LICENSE
792124
%doc README.rst documentation/index.rst
792124
%{python3_sitelib}/%{modname}-*.dist-info/
792124
%{python3_sitelib}/%{modname}.py
792124
%{python3_sitelib}/__pycache__/%{modname}.*
792124
792124
792124
%changelog
792124
* Tue Nov 10 2020 Tomas Orsava <torsava@redhat.com> - 1.12.0-10
792124
- Rebuild from a new component name
792124
792124
* Fri Dec 13 2019 Tomas Orsava <torsava@redhat.com> - 1.12.0-9
792124
- Exclude unsupported i686 arch
792124
792124
* Tue Nov 19 2019 Lumír Balhar <lbalhar@redhat.com> - 1.12.0-8
792124
- Adjusted for Python 3.8 module in RHEL 8
792124
792124
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.12.0-7
792124
- Rebuilt for Python 3.8.0rc1 (#1748018)
792124
792124
* Mon Aug 26 2019 Miro Hrončok <mhroncok@redhat.com> - 1.12.0-6
792124
- Reduce Python 2 build dependencies
792124
792124
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 1.12.0-5
792124
- Rebuilt for Python 3.8
792124
792124
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 1.12.0-4
792124
- Bootstrap for Python 3.8
792124
792124
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.0-2
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
792124
792124
* Wed Feb 13 2019 Yatin Karel <ykarel@redhat.com> - 1.12.0-1
792124
- Update to 1.12.0
792124
792124
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-7
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
792124
792124
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-6
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
792124
792124
* Sat Jun 16 2018 Miro Hrončok <mhroncok@redhat.com> - 1.11.0-5
792124
- Rebuilt for Python 3.7
792124
792124
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 1.11.0-4
792124
- Bootstrap for Python 3.7
792124
792124
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.0-3
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
792124
792124
* Wed Nov 15 2017 Lumír Balhar <lbalhar@redhat.com> - 1.11.0-2
792124
- Removed and obsoleted the platform-python subpackage
792124
792124
* Tue Sep 19 2017 Charalampos Stratakis <cstratak@redhat.com> - 1.11.0-1
792124
- Update to 1.11.0
792124
792124
* Thu Aug 10 2017 Tomas Orsava <torsava@redhat.com> - 1.10.0-11
792124
- Added the platform-python subpackage
792124
792124
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-10
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
792124
792124
* Mon Jul 03 2017 Petr Viktorin <pviktori@redhat.com> - 1.10.0-9
792124
- Fix unversioned Python BuildRequires
792124
792124
* Mon Feb 13 2017 Charalampos Stratakis <cstratak@redhat.com> - 1.10.0-8
792124
- Rebuild as wheel
792124
792124
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-7
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
792124
792124
* Tue Dec 13 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.10.0-6
792124
- Enable tests
792124
792124
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.10.0-5
792124
- Rebuild for Python 3.6
792124
- Disable python3 tests
792124
792124
* Tue Aug 09 2016 Igor Gnatenko <ignatenko@redhat.com> - 1.10.0-4
792124
- Modernize spec more
792124
- Depend on system-python(abi)
792124
- Cleanups
792124
792124
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-3
792124
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
792124
792124
* Wed Feb 3 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.0-2
792124
- Modernize spec
792124
- Fix python3 package file ownership
792124
792124
* Fri Nov 13 2015 Slavek Kabrda <bkabrda@redhat.com> - 1.10.0-1
792124
- Update to 1.10.0
792124
792124
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 1.9.0-4
792124
- Rebuilt for Python3.5 rebuild
792124
792124
* Mon Jul 13 2015 Slavek Kabrda <bkabrda@redhat.com> - 1.9.0-3
792124
- Added python2-six provide to python-six
792124
792124
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.0-2
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
792124
792124
* Mon Feb 23 2015 Haïkel Guémar <hguemar@fedoraproject.org> - 1.9.0-1
792124
- Upstream 1.9.0
792124
- Packaging cleanups
792124
792124
* Fri Nov 14 2014 Slavek Kabrda <bkabrda@redhat.com> - 1.8.0-1
792124
- upgrade to 1.8.0 (rhbz#1105861)
792124
792124
* Sun Aug  3 2014 Tom Callaway <spot@fedoraproject.org> - 1.7.3-2
792124
- fix license handling
792124
792124
* Thu Jul 31 2014 Pádraig Brady <pbrady@redhat.com> - 1.7.3-1
792124
- Latest upstream
792124
792124
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-3
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
792124
792124
* Thu May 08 2014 Orion Poplawski <orion@cora.nwra.com> - 1.6.1-2
792124
- Rebuild for Python 3.4
792124
792124
* Tue Apr 29 2014 Matthias Runge <mrugne@redhat.com> - 1.6.1-1
792124
- upgrade to 1.6.1 (rhbz#1076578)
792124
792124
* Fri Mar 07 2014 Matthias Runge <mrunge@redhat.com> - 1.5.2-1
792124
- upgrade to 1.5.2 (rhbz#1048819)
792124
792124
* Mon Sep 16 2013 Bohuslav Kabrda <bkabrda@redhat.com> - 1.4.1-1
792124
- 1.4.1
792124
792124
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
792124
792124
* Thu Mar 21 2013 David Malcolm <dmalcolm@redhat.com> - 1.3.0-1
792124
- 1.3.0
792124
792124
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
792124
792124
* Wed Aug 29 2012 David Malcolm <dmalcolm@redhat.com> - 1.2.0-1
792124
- 1.2.0 (rhbz#852658)
792124
- add %%check section
792124
792124
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 1.1.0-4
792124
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
792124
792124
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-3
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
792124
792124
* Fri Jun 22 2012 Ralph Bean <rbean@redhat.com> - 1.1.0-2
792124
- Conditionalized python3-six, allowing an el6 build.
792124
792124
* Tue Feb  7 2012 David Malcolm <dmalcolm@redhat.com> - 1.1.0-1
792124
- 1.1.0
792124
792124
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-2
792124
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
792124
792124
* Thu Mar 24 2011 David Malcolm <dmalcolm@redhat.com> - 1.0.0-1
792124
- initial packaging
792124
792124