From 39336cda19c6a25b116a82dbf3f00de42db59eca Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:18:42 +0100 Subject: [PATCH] package created using the webbuild interface [release 7.3.0-1mamba;Wed Nov 08 2023] --- README.md | 2 ++ python-pip-tools.spec | 58 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 python-pip-tools.spec diff --git a/README.md b/README.md index c51cc37..785a9bd 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-pip-tools +pip-tools keeps your pinned dependencies fresh. + diff --git a/python-pip-tools.spec b/python-pip-tools.spec new file mode 100644 index 0000000..6d84d50 --- /dev/null +++ b/python-pip-tools.spec @@ -0,0 +1,58 @@ +%define pkgname %(echo %name | cut -d- -f2- | tr - _) +Name: python-pip-tools +Version: 7.3.0 +Release: 1mamba +Summary: pip-tools keeps your pinned dependencies fresh +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/jazzband/pip-tools/ +Source: https://pypi.debian.net/pip-tools/pip-tools-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython311-devel +BuildRequires: python3.11dist(build) +BuildRequires: python3.11dist(click) +BuildRequires: python3.11dist(pip) +BuildRequires: python3.11dist(setuptools) +BuildRequires: python3.11dist(wheel) +## AUTOBUILDREQ-END + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n pip-tools-%{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}/pip-{compile,sync}; do + mv %{buildroot}${f}{,-%{?pyappend}} +done +%endif + +%files %{?pyappend} +%defattr(-,root,root) +%{_bindir}/pip-compile* +%{_bindir}/pip-sync* +%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info +%{python_sitelib}/%{pkgname}-%{version}.dist-info/* +%dir %{python_sitelib}/piptools +%{python_sitelib}/piptools/* +%doc LICENSE + +%changelog +* Wed Nov 08 2023 Silvan Calarco 7.3.0-1mamba +- package created using the webbuild interface