From 619364c1f3d401b976ac505e402db72bc03df7f1 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:52:56 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.11.2-1mamba;Sat Dec 05 2015] --- README.md | 2 ++ python-werkzeug.spec | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 python-werkzeug.spec diff --git a/README.md b/README.md index 9640e5c..f42dc57 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-werkzeug +The Swiss Army knife of Python web development. + diff --git a/python-werkzeug.spec b/python-werkzeug.spec new file mode 100644 index 0000000..3648cb6 --- /dev/null +++ b/python-werkzeug.spec @@ -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 +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 0.11.2-1mamba +- package created using the webbuild interface