diff --git a/README.md b/README.md index 2344216..853694b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-scikit-build-core +Build backend for CMake based projects. + diff --git a/python-scikit-build-core.spec b/python-scikit-build-core.spec new file mode 100644 index 0000000..9a81316 --- /dev/null +++ b/python-scikit-build-core.spec @@ -0,0 +1,54 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-scikit-build-core +Version: 0.11.5 +Release: 1mamba +Summary: Build backend for CMake based projects +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/scikit-build/scikit-build-core +Source: https://pypi.debian.net/scikit-build-core/scikit_build_core-%{version}.tar.gz +License: Apache License 2.0 +BuildArch: noarch +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython311-devel +BuildRequires: python3.11dist(packaging) +BuildRequires: python3.11dist(pathspec) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n scikit_build_core-%{version} + +%build +CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} -m installer --destdir=%{buildroot} dist/*.whl + +#%if "%{?with_pyver}" != "3" +## Rename any conflicting file outside of python site packages tree +#for f in %{_bindir}/pdm; do +# mv %{buildroot}${f}{,-%{?pyappend}} +#done +#%endif + +%files %{?pyappend} +%defattr(-,root,root) +%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info +%{python_sitelib}/%{pkgname}-%{version}.dist-info/* +%dir %{python_sitelib}/%{pkgname} +%{python_sitelib}/%{pkgname}/* +%doc LICENSE + +%changelog +* Sat Jul 19 2025 Silvan Calarco 0.11.5-1mamba +- package created using the webbuild interface