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 93E361382C5 for ; Tue, 26 May 2020 20:43:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5825E0984; Tue, 26 May 2020 20:43:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A104FE0984 for ; Tue, 26 May 2020 20:43:27 +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 AFDA934EE81 for ; Tue, 26 May 2020 20:43:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D3BAA270 for ; Tue, 26 May 2020 20:43:23 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1590525707.9295182bb7b4c51acca675c03da660d7b3e89fa4.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-prompt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinx-prompt/Manifest dev-python/sphinx-prompt/metadata.xml dev-python/sphinx-prompt/sphinx-prompt-1.2.0.ebuild X-VCS-Directories: dev-python/sphinx-prompt/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 9295182bb7b4c51acca675c03da660d7b3e89fa4 X-VCS-Branch: master Date: Tue, 26 May 2020 20:43:23 +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: ee9263d1-b72b-4aa1-9541-ec256512a9e1 X-Archives-Hash: b0f0480b9bd58a1aebba06c62487e443 commit: 9295182bb7b4c51acca675c03da660d7b3e89fa4 Author: Andrew Ammerlaan riseup net> AuthorDate: Thu May 14 12:30:19 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue May 26 20:41:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9295182b dev-python/sphinx-prompt: Sphinx directive to add unselectable prompt Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan riseup.net> Signed-off-by: Matt Turner gentoo.org> dev-python/sphinx-prompt/Manifest | 1 + dev-python/sphinx-prompt/metadata.xml | 12 ++++++++++++ dev-python/sphinx-prompt/sphinx-prompt-1.2.0.ebuild | 21 +++++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/dev-python/sphinx-prompt/Manifest b/dev-python/sphinx-prompt/Manifest new file mode 100644 index 00000000000..30c5fbc8d10 --- /dev/null +++ b/dev-python/sphinx-prompt/Manifest @@ -0,0 +1 @@ +DIST sphinx-prompt-1.2.0.tar.gz 7506 BLAKE2B babff99a29b87ba9529d7811a5b34280b1d30a4f7dbde8cea28a3c2ec687d1d4443b6bd8b0fb3ab5bdd002066ef1d3117768a529e46691fbec9de59d5c8771a8 SHA512 e3fe2740bee8a0107a12e131d3a4f90ed22c4bcceab7cb94fc869a534725552d4d3a9d8519a54782c5a1913a2e3bee088fa14db7b3a37f256be3243c7f6a9a1f diff --git a/dev-python/sphinx-prompt/metadata.xml b/dev-python/sphinx-prompt/metadata.xml new file mode 100644 index 00000000000..5442995bcde --- /dev/null +++ b/dev-python/sphinx-prompt/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + Python + + + sphinx-prompt + sbrunner/sphinx-prompt + + diff --git a/dev-python/sphinx-prompt/sphinx-prompt-1.2.0.ebuild b/dev-python/sphinx-prompt/sphinx-prompt-1.2.0.ebuild new file mode 100644 index 00000000000..6dab60f51ef --- /dev/null +++ b/dev-python/sphinx-prompt/sphinx-prompt-1.2.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Sphinx directive to add unselectable prompt" +HOMEPAGE="https://github.com/sbrunner/sphinx-prompt/" +SRC_URI="https://github.com/sbrunner/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] +"