From 4efc793989ef3f96c1cf44129e3ce6334d8c356c Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:15:37 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.8.1-1mamba;Sat Dec 05 2015] --- README.md | 2 ++ python-pbr.spec | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 python-pbr.spec diff --git a/README.md b/README.md index 29503fb..182bd44 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-pbr +A library that injects some useful and sensible default behaviors into your setuptools run. + diff --git a/python-pbr.spec b/python-pbr.spec new file mode 100644 index 0000000..d24b12d --- /dev/null +++ b/python-pbr.spec @@ -0,0 +1,44 @@ +Name: python-pbr +Version: 1.8.1 +Release: 1mamba +Summary: A library that injects some useful and sensible default behaviors into your setuptools run +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://launchpad.net/pbr +Source: https://pypi.python.org/packages/source/p/pbr/pbr-%{version}.tar.gz +License: Apache License 2.0 +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n pbr-%{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 1.8.1-1mamba +- package created using the webbuild interface