package created using the webbuild interface [release 1.1.0-1mamba;Tue Aug 31 2021]

This commit is contained in:
Silvan Calarco 2024-06-24 11:11:27 +02:00
parent 08e35845d4
commit b67cc8f05e
2 changed files with 52 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-backports-entry_points_selectable
Compatibility shim providing selectable entry points for older implementations.

View File

@ -0,0 +1,50 @@
%define pkgname %(echo %name | cut -d- -f2-)
Name: python-backports-entry_points_selectable
Version: 1.1.0
Release: 1mamba
Summary: Compatibility shim providing selectable entry points for older implementations
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/jaraco/backports.entry_points_selectable
Source: https://pypi.debian.net/backports.entry-points-selectable/backports.entry_points_selectable-%{version}.tar.gz
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython3-devel
BuildRequires: python3.7dist(importlib-metadata)
## AUTOBUILDREQ-END
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n backports.entry_points_selectable-%{version}
%build
CFLAGS="%{optflags}" %{__python} setup.py build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%{__python} setup.py install \
-O1 --skip-build \
--root="%{buildroot}" \
--install-headers=%{python_inc} \
--install-lib=%{python_sitearch} \
--record=%{name}.filelist
sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist
%files %{?pyappend} -f %{name}.filelist
%defattr(-,root,root)
%dir %{python_sitearch}/backports.entry_points_selectable-*-py*.egg-info
%{python_sitearch}/backports.entry_points_selectable-*-py*.egg-info/*
%doc LICENSE
%changelog
* Tue Aug 31 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1.0-1mamba
- package created using the webbuild interface