Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-services/
Date: Fri, 31 Jul 2020 06:21:15
Message-Id: 1596176462.310bf8b0179ea26f39b50c2ebd3a7691e7edbe66.mgorny@gentoo
1 commit: 310bf8b0179ea26f39b50c2ebd3a7691e7edbe66
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 05:38:32 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 06:21:02 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=310bf8b0
7
8 dev-python/pytest-services: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-services/Manifest | 1 -
13 .../pytest-services/pytest-services-2.0.1.ebuild | 51 ----------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/dev-python/pytest-services/Manifest b/dev-python/pytest-services/Manifest
17 index a51a355fa8e..5c9f267a154 100644
18 --- a/dev-python/pytest-services/Manifest
19 +++ b/dev-python/pytest-services/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytest-services-2.0.1.tar.gz 20386 BLAKE2B 5ec94fdd0fbc5990216fcbae112973fa8b41902a6fa666dd4c5dee2422f76e128ce3a576ec93ecb86bddff5f6bca0e1afaf791583bd275b2543d0e780e45014b SHA512 445cd5346f0c19b68014eb3c27b06376ae6699e31d8c1fee0cb3cda6e927d0ecadbffe3b0b832dd38fe63bc1fe4e3108e2ecbcabf0641af0bdbff019681f0576
22 DIST pytest-services-2.1.0.tar.gz 20552 BLAKE2B 6359c419591efed553e095e267c24f78f36b152f0eefe21d46742f7c15f05e92a9e86891f99762a3716fef5284b00d07d8d6eb825008dbbbf07e36dc62a7a6b4 SHA512 54a487546a2af7996acdbcd63bfc01626832aa41683617cdd345453cf6518afdf03cb8c2465e1f5d28c88b2cc801ffb0d9d4440582865f899e21fe42ab431ebc
23
24 diff --git a/dev-python/pytest-services/pytest-services-2.0.1.ebuild b/dev-python/pytest-services/pytest-services-2.0.1.ebuild
25 deleted file mode 100644
26 index 08f34377147..00000000000
27 --- a/dev-python/pytest-services/pytest-services-2.0.1.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{6..9} )
36 -DISTUTILS_USE_SETUPTOOLS=rdepend
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Collection of fixtures and utility functions to run service processes for pytest"
40 -HOMEPAGE="https://github.com/pytest-dev/pytest-services"
41 -SRC_URI="https://github.com/pytest-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ~ppc64 x86"
46 -IUSE="test"
47 -
48 -RDEPEND="
49 - dev-python/requests[${PYTHON_USEDEP}]
50 - dev-python/psutil[${PYTHON_USEDEP}]
51 - dev-python/pytest[${PYTHON_USEDEP}]
52 - dev-python/zc-lockfile[${PYTHON_USEDEP}]
53 -"
54 -BDEPEND="
55 - test? ( ${RDEPEND}
56 - dev-python/mock[${PYTHON_USEDEP}]
57 - dev-python/pylibmc[${PYTHON_USEDEP}]
58 - x11-base/xorg-server[xvfb]
59 - net-misc/memcached
60 - !dev-python/pytest-salt
61 - )
62 -"
63 -
64 -RESTRICT="!test? ( test )"
65 -
66 -PATCHES=(
67 - "${FILESDIR}/pytest-services-2.0.1-no-mysql.patch"
68 - "${FILESDIR}/pytest-services-2.0.1-lockdir.patch"
69 -)
70 -
71 -python_test() {
72 - distutils_install_for_testing
73 - pytest -vv tests || die "Tests failed under ${EPYTHON}"
74 -}
75 -
76 -python_install() {
77 - distutils-r1_python_install
78 -
79 - find "${D}" -name '*.pth' -delete || die
80 -}