diff --git a/README.md b/README.md index ae9bfd9..5565415 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-configargparse +A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables. + diff --git a/python-configargparse.spec b/python-configargparse.spec new file mode 100644 index 0000000..b38e2b7 --- /dev/null +++ b/python-configargparse.spec @@ -0,0 +1,45 @@ +Name: python-configargparse +Version: 0.9.1 +Release: 1mamba +Summary: A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/zorro3/ConfigArgParse +Source: https://pypi.python.org/packages/source/C/ConfigArgParse/ConfigArgParse-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +BuildRequires: python-pypandoc +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n ConfigArgParse-%{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 LICENSE + +%changelog +* Sat Dec 05 2015 Silvan Calarco 0.9.1-1mamba +- package created using the webbuild interface