package created using the webbuild interface [release 2.0-1mamba;Wed Mar 17 2021]

This commit is contained in:
Silvan Calarco 2024-01-06 10:58:30 +01:00
parent 1483b14e07
commit cc5463ca11
2 changed files with 50 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-colorzero
A color manipulation library for Python.

48
python-colorzero.spec Normal file
View File

@ -0,0 +1,48 @@
Name: python-colorzero
Version: 2.0
Release: 1mamba
Summary: A color manipulation library for Python
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://pypi.org/project/colorzero/
Source: https://pypi.debian.net/colorzero/colorzero-%{version}.tar.gz
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython3-devel
BuildRequires: python-setuptools-py3
## AUTOBUILDREQ-END
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n colorzero-%{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}/colorzero-%{version}-py*.egg-info
%{python_sitearch}/colorzero-%{version}-py*.egg-info/*
%changelog
* Wed Mar 17 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 2.0-1mamba
- package created using the webbuild interface