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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CBF5A158009 for ; Thu, 29 Jun 2023 06:47:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AECA2E084E; Thu, 29 Jun 2023 06:47:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76B32E0845 for ; Thu, 29 Jun 2023 06:47:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5F80C340C43 for ; Thu, 29 Jun 2023 06:47:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F1B5FAC0 for ; Thu, 29 Jun 2023 06:47:48 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1688021263.8d3a79ce9688a74a4ca8b861212223794d213dff.alexxy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-argparse/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinx-argparse/Manifest dev-python/sphinx-argparse/metadata.xml dev-python/sphinx-argparse/sphinx-argparse-0.4.0.ebuild X-VCS-Directories: dev-python/sphinx-argparse/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 8d3a79ce9688a74a4ca8b861212223794d213dff X-VCS-Branch: master Date: Thu, 29 Jun 2023 06:47:48 +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: 66752d37-f296-4fd9-89e1-604de2067777 X-Archives-Hash: d6f554b8e3682a79857ee646a9bd64d1 commit: 8d3a79ce9688a74a4ca8b861212223794d213dff Author: Alexey Shvetsov gentoo org> AuthorDate: Wed Jun 28 14:30:56 2023 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Thu Jun 29 06:47:43 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d3a79ce dev-python/sphinx-argparse: new package, add 0.4.0 Signed-off-by: Alexey Shvetsov gentoo.org> dev-python/sphinx-argparse/Manifest | 1 + dev-python/sphinx-argparse/metadata.xml | 12 ++++++++++++ .../sphinx-argparse/sphinx-argparse-0.4.0.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/dev-python/sphinx-argparse/Manifest b/dev-python/sphinx-argparse/Manifest new file mode 100644 index 000000000000..78929c27d15f --- /dev/null +++ b/dev-python/sphinx-argparse/Manifest @@ -0,0 +1 @@ +DIST sphinx_argparse-0.4.0.tar.gz 15020 BLAKE2B 73118f56ff82d52f04066b9d500aebc77eb5a0fecd03fa69f382c0f2afc0cbffdd395da707cf37b59f039e93935f8d5c3fe0e0f7a2820d3b6509dd78b37b0d74 SHA512 b96050da6c02f87c54f9dc9146bed955e99258df740b467575a2b3e9919fa8c4c6d30a736dab24360086bfc0d7d09c4bc7a818700af2c7846eed3a3b99053d65 diff --git a/dev-python/sphinx-argparse/metadata.xml b/dev-python/sphinx-argparse/metadata.xml new file mode 100644 index 000000000000..34557e466493 --- /dev/null +++ b/dev-python/sphinx-argparse/metadata.xml @@ -0,0 +1,12 @@ + + + + + sci@gentoo.org + Gentoo Science Project + + + ashb/sphinx-argparse + sphinx-argparse + + diff --git a/dev-python/sphinx-argparse/sphinx-argparse-0.4.0.ebuild b/dev-python/sphinx-argparse/sphinx-argparse-0.4.0.ebuild new file mode 100644 index 000000000000..2b28e7ab59e5 --- /dev/null +++ b/dev-python/sphinx-argparse/sphinx-argparse-0.4.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 2020-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517=poetry +inherit distutils-r1 pypi + +DESCRIPTION="Sphinx extension that automatically documents argparse commands and options" +HOMEPAGE="https://pypi.org/project/sphinx-argparse/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/commonmark[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest