Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-sanic/
Date: Sun, 30 May 2021 15:53:39
Message-Id: 1622389998.17f53ac8fc92cd92c875823cb588bc755d1d86a2.andrewammerlaan@gentoo
1 commit: 17f53ac8fc92cd92c875823cb588bc755d1d86a2
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 30 15:53:06 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Sun May 30 15:53:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=17f53ac8
7
8 dev-python/pytest-sanic: drop old
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
12
13 dev-python/pytest-sanic/Manifest | 1 -
14 dev-python/pytest-sanic/pytest-sanic-1.6.2.ebuild | 36 -----------------------
15 2 files changed, 37 deletions(-)
16
17 diff --git a/dev-python/pytest-sanic/Manifest b/dev-python/pytest-sanic/Manifest
18 index 2d751be0e..c905f80b0 100644
19 --- a/dev-python/pytest-sanic/Manifest
20 +++ b/dev-python/pytest-sanic/Manifest
21 @@ -1,2 +1 @@
22 -DIST pytest-sanic-1.6.2.tar.gz 31480 BLAKE2B e579df1100bb83e95599f9d3e54892feef7186dd7a49375f618868ba3b1d73ac966224332e9751fe05b62e63cd31d2a2bed23d2e243fa75bc5445f9d85fd4a8e SHA512 d04e6dbfb11f6a348923e0683848da4cb243c3ba158906f1fc56c24d23a9f947e199c16a2d8769152e46acf5c9cc179361b87c646d95075fb499d58376dce941
23 DIST pytest-sanic-1.7.1.tar.gz 30888 BLAKE2B 24623e47fb05db9919cfd0b41468261697ac70c7bc3e47a3c6c86efadbddd3c80f2e6173eb109206472d0b639ecd20edd0cebb244bd96ed1d2ca10dd88924b5b SHA512 a55ffd1c878478bd42aad5dc023f83e880ead4fb8538a24d327bd0fb7f811e0d3679e49206835ee7f98ac0a02dedb05f6fa729252eab7972879c196c57e3f071
24
25 diff --git a/dev-python/pytest-sanic/pytest-sanic-1.6.2.ebuild b/dev-python/pytest-sanic/pytest-sanic-1.6.2.ebuild
26 deleted file mode 100644
27 index 8f5829252..000000000
28 --- a/dev-python/pytest-sanic/pytest-sanic-1.6.2.ebuild
29 +++ /dev/null
30 @@ -1,36 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="7"
35 -
36 -PYTHON_COMPAT=( python3_{7,8} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="a Pytest Plugin for Sanic"
41 -HOMEPAGE="
42 - https://pypi.python.org/pypi/pytest-sanic
43 - https://github.com/yunstanford/pytest-sanic
44 -"
45 -SRC_URI="https://github.com/yunstanford/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~x86"
50 -
51 -RDEPEND="
52 - dev-python/aiohttp[${PYTHON_USEDEP}]
53 - dev-python/async_generator[${PYTHON_USEDEP}]
54 - dev-python/pytest[${PYTHON_USEDEP}]
55 - dev-python/pytest-asyncio[${PYTHON_USEDEP}]
56 - dev-python/sanic[${PYTHON_USEDEP}]
57 -"
58 -
59 -distutils_enable_tests pytest
60 -# where is the conf.py file? make html can't find it either
61 -#distutils_enable_sphinx docs
62 -
63 -python_test() {
64 - distutils_install_for_testing
65 - pytest -vv || die "Tests failed with ${EPYTHON}"
66 -}