cleanup PYTHON_COMPAT, remove unused Ebuilds (https://bugs.gentoo.org/793464)

This commit is contained in:
2021-06-04 11:07:04 +02:00
committed by Andreas Billmeier
parent c1d85609fd
commit bac826ee0e
1237 changed files with 1142 additions and 21454 deletions

View File

@@ -1,7 +1,4 @@
AUX s3transfer-0.1.13-tests.patch 753 BLAKE2B 7b168d35c9287eade9b9e1ca0393c625f742d1a698df9996f9ddbe6cb892128badb3a77dc9804e3bc9905d0982f240c3dd5021459e3d050a7647e279efd93491 SHA512 3fd66ae7574ee5263582006292a19a782aa3c2d4ebef00e005b02d1cb5192a99c36325114e49aa13ddc2fa1cb8604f65f87dcac8994b2845eaa45b409a5b8ff6
DIST s3transfer-0.2.0.tar.gz 118361 BLAKE2B 0cb0a29e6dfa82762084396db1950a9e1baf4de1d9c8b9f0db3dbf1e274636f60a89ceb959d55cc22fe41c4ce175ab53f414c5c44f08624cc43f0d289f768863 SHA512 2e37a13da67cdabb49deeb177fd9f8d6393128e757e6c9bd93c99eb95a3edbd14736025e284f3173e8247d23239abae3700d894ba0d138f970ceaff748aa6e9e
DIST s3transfer-0.2.1.tar.gz 119635 BLAKE2B f8978afb2ca367238392974dc98c0a2547cf95c42f0dcce627694dda5d34ff07c92db1b838ea4cbb111db921ac9f0ab2bee81eeca99827d0731cf77ea111d70e SHA512 1494436fa74ba6eee26e96fb0d448062acddf4c4179e56baaa47d62785218d9e91c5fb50b6641e488d0c84cbaab53bd552b4277bb873cd170904074e6509b0e9
EBUILD s3transfer-0.2.0-r1.ebuild 926 BLAKE2B 94a5e862a3075697ca2d0a5735d985db22cbfc11a9523f73ec421f969fe43f53e962e5f6a2c77117cd202298a39f3bf77251da663a11db5f8efc6be253ad021d SHA512 23949948e312b4953ea97f754fb197623a24b16e5c929057c23c8468c16d6c1e2d2dfde8151c9f368ae430f7e888c87571d976cbea899d4b17192aaf79af19da
EBUILD s3transfer-0.2.0.ebuild 960 BLAKE2B 176efd257934e7fc7c8d8ef464ead4cb442376bee5cf76f6b8b9ec15ad14ccac3b64085e654d231b1eb84d6cc342896772c716c0d4952cf8bc23bf9c149aa1b4 SHA512 177280ac22da025903bc938f564662b8366c7c833cc1d74454228f7e2ea41922a6e1f0c7f46f149843fd77a3ef6572f3f2d64f4a006be16d071cbf8bd762c9c4
EBUILD s3transfer-0.2.1.ebuild 1008 BLAKE2B d3bbacb30af00ae38c3974b5587fe8da413d2ca44a5be0a7652e43402badb94137fa65c9f4bf28934b1742d66bb9da67b64580ecabaabbd44b343e641f1e9428 SHA512 402b110230e37c900f0a19aa8d452ebb439ddcf8163f0318c4bf197b950d217d200b224e7b29d5493a602e70916c9c48c24017819ad6349e0eb0492a1b983d6f
EBUILD s3transfer-0.2.1.ebuild 1007 BLAKE2B 7d4c05a620ca1def110e23072a16ebba9624a40762c1d1ddeab85e85a1b23fb32c8ccc038e77b185743f30ceb9db29fc9202b3d2e13e45ebe85b1caab738be46 SHA512 525921163c27a13158a754c4f8f89c091765d3e97e6e245ee6e04a32bbf29bec6eb3e28b8119f74b661fe76572dd36a6d5912625b1fe7c41d95cd2a8c2da2c5c
MISC metadata.xml 379 BLAKE2B 71ab13315921746f0b71ac09c3f7a5e4e182e4efc0dda7f0e9cd6fe2948f52eddde9b9fe7c117ced64f4e3f6646a2d15a1fd3630ab814b067a10dadd11448def SHA512 452e566006f5a6ec91765cdeb4fe75edbf890f3a8e495bca7d1db859a882109eecb252dca18f1d1e4dc970c62c7810b5e51cf1b5ab61553c76d4dc04e38bc5ee

View File

@@ -1,36 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="An Amazon S3 Transfer Manager"
HOMEPAGE="https://github.com/boto/s3transfer"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
CDEPEND="
dev-python/botocore[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/futures[${PYTHON_USEDEP}]' 'python2_7')
"
# Pin mock to 1.3.0 if testing failures due to mock occur.
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
${CDEPEND}
dev-python/mock[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
)
"
RDEPEND="${CDEPEND}"
#PATCHES=( "${FILESDIR}/s3transfer-0.1.13-tests.patch" )
python_test() {
nosetests -v tests/unit/ tests/functional/ || die "tests failed under ${EPYTHON}"
}

View File

@@ -1,36 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 python3_7 )
inherit distutils-r1
DESCRIPTION="An Amazon S3 Transfer Manager"
HOMEPAGE="https://github.com/boto/s3transfer"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
CDEPEND="
dev-python/botocore[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/futures[${PYTHON_USEDEP}]' 'python2_7')
"
# Pin mock to 1.3.0 if testing failures due to mock occur.
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
${CDEPEND}
dev-python/mock[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
)
"
RDEPEND="${CDEPEND}"
#PATCHES=( "${FILESDIR}/s3transfer-0.1.13-tests.patch" )
python_test() {
nosetests -v tests/unit/ tests/functional/ || die "tests failed under ${EPYTHON}"
}

View File

@@ -1,9 +1,9 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1
DESCRIPTION="An Amazon S3 Transfer Manager"