rebuilt with python 3.11 as py3 (bootstrap mode via pip) [release 1.0.0-2mamba;Sat Sep 23 2023]
This commit is contained in:
parent
044377ab2b
commit
caac189415
@ -1,19 +1,19 @@
|
|||||||
%define pkgname %(echo %name | cut -d- -f2- | tr - _)
|
%define pkgname %(echo %name | cut -d- -f2- | tr - _)
|
||||||
Name: python-pyproject_hooks
|
Name: python-pyproject_hooks
|
||||||
Version: 1.0.0
|
Version: 1.0.0
|
||||||
Release: 1mamba
|
Release: 2mamba
|
||||||
Summary: Wrappers to call pyproject.toml-based build backend hooks
|
Summary: Wrappers to call pyproject.toml-based build backend hooks
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: https://pyproject-hooks.readthedocs.io/
|
URL: https://pyproject-hooks.readthedocs.io/en/latest/
|
||||||
Source: https://pypi.debian.net/pyproject_hooks/pyproject_hooks-%{version}.tar.gz
|
Source: https://pypi.debian.net/pyproject_hooks/pyproject_hooks-%{version}.tar.gz
|
||||||
License: MIT
|
License: MIT
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: libpython3-devel
|
BuildRequires: libpython311-devel
|
||||||
BuildRequires: python3.7dist(tomli)
|
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRequires: libpython3-devel >= 3.11
|
||||||
|
|
||||||
%description
|
%description
|
||||||
%{summary}.
|
%{summary}.
|
||||||
@ -26,11 +26,26 @@ BuildRequires: python3.7dist(tomli)
|
|||||||
%setup -q -n pyproject_hooks-%{version}
|
%setup -q -n pyproject_hooks-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
%if "0%{?with_pyver}" == "03"
|
||||||
|
# Bootstrap
|
||||||
|
virtualenv-py310 -p %{__python3} env
|
||||||
|
source env/bin/activate
|
||||||
|
pip install build installer flit_core
|
||||||
|
CFLAGS="%{optflags}" python -m build --no-isolation --wheel
|
||||||
|
%else
|
||||||
CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel
|
CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel
|
||||||
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%if "0%{?with_pyver}" == "03"
|
||||||
|
# Bootstrap
|
||||||
|
. ./env/bin/activate
|
||||||
|
python -m installer --destdir=%{buildroot} --prefix=%{_prefix} dist/*.whl
|
||||||
|
%else
|
||||||
%{__python} -m installer --destdir=%{buildroot} dist/*.whl
|
%{__python} -m installer --destdir=%{buildroot} dist/*.whl
|
||||||
|
%endif
|
||||||
|
|
||||||
#%if "%{?with_pyver}" != "3"
|
#%if "%{?with_pyver}" != "3"
|
||||||
## Rename any conflicting file outside of python site packages tree
|
## Rename any conflicting file outside of python site packages tree
|
||||||
@ -48,5 +63,8 @@ CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel
|
|||||||
%doc LICENSE
|
%doc LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Sep 23 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-2mamba
|
||||||
|
- rebuilt with python 3.11 as py3 (bootstrap mode via pip)
|
||||||
|
|
||||||
* Mon Mar 06 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-1mamba
|
* Mon Mar 06 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-1mamba
|
||||||
- package created using the webbuild interface
|
- package created using the webbuild interface
|
||||||
|
Loading…
Reference in New Issue
Block a user