commit:     50d7900dc9b214cef8df98d39ad597a251172686
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 30 05:56:17 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan 30 07:18:07 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50d7900d

dev-python/pytest: Remove redundant versions

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/pytest/Manifest            |  3 --
 dev-python/pytest/pytest-4.6.8.ebuild | 75 -----------------------------------
 dev-python/pytest/pytest-5.3.2.ebuild | 66 ------------------------------
 dev-python/pytest/pytest-5.3.3.ebuild | 66 ------------------------------
 4 files changed, 210 deletions(-)

diff --git a/dev-python/pytest/Manifest b/dev-python/pytest/Manifest
index 27b5c204512..aa00dd106f7 100644
--- a/dev-python/pytest/Manifest
+++ b/dev-python/pytest/Manifest
@@ -1,7 +1,4 @@
 DIST pytest-3.10.1.tar.gz 892420 BLAKE2B 
38849ae69bf4380bc1a99aa105cac04be078da4460373dfc16fa555238b2830fa2f5ae6c19de8aa2af9ac18d87c5d2705d62f7b2e67e4a62d843f6a28bbd76fd
 SHA512 
30ff79c0fdcbeef68e1191ff400a20428e391717f06957f554b694b94baaaa565dca01346fe989c3e443c4402f3b2bdbd5564f6303a4447f933fb54cba45628f
 DIST pytest-4.5.0.tar.gz 943607 BLAKE2B 
49a0e91fda7f4231fdd39f90eb2daa344d3034c10faff221330ea0ae7482a2a7d0fb9443a0a264db00f1d92568d5a6005cb73e07d8643b46906f7ecff831adcb
 SHA512 
cbffc6216f83491b1de241058315c116697bfaa5206b5f558192a7f861d43dd036d30d0d689bedae7bdee4f0258dd19ef5827c356e11863dd596a5fabe8249fc
-DIST pytest-4.6.8.tar.gz 956062 BLAKE2B 
f28e3226c7dfe4188168cfdf9623c96d0b274a2476f0d3132c24367e4566abd2e0b496114f229b6f26ae53a67d1ea1f9cb64795f4f9710fc9fe0852991467aef
 SHA512 
b396b200a8a13ec9df8dbc4dd64bb05638b26af9ad6b24cbea3c3de4d806665b63a1488c7359b12c5634d014d45b43c8c208f0e329c62266882a87c492e80b58
 DIST pytest-4.6.9.tar.gz 956816 BLAKE2B 
7eaeaa0d47c17836a35d9cdc97663f8ef65253099b21d60a7ffc3655d8bd93c6b4e33045caa6c8ab9bb8b920b93e596ba86d8eac4ab07b3b7a5989b38312f4fc
 SHA512 
ab45a8662aa798a6ae224ad2cd68e043c605e4830c76cb6c6aca3cfccef232c024cbbb6c48c9bae19148099c339abfef3270a2208cc7e5c37a10b34b0aa6ba79
-DIST pytest-5.3.2.tar.gz 995560 BLAKE2B 
aaea9d89e884a82056eeea3068c70604c73d50c96b8d78c6ee14c67bbe066f0e6d882c1b8f95539a2338d6739e047680d901a9db108b1923fa4d3d03dc3f2115
 SHA512 
2ab39973848d2d4693edd1dbd7ab2798b574026c9277bddd4a18e57aec65b3d93de201e87f58eb26030183b5c71818e6e56bcc1cda8c50892546cb1c04d6984a
-DIST pytest-5.3.3.tar.gz 990948 BLAKE2B 
fed1d9386aeec587134ac2057348cf59cf554a0fb3d4ff7251917662eb52e914021d17890adc58fb40f06382e770f0e22c2db8abdd0d27a2005f187daf1eaa7f
 SHA512 
79ac431f6a965d00431d3fa8353c756166d88628acfc254225f495bae9ca5f9e78a0282156a1e523b044a18da5fec9925a1a2aab5fcda3bac39cdaf2dee7be36
 DIST pytest-5.3.4.tar.gz 990897 BLAKE2B 
