This commit is contained in:
Mario Fetka
2022-07-12 15:04:49 +02:00
parent fdb09f2a58
commit b7fef62ebd
43 changed files with 1060 additions and 207 deletions

View File

@@ -1,5 +1,6 @@
AUX pastescript-setup.py-exclude-tests.patch 656 BLAKE2B 4570f85c9476528e19d548a3760fcf1ddb9d4f6cdc61ec7f6336d03ebaf92be0dae849bad044d7307a68be76a1b635a1764394fc7b409b4c5f9dfbdde83cd803 SHA512 231018ef54e937721efb84da42c238afc3903614c030d9966e05512e0a93a1717b8b20d668ab0ebea1c70202ade8d83de41edb85d2ae4665e0100abf1f75d963
DIST PasteScript-2.0.2.tar.gz 117521 BLAKE2B 2de72050ee7f5b7037b99f9661b5445e523607afc84a8846f0e5d9e89196e302627f552825ce0e4f821b7ed9ed2713c87d7b504a4e2abf092f1e8fa014c40c4b SHA512 2f093eb982972fed354219c75c2e008931cea553960cea8aaafbe57cde8556de5626e7eb9bb3b9b7328bad3b7d9899f11fc9773a65380396dae506e7531516de
EBUILD pastescript-2.0.2.ebuild 1193 BLAKE2B 8ad41e08d726f2d4c4cb4836b6e181793af1639ba175a7a0546861e5ccd01c2c30682b95299f7957057315e42852eb17d90020950b6a07cdbb17c48ba02b9092 SHA512 6472b7d9b464fb67c0ef60965cddbc58945f00d4a120bac814fc019ded21365bb68690ac370eea3509596f8cfb9dca37b6de13f7f032e9964d7eeb46a3feea68
EBUILD pastescript-2.0.2-r1.ebuild 1081 BLAKE2B 41930534dbf1c8dd592ac8d2e343a48bbbc37e1a5827e544bc8133c1a5036313c9144022f25330ef688606a97721610999fdad9e235907d3ba30065d8c29ffe7 SHA512 03cae3b820b6e969ef1fb17a22e99278310fecc3a188768fb38a49921554eea5f6119130f068b66f709a935faa1dcc0b57795450820c4674409614e130d32043
EBUILD pastescript-2.0.2.ebuild 1213 BLAKE2B 7f518e4415c3bd1eb077492d69470a6d1d909410d4368682c7ed947b6d6dff3f31a675669852d7d8df50cd5121bac3a21fcf43a26d814e4d19414a2acb929ebb SHA512 6254460ce4f02365a9ec75bacaf7b923a70f21d6b0eda7c7c29475e421797ba678f798de0a6508aaf8c6123ae8fac2f1705600e39b931f2d40c0984f390ee846
MISC ChangeLog 256 BLAKE2B e187fdda5ee06db51c3a9f123e38586deb29f152b0834c5d32f87345fafc4a0343d42f30c61d76310383a0a82524f1dcb560ef5b4482b8aaa902a04e7ebebb62 SHA512 df564905763b18c60a920017f09c7f98690001e4650179c0de0e8e3e1cebb29d4d2b72e0cb2b37ce5a1fba2d121c1692da27c4375c1e694e5b5459a7cc348ccd
MISC metadata.xml 408 BLAKE2B 66a3e2838d5c5f95c7463733cd13b1230ef3ca005ec0c5dac797561be30f950da98dfa41eeb4d43cf97500c9a2e0d04c57b0b084d60107072a988dd7c4d16ded SHA512 9cac3e4a07c425e87274de776e03d243e462341168235cd3991ef4706aa1a902cf6591ae8e965b9c4ed370fc2ebef3ca805a9c761d05c4b994ae8667198b267c

View File

@@ -0,0 +1,44 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit distutils-r1
MY_PN="PasteScript"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A pluggable command-line frontend, to setup package file layouts"
HOMEPAGE="http://pythonpaste.org/script/ https://pypi.python.org/pypi/PasteScript"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
RDEPEND="
>=dev-python/paste-1.3[${PYTHON_USEDEP}]
dev-python/pastedeploy[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
doc? (
dev-python/pygments[${PYTHON_USEDEP}]
dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
# Tests are broken.
RESTRICT="test"
S="${WORKDIR}/${MY_P}"
distutils_enable_sphinx docs \
dev-python/sphinx_rtd_theme
python_compile() {
distutils-r1_python_compile
find "${BUILD_DIR}" -name '*.pth' -delete || die
}

View File

@@ -1,9 +1,10 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EAPI=8
PYTHON_COMPAT=( python2_7 python3_{3,4,5,6,7,8,9} )
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit distutils-r1