From 8e62e253524f385bb04c5dd8cd29039b01f9487b Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:32:40 +0100 Subject: [PATCH] update to 1.0.1 [release 1.0.1-1mamba;Thu Apr 30 2020] --- README.md | 2 ++ python-random2.spec | 50 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 python-random2.spec diff --git a/README.md b/README.md index 8202fce..e5a2ab1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-random2 +A Python 3 ported version of Python 2.7's random module. + diff --git a/python-random2.spec b/python-random2.spec new file mode 100644 index 0000000..8c95b87 --- /dev/null +++ b/python-random2.spec @@ -0,0 +1,50 @@ +Name: python-random2 +Version: 1.0.1 +Release: 1mamba +Summary: A Python 3 ported version of Python 2.7's random module +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://docs.python.org/2/library/random.html +Source: https://pypi.debian.net/random2/random2-%{version}.zip +License: Python Software Foundation License +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +BuildRequires: libpython-devel +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q -n random2-%{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 "s,.*/man/.*,&.gz," %{name}.filelist + +%files %{?pyappend} -f %{name}.filelist +%defattr(-,root,root) + +%changelog +* Thu Apr 30 2020 Silvan Calarco 1.0.1-1mamba +- update to 1.0.1 + +* Thu Apr 30 2020 Silvan Calarco 1.0.0-1mamba +- package created using the webbuild interface