python-setuptools_scm/python-setuptools_scm.spec

212 lines
5.9 KiB
RPMSpec
Raw Normal View History

2016-01-04 17:31:29 +00:00
%{!?python3_pkgversion:%global python3_pkgversion 3}
%bcond_without tests
2017-08-15 16:29:32 +00:00
# EL7 does not have a new enough python-setuptools
%if 0%{?rhel} && 0%{?rhel} <= 7
2017-08-15 16:29:32 +00:00
%bcond_with python2
%bcond_with python3
%bcond_with platform_python
%else
2017-08-15 16:29:32 +00:00
%bcond_without python2
%bcond_without python3
%bcond_without platform_python
%endif
2015-10-21 15:13:26 +00:00
%global srcname setuptools_scm
%global sum The blessed package to manage your versions by scm tags
Name: python-%{srcname}
2017-06-16 02:17:38 +00:00
Version: 1.15.6
2017-08-24 12:37:34 +00:00
Release: 5%{?dist}
2015-10-21 15:13:26 +00:00
Summary: %{sum}
License: MIT
2016-10-10 15:55:18 +00:00
URL: https://pypi.python.org/pypi/%{srcname}
Source0: https://files.pythonhosted.org/packages/source/s/%{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 python2}
2016-01-04 17:31:29 +00:00
BuildRequires: python2-devel
2017-08-15 16:29:32 +00:00
BuildRequires: python2-setuptools
%endif
%if %{with python3}
2016-01-04 17:31:29 +00:00
BuildRequires: python%{python3_pkgversion}-devel
2017-08-15 16:29:32 +00:00
BuildRequires: python%{python3_pkgversion}-setuptools
%endif
%if %{with platform_python}
BuildRequires: platform-python-devel
BuildRequires: platform-python-setuptools
%endif
# For tests
%if %{with tests}
%if %{with python2}
2015-10-21 15:13:26 +00:00
BuildRequires: pytest
2017-08-15 16:29:32 +00:00
%endif
%if %{with python3}
2016-01-04 17:31:29 +00:00
BuildRequires: python%{python3_pkgversion}-pytest
2017-08-15 16:29:32 +00:00
%endif
%if %{with platform_python}
BuildRequires: platform-python-pytest
%endif
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
Setuptools_scm handles managing your python package versions in scm metadata.
It also handles file finders for the suppertes scms.
2017-08-15 16:29:32 +00:00
%if %{with python2}
2015-10-21 15:13:26 +00:00
%package -n python2-%{srcname}
Summary: %{sum}
%{?python_provide:%python_provide python2-%{srcname}}
%description -n python2-%{srcname}
Setuptools_scm handles managing your python package versions in scm metadata.
It also handles file finders for the suppertes scms.
2017-08-15 16:29:32 +00:00
%endif
2015-10-21 15:13:26 +00:00
2017-08-15 16:29:32 +00:00
%if %{with python3}
2016-01-04 17:31:29 +00:00
%package -n python%{python3_pkgversion}-%{srcname}
2015-10-21 15:13:26 +00:00
Summary: %{sum}
2016-01-04 17:31:29 +00:00
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
2015-10-21 15:13:26 +00:00
2016-01-04 17:31:29 +00:00
%description -n python%{python3_pkgversion}-%{srcname}
2015-10-21 15:13:26 +00:00
Setuptools_scm handles managing your python package versions in scm metadata.
It also handles file finders for the suppertes scms.
2017-08-15 16:29:32 +00:00
%endif
2015-10-21 15:13:26 +00:00
2017-08-15 16:29:32 +00:00
%if %{with platform_python}
%package -n platform-python-%{srcname}
Summary: %{sum}
%description -n platform-python-%{srcname}
Setuptools_scm handles managing your python package versions in scm metadata.
It also handles file finders for the suppertes scms.
%endif
2015-10-21 15:13:26 +00:00
%prep
%autosetup -n %{srcname}-%{version}
%build
2017-08-15 16:29:32 +00:00
%if %{with python2}
2015-10-21 15:13:26 +00:00
%py2_build
%endif
2017-08-15 16:29:32 +00:00
%if %{with python3}
2015-10-21 15:13:26 +00:00
%py3_build
2017-08-15 16:29:32 +00:00
%endif
%if %{with platform_python}
%platform_py_build
%endif # with platform_python
2015-10-21 15:13:26 +00:00
%install
2017-08-15 16:29:32 +00:00
%if %{with python2}
2015-10-21 15:13:26 +00:00
%py2_install
%endif
2017-08-15 16:29:32 +00:00
%if %{with python3}
2015-10-21 15:13:26 +00:00
%py3_install
2017-08-15 16:29:32 +00:00
%endif
%if %{with platform_python}
%platform_py_install
%endif # with platform_python
2015-10-21 15:13:26 +00:00
2017-08-15 16:29:32 +00:00
%if %{with tests}
2015-10-21 15:13:26 +00:00
%check
2017-08-15 16:29:32 +00:00
%if %{with python2}
2015-10-21 15:13:26 +00:00
PYTHONPATH=%{buildroot}%{python2_sitelib} py.test-%{python2_version} -vv
%endif
2017-08-15 16:29:32 +00:00
%if %{with python3}
2015-10-21 15:13:26 +00:00
PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version} -vv
2017-08-15 16:29:32 +00:00
%endif
%if %{with platform_python}
PYTHONPATH=%{buildroot}%{platform_python_sitelib} py.test-%{platform_python_version} -vv
%endif # with platform_python
%endif # with tests
2015-10-21 15:13:26 +00:00
2017-08-15 16:29:32 +00:00
%if %{with python2}
2015-10-21 15:13:26 +00:00
%files -n python2-%{srcname}
%license LICENSE
%doc CHANGELOG.rst README.rst
%{python2_sitelib}/*
%endif
2015-10-21 15:13:26 +00:00
2017-08-15 16:29:32 +00:00
%if %{with python3}
2016-01-04 17:31:29 +00:00
%files -n python%{python3_pkgversion}-%{srcname}
2015-10-21 15:13:26 +00:00
%license LICENSE
%doc CHANGELOG.rst README.rst
2017-04-10 15:35:04 +00:00
%{python3_sitelib}/%{srcname}/
%{python3_sitelib}/%{srcname}-*.egg-info
2017-08-15 16:29:32 +00:00
%endif
2017-04-10 15:35:04 +00:00
2017-08-15 16:29:32 +00:00
%if %{with platform_python}
%files -n platform-python-%{srcname}
%license LICENSE
%doc CHANGELOG.rst README.rst
%{platform_python_sitelib}/%{srcname}/
%{platform_python_sitelib}/%{srcname}-*.egg-info
%endif
2015-10-21 15:13:26 +00:00
%changelog
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
* 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)
* 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
* 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
* 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
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* 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
* 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