From f44ea19280a3537415567bd65693bc756aada274 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 10:45:23 +0100 Subject: [PATCH] python 2.7 mass rebuild [release 1.1-2mamba;Fri May 17 2013] --- README.md | 2 ++ python-argparse.spec | 48 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 python-argparse.spec diff --git a/README.md b/README.md index 0b1534d..86b2368 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-argparse +The argparse module provides an easy, declarative interface for creating command line tools. + diff --git a/python-argparse.spec b/python-argparse.spec new file mode 100644 index 0000000..55dab59 --- /dev/null +++ b/python-argparse.spec @@ -0,0 +1,48 @@ +Name: python-argparse +Version: 1.1 +Release: 2mamba +Summary: Python command line parser +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://code.google.com/p/argparse/ +Source: http://argparse.googlecode.com/files/argparse-%{version}.zip +License: Apache +## AUTOBUILDREQ-BEGIN +## note: run 'autospec -u -a6 python-argparse' to get the list of build requirements. +## AUTOBUILDREQ-END +BuildRequires: libpython-devel +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +The argparse module provides an easy, declarative interface for creating command line tools. + +%prep +%setup -q -n argparse-%{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 README.txt + +%changelog +* Fri May 17 2013 Silvan Calarco 1.1-2mamba +- python 2.7 mass rebuild + +* Thu Mar 24 2011 Silvan Calarco 1.1-1mamba +- package created by autospec