package created using the webbuild interface [release 0.6.2-1mamba;Mon Aug 30 2021]

This commit is contained in:
Silvan Calarco 2024-01-06 11:05:28 +01:00
parent 9ee19f24f9
commit 0b61b0fd8a
2 changed files with 50 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-docopt
docopt creates beautiful command-line interfaces.

48
python-docopt.spec Normal file
View File

@ -0,0 +1,48 @@
%define pkgname %(echo %name | cut -d- -f2-)
Name: python-docopt
Version: 0.6.2
Release: 1mamba
Summary: docopt creates beautiful command-line interfaces
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://docopt.org/
Source: https://pypi.debian.net/docopt/docopt-%{version}.tar.gz
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython3-devel
## AUTOBUILDREQ-END
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n docopt-%{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}/%{pkgname}-%{version}-py*.egg-info
%{python_sitearch}/%{pkgname}-%{version}-py*.egg-info/*
%changelog
* Mon Aug 30 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.6.2-1mamba
- package created using the webbuild interface