2016-09-16 19:59:27 +00:00
|
|
|
%global pypi_name packaging
|
|
|
|
|
2017-03-22 13:16:41 +00:00
|
|
|
%if 0%{?fedora}
|
2017-02-15 12:48:41 +00:00
|
|
|
%global build_wheel 1
|
2017-03-22 13:16:41 +00:00
|
|
|
%global with_python3 1
|
|
|
|
%endif
|
2017-02-15 12:48:41 +00:00
|
|
|
|
2018-06-14 11:56:37 +00:00
|
|
|
# Use this when bootstraping python3-sphinx
|
|
|
|
%bcond_with bootstrap
|
|
|
|
|
2017-02-15 12:48:41 +00:00
|
|
|
%global python2_wheelname %{pypi_name}-%{version}-py2.py3-none-any.whl
|
|
|
|
%global python3_wheelname %python2_wheelname
|
|
|
|
|
2016-09-16 19:59:27 +00:00
|
|
|
Name: python-%{pypi_name}
|
2016-11-03 09:56:49 +00:00
|
|
|
Version: 16.8
|
2018-02-09 13:39:59 +00:00
|
|
|
Release: 8%{?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
|
|
|
|
|
|
|
# Dependencies with different names in Fedora and Epel7
|
|
|
|
%if 0%{?fedora}
|
2016-09-16 19:59:27 +00:00
|
|
|
BuildRequires: python2-setuptools
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
BuildRequires: python2-pytest
|
|
|
|
BuildRequires: python2-pyparsing
|
2017-03-22 11:19:41 +00:00
|
|
|
%else
|
|
|
|
BuildRequires: python-setuptools
|
|
|
|
BuildRequires: python-devel
|
|
|
|
BuildRequires: pytest
|
|
|
|
BuildRequires: pyparsing
|
|
|
|
BuildRequires: python-sphinx
|
|
|
|
%endif
|
|
|
|
|
2018-02-09 13:39:59 +00:00
|
|
|
BuildRequires: python2-pretend
|
|
|
|
BuildRequires: python2-six
|
2017-03-22 11:19:41 +00:00
|
|
|
|
|
|
|
# Build Python 3 subpackage only for Fedora
|
2017-03-22 13:16:41 +00:00
|
|
|
%if 0%{?with_python3}
|
2017-03-22 11:19:41 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
BuildRequires: python%{python3_pkgversion}-pytest
|
|
|
|
BuildRequires: python%{python3_pkgversion}-pretend
|
|
|
|
BuildRequires: python%{python3_pkgversion}-pyparsing
|
|
|
|
BuildRequires: python%{python3_pkgversion}-six
|
2018-06-14 11:56:37 +00:00
|
|
|
%if %{without bootstrap}
|
2017-03-22 11:19:41 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinx
|
2018-06-14 11:56:37 +00:00
|
|
|
%else
|
|
|
|
# When bootstrapping, we'll use Python 2 sphinx
|
|
|
|
BuildRequires: python2-sphinx
|
|
|
|
%endif
|
2017-03-22 11:19:41 +00:00
|
|
|
%endif
|
2016-09-16 19:59:27 +00:00
|
|
|
|
2017-02-15 12:48:41 +00:00
|
|
|
%if 0%{?build_wheel}
|
|
|
|
BuildRequires: python2-pip
|
2018-02-09 13:39:59 +00:00
|
|
|
BuildRequires: python2-wheel
|
2017-03-22 13:16:41 +00:00
|
|
|
%if 0%{?with_python3}
|
2017-02-15 12:48:41 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-pip
|
|
|
|
BuildRequires: python%{python3_pkgversion}-wheel
|
|
|
|
%endif
|
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 python2-%{pypi_name}
|
|
|
|
Summary: %{summary}
|
|
|
|
%{?python_provide:%python_provide python2-%{pypi_name}}
|
2017-03-22 11:19:41 +00:00
|
|
|
|
|
|
|
%if 0%{?fedora}
|
2016-09-16 19:59:27 +00:00
|
|
|
Requires: python2-pyparsing
|
2017-03-22 11:19:41 +00:00
|
|
|
%else
|
|
|
|
Requires: pyparsing
|
|
|
|
%endif
|
|
|
|
|
2018-02-09 13:39:59 +00:00
|
|
|
Requires: python2-six
|
2017-03-22 11:19:41 +00:00
|
|
|
|
2016-09-16 19:59:27 +00:00
|
|
|
%description -n python2-%{pypi_name}
|
|
|
|
python2-packaging provides core utilities for Python packages like utilities for
|
|
|
|
dealing with versions, specifiers, markers etc.
|
|
|
|
|
2017-03-22 13:16:41 +00:00
|
|
|
%if 0%{?with_python3}
|
2017-03-22 11:19:41 +00:00
|
|
|
%package -n python%{python3_pkgversion}-%{pypi_name}
|
2016-09-16 19:59:27 +00:00
|
|
|
Summary: %{summary}
|
2017-03-22 11:19:41 +00:00
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{pypi_name}}
|
2016-09-16 19:59:27 +00:00
|
|
|
|
2017-03-22 11:19:41 +00:00
|
|
|
Requires: python%{python3_pkgversion}-pyparsing
|
|
|
|
Requires: python%{python3_pkgversion}-six
|
|
|
|
%description -n python%{python3_pkgversion}-%{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.
|
2017-03-22 11:19:41 +00:00
|
|
|
%endif
|
2016-09-16 19:59:27 +00:00
|
|
|
|
|
|
|
%package -n python-%{pypi_name}-doc
|
|
|
|
Summary: python-packaging documentation
|
|
|
|
%description -n python-%{pypi_name}-doc
|
|
|
|
Documentation for python-packaging
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%autosetup -n %{pypi_name}-%{version}
|
|
|
|
# Remove bundled egg-info
|
|
|
|
rm -rf %{pypi_name}.egg-info
|
|
|
|
|
|
|
|
%build
|
2017-02-15 12:48:41 +00:00
|
|
|
%if 0%{?build_wheel}
|
|
|
|
%py2_build_wheel
|
|
|
|
%else
|
2016-09-16 19:59:27 +00:00
|
|
|
%py2_build
|
2017-02-15 12:48:41 +00:00
|
|
|
%endif
|
2017-03-22 13:16:41 +00:00
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
2017-02-15 12:48:41 +00:00
|
|
|
%if 0%{?build_wheel}
|
|
|
|
%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 13:16:41 +00:00
|
|
|
%endif
|
2017-03-22 11:19:41 +00:00
|
|
|
|
|
|
|
# generate html docs
|
2018-06-14 11:56:37 +00:00
|
|
|
%if 0%{?with_python3} && %{without bootstrap}
|
2016-09-16 19:59:27 +00:00
|
|
|
sphinx-build-3 docs html
|
2017-03-22 11:19:41 +00:00
|
|
|
%else
|
|
|
|
sphinx-build docs html
|
|
|
|
%endif
|
|
|
|
|
2016-09-16 19:59:27 +00:00
|
|
|
# remove the sphinx-build leftovers
|
|
|
|
rm -rf html/.{doctrees,buildinfo}
|
|
|
|
# Do not bundle fonts
|
|
|
|
rm -rf html/_static/fonts/
|
|
|
|
|
|
|
|
%install
|
2017-02-15 12:48:41 +00:00
|
|
|
%if 0%{?build_wheel}
|
|
|
|
%py2_install_wheel %{python2_wheelname}
|
|
|
|
%else
|
2016-09-16 19:59:27 +00:00
|
|
|
%py2_install
|
2017-02-15 12:48:41 +00:00
|
|
|
%endif
|
2017-03-22 13:16:41 +00:00
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
2017-02-15 12:48:41 +00:00
|
|
|
%if 0%{?build_wheel}
|
|
|
|
%py3_install_wheel %{python3_wheelname}
|
|
|
|
%else
|
2016-09-16 19:59:27 +00:00
|
|
|
%py3_install
|
2017-02-15 12:48:41 +00:00
|
|
|
%endif
|
2017-03-22 13:16:41 +00:00
|
|
|
%endif
|
2016-09-16 19:59:27 +00:00
|
|
|
|
|
|
|
%check
|
2017-03-22 11:19:41 +00:00
|
|
|
%if 0%{?fedora}
|
2016-09-16 19:59:27 +00:00
|
|
|
%{__python2} -m pytest tests/
|
|
|
|
%{__python3} -m pytest tests/
|
2017-03-22 11:19:41 +00:00
|
|
|
%else
|
|
|
|
# Disable non-working tests in Epel7
|
|
|
|
%{__python2} -m pytest --ignore=tests/test_requirements.py tests/
|
|
|
|
%endif
|
2016-09-16 19:59:27 +00:00
|
|
|
|
|
|
|
%files -n python2-%{pypi_name}
|
|
|
|
%license LICENSE LICENSE.APACHE LICENSE.BSD
|
|
|
|
%doc README.rst CHANGELOG.rst CONTRIBUTING.rst
|
|
|
|
%{python2_sitelib}/%{pypi_name}/
|
2017-03-22 13:16:41 +00:00
|
|
|
%{python2_sitelib}/%{pypi_name}-*-info/
|
2016-09-16 19:59:27 +00:00
|
|
|
|
2017-03-22 13:16:41 +00:00
|
|
|
%if 0%{?with_python3}
|
2017-03-22 11:19:41 +00:00
|
|
|
%files -n python%{python3_pkgversion}-%{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/
|
2017-03-22 11:19:41 +00:00
|
|
|
%endif
|
2016-09-16 19:59:27 +00:00
|
|
|
|
|
|
|
%files -n python-%{pypi_name}-doc
|
|
|
|
%doc html
|
|
|
|
%license LICENSE LICENSE.APACHE LICENSE.BSD
|
|
|
|
|
|
|
|
%changelog
|
2018-02-09 13:39:59 +00:00
|
|
|
* 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)
|
|
|
|
|
2018-02-09 09:33:07 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 16.8-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-07-27 11:11:49 +00:00
|
|
|
* 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
|
|
|
|
|
2017-02-11 09:52:09 +00:00
|
|
|
* 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
|
|
|
|
|
2016-11-03 09:56:49 +00:00
|
|
|
* 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.
|