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-testinfra/
Date: Mon, 16 May 2022 13:27:59
Message-Id: 1652707481.72e23c51b0b37179aedf77ba4116df5d1faec52b.mgorny@gentoo
1 commit: 72e23c51b0b37179aedf77ba4116df5d1faec52b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 16 13:24:41 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 16 13:24:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72e23c51
7
8 dev-python/pytest-testinfra: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-testinfra/Manifest | 1 -
13 .../pytest-testinfra/pytest-testinfra-6.6.0.ebuild | 46 ----------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-python/pytest-testinfra/Manifest b/dev-python/pytest-testinfra/Manifest
17 index d0bea5315dd0..f8b7e5eaca36 100644
18 --- a/dev-python/pytest-testinfra/Manifest
19 +++ b/dev-python/pytest-testinfra/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytest-testinfra-6.6.0.tar.gz 78285 BLAKE2B c7583685aeb770f76e4679730599909b8fff53d1909664f55e2d35f7f5a6a96741e3aa56b81da464c2d474d1d5f646892e36a4f9b6938327cb526476536b0b6c SHA512 f78f1cd5240e157d4e2949178f29900a7b85a6065b4113b18273af3f1fef6b19c859192f59426b93eba48418bb89d163ad1d951e97d4fdfcea4394635a05140a
22 DIST pytest-testinfra-6.7.0.tar.gz 79187 BLAKE2B 08678f381392fe8a1fe335adc90ac6dc67c5bfa33c87f4e9d81b439eaabd29c393b8dc80cc79625784e76e5b0e264cdfc272cddb531acefbac9a8327be46f7be SHA512 d11f30da0eae9f215173d3f84e6ba7965d926b8ef6c49619c2ccae3d3ff215f351b950eea019e6516a56de0aa7bc533658af978d827a3ad3d1c50e37902b6f91
23
24 diff --git a/dev-python/pytest-testinfra/pytest-testinfra-6.6.0.ebuild b/dev-python/pytest-testinfra/pytest-testinfra-6.6.0.ebuild
25 deleted file mode 100644
26 index 562a2e01bbd7..000000000000
27 --- a/dev-python/pytest-testinfra/pytest-testinfra-6.6.0.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Write unit tests in Python to test actual state of your servers"
41 -HOMEPAGE="https://github.com/pytest-dev/pytest-testinfra"
42 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="Apache-2.0"
45 -SLOT="0"
46 -KEYWORDS="~amd64"
47 -
48 -RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
49 -# Ansible is called via its CLI
50 -BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
51 - test? (
52 - <app-admin/ansible-5
53 - dev-python/paramiko[${PYTHON_USEDEP}]
54 - dev-python/pywinrm[${PYTHON_USEDEP}]
55 - $(python_gen_cond_dep '
56 - app-admin/salt[${PYTHON_USEDEP}]
57 - ' python3_{8..9} )
58 - )"
59 -
60 -distutils_enable_tests pytest
61 -
62 -python_test() {
63 - if [[ ${EPYTHON} == "python3.10" ]]; then
64 - ewarn "Some of the tests are skipped on ${EPYTHON} because it still isn't supported by app-admin/salt"
65 - local EPYTEST_DESELECT=(
66 - test/test_backends.py::test_backend_importables
67 - )
68 - fi
69 - epytest
70 -}
71 -
72 -pkg_postinst() {
73 - elog "For the list of available connection back-ends and their dependencies,"
74 - elog "please consult https://testinfra.readthedocs.io/en/latest/backends.html"
75 -}