From 1cb7ff73c52c97fd9d08ba8c3cd54d41abc67eeb Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 11:09:49 +0100 Subject: [PATCH] package created using the webbuild interface [release 3.9.0-1mamba;Fri Dec 29 2023] --- README.md | 2 ++ python-flit.spec | 56 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 python-flit.spec diff --git a/README.md b/README.md index 2aecf0a..9a9ea3a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-flit +A simple packaging tool for simple packages. + diff --git a/python-flit.spec b/python-flit.spec new file mode 100644 index 0000000..4d83716 --- /dev/null +++ b/python-flit.spec @@ -0,0 +1,56 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-flit +Version: 3.9.0 +Release: 1mamba +Summary: A simple packaging tool for simple packages +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://flit.pypa.io/en/stable/ +Source: https://pypi.debian.net/flit/flit-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython311-devel +BuildRequires: python3.11dist(docutils) +BuildRequires: python3.11dist(flit-core) +BuildRequires: python3.11dist(requests) +BuildRequires: python3.11dist(tomli-w) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n flit-%{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}/flit; do + mv %{buildroot}${f}{,-%{?pyappend}} +done +%endif + +%files %{?pyappend} +%defattr(-,root,root) +%{_bindir}/flit* +%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info +%{python_sitelib}/%{pkgname}-%{version}.dist-info/* +%dir %{python_sitelib}/%{pkgname} +%{python_sitelib}/%{pkgname}/* +%doc LICENSE + +%changelog +* Fri Dec 29 2023 Silvan Calarco 3.9.0-1mamba +- package created using the webbuild interface