From 7af37a8d45426dc5c2b6b49ecc83a966f6600d76 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 11:11:08 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.16.0-1mamba;Fri Oct 28 2016] --- README.md | 2 ++ python-future.spec | 47 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 python-future.spec diff --git a/README.md b/README.md index 76d15a2..7f22e5e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-future +Clean single-source support for Python 3 and 2. + diff --git a/python-future.spec b/python-future.spec new file mode 100644 index 0000000..e585d55 --- /dev/null +++ b/python-future.spec @@ -0,0 +1,47 @@ +Name: python-future +Version: 0.16.0 +Release: 1mamba +Summary: Clean single-source support for Python 3 and 2 +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://pypi.python.org/pypi/future +Source: https://pypi.debian.net/future/future-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n future-%{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) + +%changelog +* Fri Oct 28 2016 Silvan Calarco 0.16.0-1mamba +- package created using the webbuild interface