dd6f0a277352dd72e6348e89813a7df50aabf9ee134afd69412100b87a7898128ec6b17bf29082c88554b66ba5622b7e0b9a1338d6b740795f33055a9279cfdc
 SHA512 
562966d74d2ff12715ececa46acdd49de67f5e792687d52b3f53589f6dc6105aed09bd4c5098989d70b8a69e6bb4cfb9c0b1ee7e9cfc8e8252e3ba6b4d39e4bc

diff --git a/dev-python/pytest/pytest-4.6.8.ebuild 
b/dev-python/pytest/pytest-4.6.8.ebuild
deleted file mode 100644
index 5267018ca93..00000000000
--- a/dev-python/pytest/pytest-4.6.8.ebuild
+++ /dev/null
@@ -1,75 +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_{6,7,8} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Simple powerful testing with Python"
-HOMEPAGE="http://pytest.org/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-# When bumping, please check setup.py for the proper py version
-PY_VER="1.5.0"
-
-# pathlib2 has been added to stdlib before py3.6, but pytest needs __fspath__
-# support, which only came in py3.6.
-RDEPEND="
-       >=dev-python/atomicwrites-1.0[${PYTHON_USEDEP}]
-       >=dev-python/attrs-17.4.0[${PYTHON_USEDEP}]
-       >=dev-python/more-itertools-4.0.0[${PYTHON_USEDEP}]
-       $(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' 
\
-               -2 python3_{5,6,7} pypy3)
-       $(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' -2)
-       >=dev-python/pluggy-0.12[${PYTHON_USEDEP}]
-       <dev-python/pluggy-1
-       >=dev-python/py-${PY_VER}[${PYTHON_USEDEP}]
-       dev-python/packaging[${PYTHON_USEDEP}]
-       dev-python/six[${PYTHON_USEDEP}]
-       dev-python/wcwidth[${PYTHON_USEDEP}]
-       virtual/python-funcsigs[${PYTHON_USEDEP}]"
-
-# flake cause a number of tests to fail
-DEPEND="
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       test? (
-               ${RDEPEND}
-               dev-python/argcomplete[${PYTHON_USEDEP}]
-               >=dev-python/hypothesis-3.56[${PYTHON_USEDEP}]
-               dev-python/nose[${PYTHON_USEDEP}]
-               $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' -2)
-               dev-python/pexpect[${PYTHON_USEDEP}]
-               dev-python/pytest-xdist[${PYTHON_USEDEP}]
-               dev-python/requests[${PYTHON_USEDEP}]
-               !!dev-python/flaky
-       )"
-
-PATCHES=(
-       "${FILESDIR}/${PN}-4.5.0-strip-setuptools_scm.patch"
-)
-
-python_prepare_all() {
-       grep -qF "py>=${PY_VER}" setup.py || die "Incorrect dev-python/py 
dependency"
-
-       # Something in the ebuild environment causes this to hang/error.
-       # https://bugs.gentoo.org/598442
-       rm testing/test_pdb.py || die
-
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       # In v4.1.1, pytest started being picky about its own verbosity options.
-       # running pytest on itself with -vv made 3 tests fail. This is why we 
don't
-       # have it below.
-       "${EPYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX \
-               || die "tests failed with ${EPYTHON}"
-}

diff --git a/dev-python/pytest/pytest-5.3.2.ebuild 
b/dev-python/pytest/pytest-5.3.2.ebuild
deleted file mode 100644
index 3d6a7a5ab18..00000000000
--- a/dev-python/pytest/pytest-5.3.2.ebuild
+++ /dev/null
@@ -1,66 +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,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="Simple powerful testing with Python"
-HOMEPAGE="https://pytest.org/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-# When bumping, please check setup.py for the proper py version
-PY_VER="1.5.0"
-
-# pathlib2 has been added to stdlib before py3.6, but pytest needs __fspath__
-# support, which only came in py3.6.
-RDEPEND="
-       >=dev-python/attrs-17.4.0[${PYTHON_USEDEP}]
-       dev-python/importlib_metadata[${PYTHON_USEDEP}]
-       >=dev-python/more-itertools-4.0.0[${PYTHON_USEDEP}]
-       dev-python/packaging[${PYTHON_USEDEP}]
-       >=dev-python/pluggy-0.12[${PYTHON_USEDEP}]
-       <dev-python/pluggy-1
-       >=dev-python/py-${PY_VER}[${PYTHON_USEDEP}]
-       dev-python/six[${PYTHON_USEDEP}]
-       dev-python/wcwidth[${PYTHON_USEDEP}]
-       virtual/python-funcsigs[${PYTHON_USEDEP}]"
-
-# flake cause a number of tests to fail
-DEPEND="${RDEPEND}
-       test? (
-               >=dev-python/hypothesis-3.56[${PYTHON_USEDEP}]
-               dev-python/nose[${PYTHON_USEDEP}]
-               dev-python/mock[${PYTHON_USEDEP}]
-               dev-python/requests[${PYTHON_USEDEP}]
-               >=dev-python/setuptools-40[${PYTHON_USEDEP}]
-               dev-python/xmlschema[${PYTHON_USEDEP}]
-               !!dev-python/flaky
-       )"
-
-PATCHES=(
-       "${FILESDIR}/${PN}"-4.5.0-strip-setuptools_scm.patch
-)
-
-python_prepare_all() {
-       grep -qF "py>=${PY_VER}" setup.py || die "Incorrect dev-python/py 
dependency"
-
-       # Something in the ebuild environment causes this to hang/error.
-       # https://bugs.gentoo.org/598442
-       rm testing/test_pdb.py || die
-
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       "${EPYTHON}" -m pytest -vv --lsof -rfsxX \
-               || die "tests failed with ${EPYTHON}"
-}

diff --git a/dev-python/pytest/pytest-5.3.3.ebuild 
b/dev-python/pytest/pytest-5.3.3.ebuild
deleted file mode 100644
index 1be7d663ccd..00000000000
--- a/dev-python/pytest/pytest-5.3.3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="Simple powerful testing with Python"
-HOMEPAGE="https://pytest.org/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-# When bumping, please check setup.py for the proper py version
-PY_VER="1.5.0"
-
-# pathlib2 has been added to stdlib before py3.6, but pytest needs __fspath__
-# support, which only came in py3.6.
-RDEPEND="
-       >=dev-python/attrs-17.4.0[${PYTHON_USEDEP}]
-       dev-python/importlib_metadata[${PYTHON_USEDEP}]
-       >=dev-python/more-itertools-4.0.0[${PYTHON_USEDEP}]
-       dev-python/packaging[${PYTHON_USEDEP}]
-       >=dev-python/pluggy-0.12[${PYTHON_USEDEP}]
-       <dev-python/pluggy-1
-       >=dev-python/py-${PY_VER}[${PYTHON_USEDEP}]
-       dev-python/six[${PYTHON_USEDEP}]
-       dev-python/wcwidth[${PYTHON_USEDEP}]
-       virtual/python-funcsigs[${PYTHON_USEDEP}]"
-
-# flake cause a number of tests to fail
-DEPEND="${RDEPEND}
-       test? (
-               >=dev-python/hypothesis-3.56[${PYTHON_USEDEP}]
-               dev-python/nose[${PYTHON_USEDEP}]
-               dev-python/mock[${PYTHON_USEDEP}]
-               dev-python/requests[${PYTHON_USEDEP}]
-               dev-python/xmlschema[${PYTHON_USEDEP}]
-               !!dev-python/flaky
-       )"
-
-PATCHES=(
-       "${FILESDIR}/${PN}"-4.5.0-strip-setuptools_scm.patch
-)
-
-python_prepare_all() {
-       grep -qF "py>=${PY_VER}" setup.py || die "Incorrect dev-python/py 
dependency"
-
-       # Something in the ebuild environment causes this to hang/error.
-       # https://bugs.gentoo.org/598442
-       rm testing/test_pdb.py || die
-
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       "${EPYTHON}" -m pytest -vv --lsof -rfsxX \
-               || die "tests failed with ${EPYTHON}"
-}

Reply via email to