package created using the webbuild interface [release 0.13.3-1mamba;Sat Oct 04 2025]

This commit is contained in:
2025-10-05 00:49:51 +02:00
parent f63fe1ea76
commit 1226d60a09
2 changed files with 58 additions and 0 deletions
+2
View File
@@ -1,2 +1,4 @@
# python-ruff
An extremely fast Python linter and code formatter, written in Rust.
+56
View File
@@ -0,0 +1,56 @@
%define pkgname %(echo %name | cut -d- -f2- | tr - _)
Name: python-ruff
Version: 0.13.3
Release: 1mamba
Summary: An extremely fast Python linter and code formatter, written in Rust
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://docs.astral.sh/ruff
Source: https://pypi.debian.net/ruff/ruff-%{version}.tar.gz
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libpython311-devel
## AUTOBUILDREQ-END
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%define debug_package %{nil}
%prep
%setup -q -n ruff-%{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)
%{_bindir}/ruff
%dir %{python_sitearch}/%{pkgname}-%{version}.dist-info
%{python_sitearch}/%{pkgname}-%{version}.dist-info/*
%dir %{python_sitearch}/%{pkgname}
%{python_sitearch}/%{pkgname}/*
%doc LICENSE
%changelog
* Sat Oct 04 2025 Silvan Calarco <silvan.calarco@mambasoft.it> 0.13.3-1mamba
- package created using the webbuild interface