Accepting request 1064336 from home:dirkmueller:acdc
OBS-URL: https://build.opensuse.org/request/show/1064336 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flit-core?expand=0&rev=37
This commit is contained in:
parent
f92425187b
commit
455497a7ea
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 10 14:01:13 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Don't use :primary multibuild flavor for non-Tumbleweed
|
||||||
|
* accomodates special SLE15 projects defininig extra flavors but
|
||||||
|
not building for primary python3
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 27 15:43:53 UTC 2023 - Antonio Larrosa <alarrosa@suse.com>
|
Fri Jan 27 15:43:53 UTC 2023 - Antonio Larrosa <alarrosa@suse.com>
|
||||||
|
|
||||||
|
@ -17,33 +17,39 @@
|
|||||||
|
|
||||||
|
|
||||||
%define modname flit-core
|
%define modname flit-core
|
||||||
%define mypython python
|
|
||||||
# fallback if primary_python is not available from the project configuration
|
|
||||||
%{?!primary_python:%define primary_python python3%{?!sle_version:10}}
|
|
||||||
%global flavor @BUILD_FLAVOR@%{nil}
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||||||
|
%define plainpython python
|
||||||
|
%if 0%{?suse_version} >= 1550
|
||||||
|
# The primary python flavor is built in Factory Ring0
|
||||||
%if "%{flavor}" == "primary"
|
%if "%{flavor}" == "primary"
|
||||||
# this one is built in Ring0
|
|
||||||
%define pprefix %{primary_python}
|
%define pprefix %{primary_python}
|
||||||
%define pythons %{primary_python}
|
%define pythons %{primary_python}
|
||||||
%endif
|
%endif
|
||||||
|
# Additional flavors are built in Factory Ring1
|
||||||
%if "%{flavor}" == ""
|
%if "%{flavor}" == ""
|
||||||
# The rest is in Ring1
|
|
||||||
%define pprefix python
|
%define pprefix python
|
||||||
%if 0%{?suse_version} >= 1550
|
|
||||||
BuildRequires: python3-base >= 3.6
|
|
||||||
%{expand:%%define skip_%{primary_python} 1}
|
%{expand:%%define skip_%{primary_python} 1}
|
||||||
%else
|
# ... unless the build set is empty. (We can't use shrink server-side and any skips here or on project level may have left spaces)
|
||||||
%define python_module() no-build-without-multibuild-flavor
|
%if "%{pythons}" == "" || "%{pythons}" == " " || "%{pythons}" == " " || "%{pythons}" == " " || "%{pythons}" == " "
|
||||||
# no non-primary python in <=15.5
|
# Exclude for local osc build: unresolvable
|
||||||
|
%define python_module() empty-python-buildset
|
||||||
|
# Exclude for obs server
|
||||||
ExclusiveArch: do-not-build
|
ExclusiveArch: do-not-build
|
||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
|
%else
|
||||||
|
# backport and option d projects for 15.X having one or more python in the buildset don't need the Ring split for bootstrap
|
||||||
|
%if "%{flavor}" == "primary"
|
||||||
|
%define python_module() invalid-multibuild-flavor-for-15.X
|
||||||
|
ExclusiveArch: do-not-build
|
||||||
|
%else
|
||||||
|
%define pprefix python
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
# test everything in the buildset by standard python flavor expansion: primary and non-primary, if any.
|
||||||
%if "%{flavor}" == "test"
|
%if "%{flavor}" == "test"
|
||||||
%define pprefix python
|
%define pprefix python
|
||||||
%define psuffix -test
|
%define psuffix -test
|
||||||
%bcond_without test
|
|
||||||
%else
|
|
||||||
%bcond_with test
|
|
||||||
%endif
|
%endif
|
||||||
Name: %{pprefix}-flit-core%{?psuffix}
|
Name: %{pprefix}-flit-core%{?psuffix}
|
||||||
Version: 3.8.0
|
Version: 3.8.0
|
||||||
@ -56,21 +62,20 @@ BuildRequires: %{python_module base >= 3.6}
|
|||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%if %{with test}
|
%if "%{flavor}" == "test"
|
||||||
BuildRequires: %{python_module flit-core = %{version}}
|
BuildRequires: %{python_module flit-core = %{version}}
|
||||||
BuildRequires: %{python_module packaging}
|
BuildRequires: %{python_module packaging}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module testpath}
|
BuildRequires: %{python_module testpath}
|
||||||
%else
|
%endif
|
||||||
# SECTION boo#1186870: we are a transitive build dependency of python-packaging which is used by pythondistdeps.py normally creating this entry
|
# SECTION boo#1186870: we are a transitive build dependency of python-packaging which is used by pythondistdeps.py normally creating this entry
|
||||||
#!BuildIgnore: %{primary_python}-packaging
|
#!BuildIgnore: %{primary_python}-packaging
|
||||||
#!BuildIgnore: python3-packaging
|
#!BuildIgnore: python3-packaging
|
||||||
%endif
|
Provides: %{plainpython}%{python_version}dist(%{modname}) = %{version}
|
||||||
Provides: %{mypython}%{python_version}dist(%{modname}) = %{version}
|
|
||||||
%if "%{python_flavor}" == "python3" || "%{python_provides}" == "python3"
|
%if "%{python_flavor}" == "python3" || "%{python_provides}" == "python3"
|
||||||
Provides: %{mypython}3-%{modname} = %{version}-%{release}
|
Provides: %{plainpython}3-%{modname} = %{version}-%{release}
|
||||||
Provides: %{mypython}3dist(%{modname}) = %{version}
|
Provides: %{plainpython}3dist(%{modname}) = %{version}
|
||||||
Obsoletes: %{mypython}3-%{modname} < %{version}-%{release}
|
Obsoletes: %{plainpython}3-%{modname} < %{version}-%{release}
|
||||||
%endif
|
%endif
|
||||||
# /SECTION
|
# /SECTION
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
@ -82,10 +87,11 @@ The only public interface is the API specified by PEP 517, at flit_core.buildapi
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -n flit_core-%{version}
|
%setup -q -n flit_core-%{version}
|
||||||
|
|
||||||
%if !%{with test}
|
%if "%{flavor}" != "test"
|
||||||
%build
|
%build
|
||||||
# https://flit.readthedocs.io/en/latest/bootstrap.html
|
# https://flit.readthedocs.io/en/latest/bootstrap.html, take the first available python in the build set
|
||||||
python3 -m flit_core.wheel
|
mypython=%{expand:%%__%(echo %{pythons} | cut -d " " -f 1)}
|
||||||
|
$mypython -m flit_core.wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{python_expand #
|
%{python_expand #
|
||||||
@ -98,14 +104,14 @@ rm -r %{buildroot}%{$python_sitelib}/flit_core/tests
|
|||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{with test}
|
%if "%{flavor}" == "test"
|
||||||
%check
|
%check
|
||||||
# make sure we do not test the sources but the package
|
# make sure we do not test the sources but the package
|
||||||
rm flit_core/*.py pyproject.toml
|
rm flit_core/*.py pyproject.toml
|
||||||
%pytest -rfEs
|
%pytest -rfEs
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if !%{with test}
|
%if "%{flavor}" != "test"
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%{python_sitelib}/flit_core
|
%{python_sitelib}/flit_core
|
||||||
%{python_sitelib}/flit_core-%{version}*-info
|
%{python_sitelib}/flit_core-%{version}*-info
|
||||||
|
Loading…
Reference in New Issue
Block a user