python-packaging/python-packaging.spec
Matej Cepl f434ab2916 Accepting request 989214 from home:bnavigator:branches:devel:languages:python
- Setuptools itself does not depend on packaging anymore, only for
  pythondistdeps.py, That dependency will move to
  python-rpm-packaging soon. -- boo#1178257
- Use "setuptools" for building again.
  * Python 3.12 will drop the distutils fallback
  * Use the python-base vendored pip in a venv
  * Drop no-legacyversion-warning.patch
- Remove nonsensical python362 flavor check.

OBS-URL: https://build.opensuse.org/request/show/989214
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-packaging?expand=0&rev=59
2022-07-15 11:00:25 +00:00

101 lines
3.3 KiB
RPMSpec

#
# spec file
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python3-%{**}}
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
# in order to avoid rewriting for subpackage generator
%define mypython python
%define skip_python2 1
Name: python-packaging%{psuffix}
Version: 21.3
Release: 0
Summary: Core utilities for Python packages
License: Apache-2.0 AND BSD-2-Clause
URL: https://github.com/pypa/packaging
Source: https://files.pythonhosted.org/packages/source/p/packaging/packaging-%{version}.tar.gz
# Fix testsuite on big-endian systems
# see: https://github.com/pypa/packaging/pull/538
Patch2: fix-big-endian-build.patch
BuildRequires: %{python_module base}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
#!BuildIgnore: post-build-checks-malwarescan
# ! Do not add setuptools build dependency here, so that we can get this into Ring0 !
# ! Also make sure all runtime dependencies don't require setuptools. !
Requires: python-pyparsing >= 2.0.2
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module pretend}
BuildRequires: %{python_module pyparsing >= 2.0.2}
BuildRequires: %{python_module pytest}
%endif
# See boo#1186870, we can't provide ourselves to pythondistdeps.py
Provides: %{mypython}%{python_version}dist(packaging) = %{version}-%{release}
%if "%{python_flavor}" == "python3" || "%{python_provides}" == "python3"
Provides: %{mypython}3dist(packaging) = %{version}-%{release}
%endif
%python_subpackages
%description
Core utilities for Python packages
%prep
%autosetup -p1 -n packaging-%{version}
%if !%{with test}
%build
%{python_expand # build using pythonXX-base bundled setuptools
$python -m venv venv-%{$python_bin_suffix}
venv-%{$python_bin_suffix}/bin/python setup.py build
}
%endif
%if !%{with test}
%install
%{python_expand # install using pythonXX-base bundled setuptools.
# This will work until deprecated support of setup.py install is removed from the bundled setuptools.
# Hopefully upstream packaging comes up with a better bootstrapping process by then.
# (https://github.com/pypa/packaging/pull/536, https://github.com/pypa/packaging/pull/546)
venv-%{$python_bin_suffix}/bin/python setup.py install \
-O1 --skip-build --force --root %{buildroot} --prefix %{_prefix}
%fdupes %{buildroot}%{$python_sitelib}
}
%endif
%if %{with test}
%check
%pytest
%endif
%if !%{with test}
%files %{python_files}
%license LICENSE LICENSE.APACHE LICENSE.BSD
%doc CHANGELOG.rst README.rst
%{python_sitelib}/packaging
%{python_sitelib}/packaging-%{version}*-info
%endif
%changelog