package created using the webbuild interface [release 0.11.2-1mamba;Sat Dec 05 2015]

This commit is contained in:
Silvan Calarco 2024-01-05 16:52:56 +01:00
parent 2b2a36fd7f
commit 619364c1f3
2 changed files with 46 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-werkzeug
The Swiss Army knife of Python web development.

44
python-werkzeug.spec Normal file
View File

@ -0,0 +1,44 @@
Name: python-werkzeug
Version: 0.11.2
Release: 1mamba
Summary: The Swiss Army knife of Python web development
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://werkzeug.pocoo.org/
Source: https://pypi.python.org/packages/source/W/Werkzeug/Werkzeug-%{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 Werkzeug-%{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)
%doc AUTHORS LICENSE
%changelog
* Sat Dec 05 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 0.11.2-1mamba
- package created using the webbuild interface