From: Michał Górny Date: Fri, 27 Mar 2020 08:47:14 +0000 (+0100) Subject: dev-python/filelock: Remove redundant versions X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=df4d7d2f59b12aca2ea391da14e148636f143e87;p=gentoo.git dev-python/filelock: Remove redundant versions Signed-off-by: Michał Górny --- diff --git a/dev-python/filelock/Manifest b/dev-python/filelock/Manifest index 4a0d5a7d8257..321382d6b25b 100644 --- a/dev-python/filelock/Manifest +++ b/dev-python/filelock/Manifest @@ -1,2 +1 @@ -DIST py-filelock-3.0.10.tar.gz 587469 BLAKE2B 8a116f038f344f282540243a757524bd2e72ab8419a0cbdc35910245b8794cab0f96f93d7d8e3b267018054aa1459892506edc9cbfe1099d141a44be9eaa937a SHA512 1fa4594eaba6689ea61149a60a71e86007297614a1c22dc6c94b4774520d396ff8ad03076dfdbb2ce49d2b6e42c374af065a115c167d81cf6107918abfbe52ef DIST py-filelock-3.0.12.tar.gz 587613 BLAKE2B 3eb765e4cb251ace50fcaf3b7cf52939e697d5a710b87eb2f0ea0cf66f554b90bda2e95754b82e1544e45d0abd8dea861f52cdf9c7de0f1e91a8f5c8e0f9759c SHA512 0f30b54b9de2540f023855effcc582b18fedcee6681f21e1733f1b60dbd39eb148e3830bc798a44c5e8c22e7ea8ca26b6d4547fae79dacc78c62b819a3d84683 diff --git a/dev-python/filelock/filelock-3.0.10.ebuild b/dev-python/filelock/filelock-3.0.10.ebuild deleted file mode 100644 index 5a9736ca6596..000000000000 --- a/dev-python/filelock/filelock-3.0.10.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 2018-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 ) -inherit distutils-r1 - -MY_P=py-filelock-${PV} -DESCRIPTION="A platform independent file lock for Python" -HOMEPAGE="https://github.com/benediktschmitt/py-filelock - https://pypi.org/project/filelock/" -SRC_URI="https://github.com/benediktschmitt/py-filelock/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" - -LICENSE="Unlicense" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - # test_del is relying on CPython behavior, so it breaks PyPy - # (and it's not very valuable anyway) - sed -i -e '/test_del/i\ \ \ \ @unittest.skipIf(hasattr(sys, "pypy_version_info"), "del() does not trigger GC on PyPy")' test.py || die - - distutils-r1_src_prepare -} - -python_test() { - "${EPYTHON}" test.py -v || die "Tests fail with ${EPYTHON}" -}