python-packaging/python-packaging.spec

187 lines
5.4 KiB
RPMSpec
Raw Normal View History

2016-09-16 19:59:27 +00:00
%global pypi_name packaging
# Specify --without wheel to prevent building the wheel
%bcond_without wheel
2017-02-15 12:48:41 +00:00
# Specify --without docs to prevent the dependency loop on python-sphinx
%bcond_without docs
2018-06-14 11:56:37 +00:00
2019-08-15 12:42:42 +00:00
# Specify --without tests to prevent the dependency loop on python-pytest
%bcond_without tests
%global python_wheelname %{pypi_name}-%{version}-py2.py3-none-any.whl
2017-02-15 12:48:41 +00:00
2016-09-16 19:59:27 +00:00
Name: python-%{pypi_name}
2020-01-27 09:26:46 +00:00
Version: 20.1
Release: 1%{?dist}
2016-09-16 19:59:27 +00:00
Summary: Core utilities for Python packages
License: BSD or ASL 2.0
URL: https://github.com/pypa/packaging
Source0: https://files.pythonhosted.org/packages/source/p/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
BuildArch: noarch
2017-03-22 11:19:41 +00:00
BuildRequires: python3-setuptools
BuildRequires: python3-devel
BuildRequires: python3-pyparsing
BuildRequires: python3-six
2019-08-15 12:42:42 +00:00
%if %{with tests}
BuildRequires: python3-pytest
BuildRequires: python3-pretend
2019-08-15 12:42:42 +00:00
%endif
%if %{with docs}
BuildRequires: python3-sphinx
2017-03-22 11:19:41 +00:00
%endif
2016-09-16 19:59:27 +00:00
%if %{with wheel}
BuildRequires: python3-pip
BuildRequires: python3-wheel
2017-03-22 13:16:41 +00:00
%endif
2017-02-15 12:48:41 +00:00
2016-09-16 19:59:27 +00:00
%description
python-packaging provides core utilities for Python packages like utilities for
dealing with versions, specifiers, markers etc.
%package -n python3-%{pypi_name}
2016-09-16 19:59:27 +00:00
Summary: %{summary}
%{?python_provide:%python_provide python3-%{pypi_name}}
Requires: python3-pyparsing
Requires: python3-six
%description -n python3-%{pypi_name}
2016-09-16 19:59:27 +00:00
python3-packaging provides core utilities for Python packages like utilities for
dealing with versions, specifiers, markers etc.
%if %{with docs}
2016-09-16 19:59:27 +00:00
%package -n python-%{pypi_name}-doc
Summary: python-packaging documentation
2016-09-16 19:59:27 +00:00
%description -n python-%{pypi_name}-doc
Documentation for python-packaging
%endif
2016-09-16 19:59:27 +00:00
%prep
%autosetup -n %{pypi_name}-%{version}
# Remove bundled egg-info
rm -rf %{pypi_name}.egg-info
%build
%if %{with wheel}
2017-02-15 12:48:41 +00:00
%py3_build_wheel
%else
2016-09-16 19:59:27 +00:00
%py3_build
2017-02-15 12:48:41 +00:00
%endif
2017-03-22 11:19:41 +00:00
%if %{with docs}
2017-03-22 11:19:41 +00:00
# generate html docs
2016-09-16 19:59:27 +00:00
sphinx-build-3 docs html
# remove the sphinx-build leftovers
rm -rf html/.{doctrees,buildinfo}
# Do not bundle fonts
rm -rf html/_static/fonts/
%endif
2016-09-16 19:59:27 +00:00
%install
%if %{with wheel}
%py3_install_wheel %{python_wheelname}
2017-02-15 12:48:41 +00:00
%else
2016-09-16 19:59:27 +00:00
%py3_install
2017-02-15 12:48:41 +00:00
%endif
2016-09-16 19:59:27 +00:00
2019-08-15 12:42:42 +00:00
%if %{with tests}
2016-09-16 19:59:27 +00:00
%check
2020-01-06 10:39:15 +00:00
# Ignore test_linux_platforms_manylinux* tests because they seems to be arch-dependant
# GH: https://github.com/pypa/packaging/issues/254
%{__python3} -m pytest -k \
'not test_linux_platforms_manylinux1 and not test_linux_platforms_manylinux2010 and not test_linux_platforms_manylinux2014' \
tests/
2019-08-15 12:42:42 +00:00
%endif
2016-09-16 19:59:27 +00:00
%files -n python3-%{pypi_name}
2016-09-16 19:59:27 +00:00
%license LICENSE LICENSE.APACHE LICENSE.BSD
%doc README.rst CHANGELOG.rst CONTRIBUTING.rst
%{python3_sitelib}/%{pypi_name}/
2017-03-22 13:16:41 +00:00
%{python3_sitelib}/%{pypi_name}-*-info/
2016-09-16 19:59:27 +00:00
%if %{with docs}
2016-09-16 19:59:27 +00:00
%files -n python-%{pypi_name}-doc
%doc html
%license LICENSE LICENSE.APACHE LICENSE.BSD
%endif
2016-09-16 19:59:27 +00:00
%changelog
2020-01-27 09:26:46 +00:00
* Mon Jan 27 2020 Lumír Balhar <lbalhar@redhat.com> - 20.1-1
- Update to 20.1 (#1794865)
2020-01-06 10:39:15 +00:00
* Mon Jan 06 2020 Lumír Balhar <lbalhar@redhat.com> - 20.0-2
- Ignore broken tests
2020-01-06 08:05:18 +00:00
* Mon Jan 06 2020 Lumír Balhar <lbalhar@redhat.com> - 20.0-1
- Update to 20.0 (#1788012)
2019-09-26 09:52:32 +00:00
* Thu Sep 26 2019 Lumír Balhar <lbalhar@redhat.com> - 19.2-1
- New upstream version 19.2 (bz#1742388)
* Mon Sep 23 2019 Lumír Balhar <lbalhar@redhat.com> - 19.0-6
- Remove Python 2 subpackage
- Make spec fedora-specific
* Mon Sep 02 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0-5
- Reduce Python 2 build time dependencies
2019-08-16 14:39:35 +00:00
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0-4
- Rebuilt for Python 3.8
2019-08-15 12:43:24 +00:00
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0-3
- Bootstrap for Python 3.8
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2019-02-05 09:20:42 +00:00
* Mon Feb 04 2019 Lumír Balhar <lbalhar@redhat.com> - 19.0-1
- New upstream version
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 17.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2018-03-14 16:50:34 +00:00
* Tue Jul 31 2018 Charalampos Stratakis <cstratak@redhat.com> - 17.1-1
- Update to 17.1
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 16.8-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2018-06-16 00:01:36 +00:00
* Sat Jun 16 2018 Miro Hrončok <mhroncok@redhat.com> - 16.8-10
- Rebuilt for Python 3.7
2018-06-14 12:13:15 +00:00
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 16.8-9
- Bootstrap for Python 3.7
* Fri Feb 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 16.8-8
- Update Python 2 dependency declarations to new packaging standards
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 16.8-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 16.8-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-03-22 13:16:41 +00:00
* Wed Mar 22 2017 Lumir Balhar <lbalhar@redhat.com> - 16.8-5
2017-03-22 11:19:41 +00:00
- Epel7 compatible spec/package
2017-02-15 12:48:41 +00:00
* Mon Feb 13 2017 Charalampos Stratakis <cstratak@redhat.com> - 16.8-4
- Rebuild as wheel
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 16.8-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2016-12-19 17:20:37 +00:00
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 16.8-2
- Rebuild for Python 3.6
* Wed Nov 02 2016 Lumir Balhar <lbalhar@redhat.com> - 16.8-1
- New upstream version
2016-09-16 19:59:27 +00:00
* Fri Sep 16 2016 Lumir Balhar <lbalhar@redhat.com> - 16.7-1
- Initial package.