From: Hyunjee Kim Date: Thu, 9 Apr 2020 08:21:55 +0000 (+0900) Subject: Add packaging files X-Git-Tag: submit/tizen/20200413.004103^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen_6.5_base;p=platform%2Fupstream%2Fpython3-argparse.git Add packaging files Change-Id: I42eccf31e0700bef33391f7f193007a731499a6f Signed-off-by: Hyunjee Kim --- diff --git a/packaging/python3-argparse.manifest b/packaging/python3-argparse.manifest new file mode 100644 index 0000000..017d22d --- /dev/null +++ b/packaging/python3-argparse.manifest @@ -0,0 +1,5 @@ + + + + + diff --git a/packaging/python3-argparse.spec b/packaging/python3-argparse.spec new file mode 100644 index 0000000..60e3434 --- /dev/null +++ b/packaging/python3-argparse.spec @@ -0,0 +1,83 @@ +# +# spec file for package python-argparse +# +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +Name: python3-argparse +Version: 1.4.0 +Release: 0 +Url: http://code.google.com/p/argparse/ +Summary: Python command-line parsing library +License: Python-2.0 +Group: Development/Languages/Python +Source: https://pypi.python.org/packages/source/a/argparse/argparse-%{version}.tar.gz +Source1001: %{name}.manifest + +BuildRequires: python3-devel +BuildRequires: python3-setuptools + +BuildArch: noarch + +# For some distros, the "python" package provides python-argparse. +# This allows packages to explicitly define that it needs this +# backported version rather than the included version. +Provides: python3-argparse-backport = %{version} +Obsoletes: python3-argparse-backport < %{version} +%{!?python3_sitelib: %global python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} + +%description +The argparse module provides an easy, declarative interface for +creating command line tools, which knows how to: + +* parse the arguments and flags from sys.argv +* convert arg strings into objects for your program +* format and print informative help messages +* and much more... + +The argparse module improves on the standard library optparse module +in a number of ways including: + +* handling positional arguments +* supporting sub-commands +* allowing alternative option prefixes like + and / +* handling zero-or-more and one-or-more style arguments +* producing more informative usage messages +* providing a much simpler interface for custom types and actions + +%prep +%setup -n argparse-%{version} +mkdir html +pushd doc + mv * ../html/ + mv ../html . +popd +sed -i "s/\r//" NEWS.txt # Avoid warning wrong-file-end-of-line-encoding + +%build +cp %{SOURCE1001} . +%{_bindir}/python3 setup.py build + +%install +%{_bindir}/python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} + +%remove_docs + +%files +%defattr(-,root,root,-) +%manifest %{name}.manifest +%license doc/html/source/Python-License.txt +%{python3_sitelib}/* + +%changelog