From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6BEC7138353 for ; Thu, 16 Apr 2020 09:59:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A41FAE09C3; Thu, 16 Apr 2020 09:59:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 75927E09C3 for ; Thu, 16 Apr 2020 09:59:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7803134F066 for ; Thu, 16 Apr 2020 09:59:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B4161DE for ; Thu, 16 Apr 2020 09:59:10 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1586971832.a354c2fc41ba5b9ec8c0ea1ecdd9d28e860b8d28.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/sphinx-argparse/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/sphinx-argparse/Manifest dev-python/sphinx-argparse/metadata.xml dev-python/sphinx-argparse/sphinx-argparse-0.2.5.ebuild X-VCS-Directories: dev-python/sphinx-argparse/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: a354c2fc41ba5b9ec8c0ea1ecdd9d28e860b8d28 X-VCS-Branch: master Date: Thu, 16 Apr 2020 09:59:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5022f020-4ef4-4480-b3c7-156064bead0b X-Archives-Hash: e1b85fe68203ec725438730382f9f3ee commit: a354c2fc41ba5b9ec8c0ea1ecdd9d28e860b8d28 Author: Alarig Le Lay swordarmor fr> AuthorDate: Wed Apr 15 17:30:32 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Wed Apr 15 17:30:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a354c2fc dev-python/sphinx-argparse: New ebuild Sphinx extension that automatically documents argparse commands and options Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Alarig Le Lay swordarmor.fr> dev-python/sphinx-argparse/Manifest | 1 + dev-python/sphinx-argparse/metadata.xml | 8 ++++++++ .../sphinx-argparse/sphinx-argparse-0.2.5.ebuild | 23 ++++++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-python/sphinx-argparse/Manifest b/dev-python/sphinx-argparse/Manifest new file mode 100644 index 0000000..c6936b8 --- /dev/null +++ b/dev-python/sphinx-argparse/Manifest @@ -0,0 +1 @@ +DIST sphinx-argparse-0.2.5.tar.gz 12153 BLAKE2B f2ba5fda9bc33831aebab9f1e836a4aabbd8d09ed43485583229c23453a76223c9c12e1b9f8f1066b8c8f44dfd7a1848572cafd0c1e66898b14878b94417f023 SHA512 785e2b1ea04b39721d28aee712b87f7fccb56a25a2d5ccf7825b27673a7e53069265c89b32f7b63d4f788127fe815595913af699dba3cd60db37a7efdef6ea55 diff --git a/dev-python/sphinx-argparse/metadata.xml b/dev-python/sphinx-argparse/metadata.xml new file mode 100644 index 0000000..a69b0a0 --- /dev/null +++ b/dev-python/sphinx-argparse/metadata.xml @@ -0,0 +1,8 @@ + + + + + Alarig Le Lay + alarig@swordarmor.fr + + diff --git a/dev-python/sphinx-argparse/sphinx-argparse-0.2.5.ebuild b/dev-python/sphinx-argparse/sphinx-argparse-0.2.5.ebuild new file mode 100644 index 0000000..a7dc66b --- /dev/null +++ b/dev-python/sphinx-argparse/sphinx-argparse-0.2.5.ebuild @@ -0,0 +1,23 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{6,7,8} ) +inherit distutils-r1 + +DESCRIPTION="Sphinx extension that automatically documents argparse commands and options" +HOMEPAGE="https://pypi.org/project/sphinx-argparse/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=" + ${DEPEND} + dev-python/sphinx[${PYTHON_USEDEP}] +" +BDEPEND=""