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-asyncio/
Date: Fri, 31 Jul 2020 06:21:16
Message-Id: 1596176461.9ebd3db36a8574a4804dd166592e5baf54792374.mgorny@gentoo
1 commit: 9ebd3db36a8574a4804dd166592e5baf54792374
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 05:37:56 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 06:21:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ebd3db3
7
8 dev-python/pytest-asyncio: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-asyncio/Manifest | 1 -
13 .../pytest-asyncio/pytest-asyncio-0.12.0.ebuild | 33 ----------------------
14 2 files changed, 34 deletions(-)
15
16 diff --git a/dev-python/pytest-asyncio/Manifest b/dev-python/pytest-asyncio/Manifest
17 index a35e218e3f8..5e40c6e3733 100644
18 --- a/dev-python/pytest-asyncio/Manifest
19 +++ b/dev-python/pytest-asyncio/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytest-asyncio-0.12.0.tar.gz 14294 BLAKE2B f62bb025bd3e35b5b4571b232ae2dabe5ef42075fa98f2f5ba28f78f16d81eadeb68b7dcd11a9f8170c1077c331c7abbb0fadc02863458ef03d238b399e6f37d SHA512 2e69bfff3f0b35cc82381b841229749d309967ce1d36972933f5bc6d5dff45934608310ed3fa1805dc38ab41bf913a881493c28d6d0e9be733b624cd2fda97d3
22 DIST pytest-asyncio-0.14.0.tar.gz 14796 BLAKE2B 0a110dabde491293dc10452239971809ec6a4006a2036e848aac067df1af328d0d1d5c7afae8cfc1ecf5c919c0922050e2db182065500ec614a8094d3799c0cd SHA512 d1fadff152a0c94f80a8272a0dd293bd9d9300ad9e79c69556b5901c1a8ce00545f7715e503a383e3f4f35c8090d8f9ec33d16739b85378b59b1786a50441fca
23
24 diff --git a/dev-python/pytest-asyncio/pytest-asyncio-0.12.0.ebuild b/dev-python/pytest-asyncio/pytest-asyncio-0.12.0.ebuild
25 deleted file mode 100644
26 index 3b6370c3ca0..00000000000
27 --- a/dev-python/pytest-asyncio/pytest-asyncio-0.12.0.ebuild
28 +++ /dev/null
29 @@ -1,33 +0,0 @@
30 -# Copyright 2019-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -DISTUTILS_USE_SETUPTOOLS=rdepend
36 -PYTHON_COMPAT=( python3_{6..9} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Library for testing asyncio code with pytest"
41 -HOMEPAGE="https://github.com/pytest-dev/pytest-asyncio
42 - https://pypi.org/project/pytest-asyncio/"
43 -SRC_URI="https://github.com/pytest-dev/pytest-asyncio/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="Apache-2.0"
46 -SLOT="0"
47 -KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86"
48 -
49 -RDEPEND="
50 - >=dev-python/pytest-5.4.0"
51 -BDEPEND="
52 - test? (
53 - dev-python/async_generator[${PYTHON_USEDEP}]
54 - >=dev-python/hypothesis-3.64[${PYTHON_USEDEP}]
55 - )"
56 -
57 -distutils_enable_tests pytest
58 -
59 -python_test() {
60 - distutils_install_for_testing
61 - pytest -vv || die "Tests fail with ${EPYTHON}"
62 -}