From aae71b4d8e684ca22d28ef0f1da0989e7bf6468d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 22 Feb 2023 14:28:15 +0000 Subject: gentoo auto-resync : 22:02:2023 - 14:28:15 --- dev-python/sphinx-prompt/Manifest | 2 +- .../sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild | 35 ++++++++++++++++++++++ .../sphinx-prompt/sphinx-prompt-1.6.0.ebuild | 29 ------------------ 3 files changed, 36 insertions(+), 30 deletions(-) create mode 100644 dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild delete mode 100644 dev-python/sphinx-prompt/sphinx-prompt-1.6.0.ebuild (limited to 'dev-python/sphinx-prompt') diff --git a/dev-python/sphinx-prompt/Manifest b/dev-python/sphinx-prompt/Manifest index 47d176e3f751..ac107d6848b7 100644 --- a/dev-python/sphinx-prompt/Manifest +++ b/dev-python/sphinx-prompt/Manifest @@ -1,5 +1,5 @@ DIST sphinx-prompt-1.5.0.tar.gz 21537 BLAKE2B a5bc69797ea526bc3d66b52e98b80cbb9958add084ea6a4d70a85cc06c69271bbe9e658eb517b78dd758178b6f3b93d92ea87e9432e5c28a61307706a3c34ee8 SHA512 b3d023388eb024303e9264e621ad379367916f8e3567192fde90b3f0d96c94c53d783c2e14970ad3d85895053b3aab9ece6d9573d3bab1dc894e0e04757f3a40 DIST sphinx-prompt-1.6.0.gh.tar.gz 38245 BLAKE2B da2ac8564e14a10d5b51ea5ebd2e5578e7c2795ea7f3c5d3f054c621090e4bf634b9a1f578f4c010bbeaa61cc0d18f1a48ce6c0d9a316e34504ada1b4fb61d7b SHA512 a896dad9d333fde843ab90f331be40c533fa32f75f68dfc012a6296d96661e726647250642e1cc4c54125d9acb237add640008671a657a5e47a885450831c21e EBUILD sphinx-prompt-1.5.0.ebuild 595 BLAKE2B befcd1520ca177df2d7dcde61f04f249a9f5c48d038252ba14929ed22fab0e7c9bef3e8c3c007d3caab835e7b1b146eded5528d771d666d67624d77591b538ce SHA512 aba3e5f376f198ca3364e3a84b91fba86b1ab644abfe7616ecec947a0787b65cdf728687db2e34dd6145ba6eca21526743f70a6ce523591249461230664ea067 -EBUILD sphinx-prompt-1.6.0.ebuild 816 BLAKE2B 27fa2583e11c2577c2b15962dc89a0ac21e53e4c0515d4dacc9b0880030a9f8a71e29d569222c5fae01e445f26f0e3c3b608f5773cda54006a98e2ac2be69cf2 SHA512 9df5e0188fc8a50fc1f39cd7734d7eb7ef6a38bf8ce731b860aecfa25fe0813bd0c29d1bea1a31cf9829593321ee797992a72f65afbe7cd07c9150807859288e +EBUILD sphinx-prompt-1.6.0-r1.ebuild 1002 BLAKE2B fcc79721d6becb372ef6191a07789bf88bbcfe9d259e9c497419003a1671a89952c7ed5577d474a8d2488caa2e1276b304147f99bb9717f2d4f712461f271a68 SHA512 fb7f84a9e72e61c400ebdd0c4bc16d397134f9ad25bfac13998b069eb73b9a8f6073ac9fe9d46df0f262f1f4d3e25dc19f63c7d8e8c8584b0df31aa412724c61 MISC metadata.xml 416 BLAKE2B 5c9110bc6a6c0c7acab6e9f10d8d84601a66c7741ba15612eb032272db9517f314eec8f86677e43fd7dfb1b032388b1db3b60c64e0cd9a6943498c4715ebf1e0 SHA512 5d23f08978f7ca0dae7062a4a872f1be37969144c128c4a1f2006798465b5dbf95090e14859eb6c7e1e75649170e40fe156e6b9cd5b1263464e88edffc760a15 diff --git a/dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild b/dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild new file mode 100644 index 000000000000..36ba1e1af0e6 --- /dev/null +++ b/dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( pypy3 python3_{9..11} ) +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}.gh.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +python_prepare_all() { + # for Version: https://github.com/sbrunner/sphinx-prompt/pull/330 + # for Sphinx dep: https://github.com/sbrunner/sphinx-prompt/issues/174 + # and poetry-plugin-tweak-dependencies-version usage. + sed -E -i \ + -e "/^version =/s:([0-9.]+):${PV}:" \ + -e "/^Sphinx =/s:([0-9.]+):>=5:" \ + pyproject.toml || die + + distutils-r1_python_prepare_all +} diff --git a/dev-python/sphinx-prompt/sphinx-prompt-1.6.0.ebuild b/dev-python/sphinx-prompt/sphinx-prompt-1.6.0.ebuild deleted file mode 100644 index 68cf7b066edc..000000000000 --- a/dev-python/sphinx-prompt/sphinx-prompt-1.6.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( pypy3 python3_{9..11} ) -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}.gh.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" - -RDEPEND=" - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -python_prepare_all() { - # https://github.com/sbrunner/sphinx-prompt/pull/330 - sed -E -i -e "/^version =/s:([0-9.]+):${PV}:" pyproject.toml || die - distutils-r1_python_prepare_all -} -- cgit v1.2.3