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: Wed, 26 May 2021 20:00:24
Message-Id: 1622059212.9bb671747dd0ab393084d4852fff2dc7232238d0.mgorny@gentoo
1 commit: 9bb671747dd0ab393084d4852fff2dc7232238d0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 26 13:41:50 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 20:00:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bb67174
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.14.0.ebuild | 32 ----------------------
14 2 files changed, 33 deletions(-)
15
16 diff --git a/dev-python/pytest-asyncio/Manifest b/dev-python/pytest-asyncio/Manifest
17 index 7bd16c2621b..6014cabf906 100644
18 --- a/dev-python/pytest-asyncio/Manifest
19 +++ b/dev-python/pytest-asyncio/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytest-asyncio-0.14.0.tar.gz 14796 BLAKE2B 0a110dabde491293dc10452239971809ec6a4006a2036e848aac067df1af328d0d1d5c7afae8cfc1ecf5c919c0922050e2db182065500ec614a8094d3799c0cd SHA512 d1fadff152a0c94f80a8272a0dd293bd9d9300ad9e79c69556b5901c1a8ce00545f7715e503a383e3f4f35c8090d8f9ec33d16739b85378b59b1786a50441fca
22 DIST pytest-asyncio-0.15.1.tar.gz 15653 BLAKE2B 8f10c46672a18d6992248482f9e3eb68ca9d3bae5163d5924e6363a15bc97dbfdc8b9dfc21a8a89ee4a6e21d76b083b1aa5a077fe581f0f2f0bd4c5a7b519cc9 SHA512 1813d49e0dd55f563d9bf058e009da61a17f61e081cc53626b5f1db623ba04905b6bea3ecba423dc931668053310176b634339d6526c7ea729d9aad87e4f044d
23
24 diff --git a/dev-python/pytest-asyncio/pytest-asyncio-0.14.0.ebuild b/dev-python/pytest-asyncio/pytest-asyncio-0.14.0.ebuild
25 deleted file mode 100644
26 index 5449a5c5356..00000000000
27 --- a/dev-python/pytest-asyncio/pytest-asyncio-0.14.0.ebuild
28 +++ /dev/null
29 @@ -1,32 +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 -PYTHON_COMPAT=( python3_{7..9} pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Library for testing asyncio code with pytest"
40 -HOMEPAGE="https://github.com/pytest-dev/pytest-asyncio
41 - https://pypi.org/project/pytest-asyncio/"
42 -SRC_URI="https://github.com/pytest-dev/pytest-asyncio/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="Apache-2.0"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos"
47 -
48 -RDEPEND="
49 - >=dev-python/pytest-5.4.0"
50 -BDEPEND="
51 - test? (
52 - dev-python/async_generator[${PYTHON_USEDEP}]
53 - >=dev-python/hypothesis-3.64[${PYTHON_USEDEP}]
54 - )"
55 -
56 -distutils_enable_tests pytest
57 -
58 -python_test() {
59 - distutils_install_for_testing
60 - pytest -vv || die "Tests fail with ${EPYTHON}"
61 -}