49 lines
1.4 KiB
RPMSpec
49 lines
1.4 KiB
RPMSpec
|
Name: python-argparse
|
||
|
Version: 1.1
|
||
|
Release: 2mamba
|
||
|
Summary: Python command line parser
|
||
|
Group: System/Libraries
|
||
|
Vendor: openmamba
|
||
|
Distribution: openmamba
|
||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||
|
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 <silvan.calarco@mambasoft.it> 1.1-2mamba
|
||
|
- python 2.7 mass rebuild
|
||
|
|
||
|
* Thu Mar 24 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-1mamba
|
||
|
- package created by autospec
|