package created using the webbuild interface [release 1.0.2-1mamba;Sat May 23 2015]

This commit is contained in:
Silvan Calarco 2024-01-06 11:10:24 +01:00
parent 5ed3e43995
commit 2d260e8ef1
2 changed files with 45 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-flup # python-flup
Random assortment of WSGI servers.

43
python-flup.spec Normal file
View File

@ -0,0 +1,43 @@
Name: python-flup
Version: 1.0.2
Release: 1mamba
Summary: Random assortment of WSGI servers
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://pypi.python.org/pypi/flup
Source: https://pypi.python.org/packages/source/f/flup/flup-%{version}.tar.gz
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython-devel
## AUTOBUILDREQ-END
Requires: python >= %python_version
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
%{summary}.
%prep
%setup -q -n flup-%{version}
%build
CFLAGS="%{optflags}" %{__python} setup.py build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%{__python} setup.py install \
-O1 --skip-build \
--root="%{buildroot}" \
--install-headers=%{_includedir}/python \
--install-lib=%{python_sitearch} \
--record=%{name}.filelist
#sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist
%files -f %{name}.filelist
%defattr(-,root,root)
%changelog
* Sat May 23 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.2-1mamba
- package created using the webbuild interface