2018-07-30 00:19:55 +00:00
%bcond_without tests
2017-08-15 16:29:32 +00:00
2015-10-21 15:13:26 +00:00
%global srcname setuptools_scm
2019-11-16 22:37:35 +00:00
%if 0%{?fedora} >= 32 || 0%{?rhel} >= 8
%bcond_with python2
%else
%bcond_without python2
%endif
2015-10-21 15:13:26 +00:00
Name : python-%{srcname}
2019-05-12 15:20:20 +00:00
Version : 3.3.3
2019-10-03 12:30:06 +00:00
Release : 5%{?dist}
2019-08-15 15:10:36 +00:00
Summary : Blessed package to manage your versions by SCM tags
2015-10-21 15:13:26 +00:00
License : MIT
2018-01-20 09:00:48 +00:00
URL : https://pypi.python.org/pypi/setuptools_scm
Source0 : https://files.pythonhosted.org/packages/source/%(n=%{srcname} ; echo ${n:0:1})/%{srcname} /%{srcname} -%{version} .tar.gz
2015-10-21 15:13:26 +00:00
BuildArch : noarch
2017-08-15 16:29:32 +00:00
%if %{with tests}
2015-10-21 15:13:26 +00:00
BuildRequires : git-core
BuildRequires : mercurial
2017-08-15 16:29:32 +00:00
%endif
2015-10-21 15:13:26 +00:00
%description
2019-08-15 15:10:36 +00:00
Setuptools_scm handles managing your python package versions in SCM metadata.
It also handles file finders for the supported SCMs.
2015-10-21 15:13:26 +00:00
2019-11-16 22:37:35 +00:00
%if %{with python2}
2015-10-21 15:13:26 +00:00
%package -n python2-%{srcname}
2018-01-20 08:58:24 +00:00
Summary : %{summary}
2017-11-03 21:46:33 +00:00
BuildRequires : python2-devel
BuildRequires : python2-setuptools
%if %{with tests}
2018-01-20 08:58:57 +00:00
BuildRequires : python2-pytest
2017-11-03 21:46:33 +00:00
%endif
2015-10-21 15:13:26 +00:00
%{?python_provide:%python_provide python2-%{srcname} }
%description -n python2-%{srcname}
2019-08-15 15:10:36 +00:00
Setuptools_scm handles managing your python package versions in SCM metadata.
It also handles file finders for the supported SCMs.
2019-11-16 22:37:35 +00:00
%endif
2015-10-21 15:13:26 +00:00
2018-07-30 00:19:55 +00:00
%package -n python%{python3_pkgversion}-%{srcname}
2018-01-20 08:58:24 +00:00
Summary : %{summary}
2018-07-30 00:19:55 +00:00
BuildRequires : python%{python3_pkgversion} -devel
BuildRequires : python%{python3_pkgversion} -setuptools
2017-11-03 21:46:33 +00:00
%if %{with tests}
2018-07-30 00:19:55 +00:00
BuildRequires : python%{python3_pkgversion} -pytest
2017-11-03 21:46:33 +00:00
%endif
2018-07-30 00:19:55 +00:00
%{?python_provide:%python_provide python%{python3_pkgversion} -%{srcname} }
2017-11-07 11:07:00 +00:00
Obsoletes : platform-python-%{srcname} < %{version} -%{release}
2015-10-21 15:13:26 +00:00
2018-07-30 00:19:55 +00:00
%description -n python%{python3_pkgversion}-%{srcname}
2019-08-15 15:10:36 +00:00
Setuptools_scm handles managing your python package versions in SCM metadata.
It also handles file finders for the supported SCMs.
2015-10-21 15:13:26 +00:00
%prep
%autosetup -n %{srcname} -%{version}
%build
2019-11-16 22:37:35 +00:00
%if %{with python2}
2015-10-21 15:13:26 +00:00
%py2_build
2019-11-16 22:37:35 +00:00
%endif
2015-10-21 15:13:26 +00:00
%py3_build
%install
2019-11-16 22:37:35 +00:00
%if %{with python2}
2015-10-21 15:13:26 +00:00
%py2_install
2019-11-16 22:37:35 +00:00
%endif
2015-10-21 15:13:26 +00:00
%py3_install
2017-08-15 16:29:32 +00:00
%if %{with tests}
2015-10-21 15:13:26 +00:00
%check
2019-11-16 22:37:35 +00:00
%if %{with python2}
2018-07-30 00:19:55 +00:00
PYTHONPATH=%{buildroot} %{python2_sitelib} py.test-%{python2_version} -v -k 'not (test_pip_download or test_old_setuptools_fails or test_old_setuptools_allows_with_warnings or test_distlib_setuptools_works)'
2019-11-16 22:37:35 +00:00
%endif
2019-08-15 09:18:04 +00:00
PYTHONPATH=%{buildroot} %{python3_sitelib} py.test-%{python3_version} -v -k 'not (test_pip_download or test_old_setuptools_fails or test_old_setuptools_allows_with_warnings or test_distlib_setuptools_works)'
2017-08-15 16:29:32 +00:00
%endif
2015-10-21 15:13:26 +00:00
2019-11-16 22:37:35 +00:00
%if %{with python2}
2015-10-21 15:13:26 +00:00
%files -n python2-%{srcname}
2018-07-30 00:19:55 +00:00
%license LICENSE
2018-01-20 09:00:57 +00:00
%doc README.rst
2018-01-20 08:58:39 +00:00
%{python2_sitelib} /%{srcname} /
%{python2_sitelib} /%{srcname} -*.egg-info/
2019-11-16 22:37:35 +00:00
%endif
2015-10-21 15:13:26 +00:00
2018-07-30 00:19:55 +00:00
%files -n python%{python3_pkgversion}-%{srcname}
%license LICENSE
2018-01-20 09:00:57 +00:00
%doc README.rst
2017-04-10 15:35:04 +00:00
%{python3_sitelib} /%{srcname} /
%{python3_sitelib} /%{srcname} -*.egg-info
2015-10-21 15:13:26 +00:00
%changelog
2019-11-16 22:37:35 +00:00
* Sat Nov 16 2019 Orion Poplawski <orion@nwra.com> - 3.3.3-6
- Drop python2 for Fedora 32+/EPEL8+
2019-10-03 12:30:06 +00:00
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 3.3.3-5
- Rebuilt for Python 3.8.0rc1 (#1748018)
2019-08-15 22:56:53 +00:00
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 3.3.3-4
- Rebuilt for Python 3.8
2019-08-14 21:32:52 +00:00
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 3.3.3-3
- Bootstrap for Python 3.8
2019-07-26 16:14:38 +00:00
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2019-05-12 15:20:20 +00:00
* Sun May 12 2019 Orion Poplawski <orion@nwra.com> - 3.3.3-1
- Update to 3.3.3
2019-05-11 19:46:40 +00:00
* Sat May 11 2019 Orion Poplawski <orion@nwra.com> - 3.3.1-1
- Update to 3.3.1
2019-05-07 23:38:04 +00:00
* Tue May 7 2019 Orion Poplawski <orion@nwra.com> - 3.3.0-1
- Update to 3.3.0
2019-02-03 03:09:00 +00:00
* Sat Feb 2 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.2.0-1
- Update to 3.2.0
2019-02-02 09:17:09 +00:00
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2018-08-10 12:04:25 +00:00
* Fri Aug 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.1.0-1
- Update to 3.1.0
2018-07-30 00:19:55 +00:00
* Sun Jul 29 2018 Orion Poplawski <orion@nwra.com> - 3.0.4-1
- Update to 3.0.4
- Re-enable tests
2018-07-14 02:03:16 +00:00
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2018-06-16 00:35:01 +00:00
* Sat Jun 16 2018 Miro Hrončok <mhroncok@redhat.com> - 2.1.0-3
- Rebuilt for Python 3.7
2018-06-13 22:06:44 +00:00
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 2.1.0-2
- Bootstrap for Python 3.7
2018-05-14 12:01:29 +00:00
* Mon May 14 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.1.0-1
- Update to 2.1.0
2018-02-09 10:48:26 +00:00
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.7-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2018-01-20 09:00:57 +00:00
* Sat Jan 20 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.15.7-1
- Update to 1.15.7
2017-11-07 11:07:00 +00:00
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.15.6-7
- Use better Obsoletes for platform-python
2017-11-03 21:50:18 +00:00
* Fri Nov 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.15.6-6
- Remove platform-python subpackage
2017-08-24 12:37:34 +00:00
* Thu Aug 24 2017 Miro Hrončok <mhroncok@redhat.com> - 1.15.6-5
- Rebuilt for rhbz#1484607
2017-08-20 08:01:54 +00:00
* Sun Aug 20 2017 Tomas Orsava <torsava@redhat.com> - 1.15.6-4
- Re-enable tests to finish bootstrapping the platform-python stack
(https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
2017-08-15 16:29:32 +00:00
* Thu Aug 10 2017 Lumír Balhar <lbalhar@redhat.com> - 1.15.6-3
- Add subpackage for platform-python
- Disable tests so platform-python stack can be bootstrapped
(https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
2017-07-27 11:48:33 +00:00
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.6-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-06-16 02:17:38 +00:00
* Thu Jun 15 2017 Orion Poplawski <orion@cora.nwra.com> - 1.15.6-1
- Update to 1.15.6
2017-04-10 15:35:04 +00:00
* Mon Apr 10 2017 Orion Poplawski <orion@cora.nwra.com> - 1.15.5-1
- Update to 1.15.5
2017-02-11 10:27:43 +00:00
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2017-02-04 21:51:20 +00:00
* Sat Feb 04 2017 Kevin Fenzi <kevin@scrye.com> - 1.15.0-1
- Update to 1.15.0
2016-12-13 14:23:31 +00:00
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 1.13.0-2
- Rebuild for Python 3.6
2016-10-10 15:55:18 +00:00
* Mon Oct 10 2016 Parag Nemade <pnemade AT redhat DOT com> - 1.13.0-1
- Update to 1.13.0
2016-07-19 11:38:56 +00:00
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.1-4
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
2016-02-04 20:55:22 +00:00
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2016-01-04 21:22:05 +00:00
* Mon Jan 4 2016 Orion Poplawski <orion@cora.nwra.com> - 1.10.1-2
- No python2 package on EPEL (setuptools too old)
2015-12-17 17:29:04 +00:00
* Thu Dec 17 2015 Orion Poplawski <orion@cora.nwra.com> - 1.10.1-1
- Update to 1.10.1
2015-12-02 16:46:25 +00:00
* Wed Dec 2 2015 Orion Poplawski <orion@cora.nwra.com> - 1.9.0-1
- Update to 1.9.0
2015-11-10 17:22:58 +00:00
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.0-3
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
2015-10-21 15:13:26 +00:00
* Mon Oct 19 2015 Orion Poplawski <orion@cora.nwra.com> - 1.8.0-2
- Cleanup stray .pyc files from tests
* Sat Sep 19 2015 Orion Poplawski <orion@cora.nwra.com> - 1.8.0-1
- Update to 1.8.0
- Fix license tag
* Mon Sep 14 2015 Orion Poplawski <orion@cora.nwra.com> - 1.7.0-1
- Initial package