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/sanic/
Date: Sun, 30 May 2021 15:53:38
Message-Id: 1622389997.5e71fb95fafea6a27bc5e715ba211edeee87cf2c.andrewammerlaan@gentoo
1 commit: 5e71fb95fafea6a27bc5e715ba211edeee87cf2c
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 30 15:50:41 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Sun May 30 15:53:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5e71fb95
7
8 dev-python/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/sanic/Manifest | 1 -
14 dev-python/sanic/sanic-20.9.1.ebuild | 64 ------------------------------------
15 2 files changed, 65 deletions(-)
16
17 diff --git a/dev-python/sanic/Manifest b/dev-python/sanic/Manifest
18 index ee74883b9..a7ceefe58 100644
19 --- a/dev-python/sanic/Manifest
20 +++ b/dev-python/sanic/Manifest
21 @@ -1,2 +1 @@
22 -DIST sanic-20.9.1.tar.gz 214560 BLAKE2B 2df6127d9a4b0cc8fc60e2aafe47b4e10f1474b3bee5b3974265be8c5edcfd2f7fdccb4d2b3f977d2f51ff0a2d0dc33c2d120c7d858fae56d845f6b22261eb7e SHA512 4c19fa2731b98eeb843c272856a2e6a4d25817b29d490dfa9c7e4f086ca91b5a8f4c38488673029ca21d125858d6095f40a960284c487b2601bef2c1fdedca28
23 DIST sanic-21.3.4.tar.gz 234229 BLAKE2B a24941777099d5a09dd020a7f0a9fe39ae0ab89436fe27e2e4bbb418b684583002b9249e46438787d07bae6114ee1a0fd27e24e4e29983e8499f766f238e07d9 SHA512 15596f37b5389073d6a2b5e2d2bf5871d9a31ba29bf4e2eac9fb91df29e76035b02f7d892bb8edd5ffde75f05acdcebdb2c8f5ddf7224f40c5391c8f058f5c97
24
25 diff --git a/dev-python/sanic/sanic-20.9.1.ebuild b/dev-python/sanic/sanic-20.9.1.ebuild
26 deleted file mode 100644
27 index 8f522d970..000000000
28 --- a/dev-python/sanic/sanic-20.9.1.ebuild
29 +++ /dev/null
30 @@ -1,64 +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 -DISTUTILS_USE_SETUPTOOLS=rdepend
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Async Python 3.6+ web server/framework | Build fast. Run fast."
42 -HOMEPAGE="
43 - https://pypi.python.org/pypi/sanic
44 - https://github.com/huge-success/sanic
45 -"
46 -SRC_URI="https://github.com/huge-success/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 -
48 -LICENSE="MIT"
49 -SLOT="0"
50 -KEYWORDS="~amd64 ~x86"
51 -
52 -# lots of these
53 -# ValueError: Exception during request: [AttributeError("'AsyncConnectionPool' object has no attribute 'arequest'")]
54 -RESTRICT="test"
55 -
56 -RDEPEND="
57 - dev-python/aiofiles[${PYTHON_USEDEP}]
58 - dev-python/httpx[${PYTHON_USEDEP}]
59 - >=dev-python/httptools-0.0.10[${PYTHON_USEDEP}]
60 - dev-python/multidict[${PYTHON_USEDEP}]
61 - dev-python/ujson[${PYTHON_USEDEP}]
62 - dev-python/uvloop[${PYTHON_USEDEP}]
63 - >=dev-python/websockets-8.1[${PYTHON_USEDEP}]
64 - <dev-python/websockets-9.0[${PYTHON_USEDEP}]
65 -"
66 -DEPEND="
67 - ${RDEPEND}
68 - test? (
69 - dev-python/beautifulsoup[${PYTHON_USEDEP}]
70 - >=dev-python/httpcore-0.3.0[${PYTHON_USEDEP}]
71 - >=dev-python/pytest-5.2.1[${PYTHON_USEDEP}]
72 - dev-python/pytest-benchmark[${PYTHON_USEDEP}]
73 - dev-python/pytest-sanic[${PYTHON_USEDEP}]
74 - dev-python/uvicorn[${PYTHON_USEDEP}]
75 - www-servers/gunicorn[${PYTHON_USEDEP}]
76 - )
77 -"
78 -
79 -distutils_enable_tests pytest
80 -distutils_enable_sphinx docs \
81 - dev-python/docutils \
82 - dev-python/pygments \
83 - dev-python/sphinx_rtd_theme \
84 - dev-python/recommonmark \
85 - www-servers/gunicorn
86 -
87 -python_prepare_all() {
88 - # 'dependency' not found in `markers` configuration option
89 - # requires pytest version which is no longer in ::gentoo
90 - rm tests/test_load_module_from_file_location.py || die
91 - rm tests/test_update_config.py || die
92 -
93 - distutils-r1_python_prepare_all
94 -}