From 5e16b34bae25335fece2b5a4921c44a85dc13347904406031d732628fa308df6 Mon Sep 17 00:00:00 2001 From: William Brown Date: Thu, 20 Dec 2018 10:15:55 +0000 Subject: [PATCH] Accepting request 641645 from security:idm you will need this for lib389 OBS-URL: https://build.opensuse.org/request/show/641645 OBS-URL: https://build.opensuse.org/package/show/network:ldap/python-argparse-manpage?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++ .gitignore | 1 + argparse-manpage-1.1.tar.gz | 3 ++ python-argparse-manpage.changes | 4 +++ python-argparse-manpage.spec | 59 +++++++++++++++++++++++++++++++++ 5 files changed, 90 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 argparse-manpage-1.1.tar.gz create mode 100644 python-argparse-manpage.changes create mode 100644 python-argparse-manpage.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/argparse-manpage-1.1.tar.gz b/argparse-manpage-1.1.tar.gz new file mode 100644 index 0000000..5dd83f0 --- /dev/null +++ b/argparse-manpage-1.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7480e20841a34400bffc0dc93340924b480202f6ad1a46cb40a196d7f18902e +size 49044 diff --git a/python-argparse-manpage.changes b/python-argparse-manpage.changes new file mode 100644 index 0000000..49b9ae4 --- /dev/null +++ b/python-argparse-manpage.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Oct 11 15:04:42 UTC 2018 - Marcus Rueckert + +- initial package diff --git a/python-argparse-manpage.spec b/python-argparse-manpage.spec new file mode 100644 index 0000000..495e0c5 --- /dev/null +++ b/python-argparse-manpage.spec @@ -0,0 +1,59 @@ +# +# spec file for package python-argparse-manpage +# +# Copyright (c) 2018 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/ +# + +%define mod_name argparse-manpage +%define skip_python2 1 + +Name: python-argparse-manpage +Version: 1.1 +Release: 0 +Summary: Build manual page from python's ArgumentParser object +License: Apache-2.0 +Group: Development/Languages/Python +Url: https://github.com/praiskup/argparse-manpage +Source: %{mod_name}-%{version}.tar.gz +BuildRequires: %{python_module devel} +BuildRequires: %{python_module docutils} +BuildRequires: %{python_module setuptools} +BuildRoot: %{_tmppath}/%{name}-%{version}-build +%python_subpackages + +%description +Generate manual page an automatic way from ArgumentParser object, so the +manpage 1:1 corresponds to the automatically generated --help output. The +manpage generator needs to known the location of the object, user can specify +that by (a) the module name or corresponding python filename and (b) the object +name or the function name which returns the object. There's a limited support +for (deprecated) optparse objects, too. + +%prep +%setup -q -n %{mod_name}-%{version} + +%build +%python_build + +%install +%python_install + +%files %{python_files} +%doc README* PKG-INFO +%{python_sitelib}/* +%{_bindir}/argparse-manpage +%{_mandir}/man1/argparse-manpage.1* + +%changelog +