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/python-engineio/
Date: Sat, 28 Mar 2020 21:11:46
Message-Id: 1585429862.2588455629b6dad8644a786c45816f5ef2f18198.mgorny@gentoo
1 commit: 2588455629b6dad8644a786c45816f5ef2f18198
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 20:58:06 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 21:11:02 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25884556
7
8 dev-python/python-engineio: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-engineio/Manifest | 1 -
13 .../python-engineio/python-engineio-1.7.0.ebuild | 27 ----------------------
14 2 files changed, 28 deletions(-)
15
16 diff --git a/dev-python/python-engineio/Manifest b/dev-python/python-engineio/Manifest
17 index ccda5b50090..cb21223c609 100644
18 --- a/dev-python/python-engineio/Manifest
19 +++ b/dev-python/python-engineio/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-engineio-1.7.0.tar.gz 22804 BLAKE2B bc807943cc24eddbc9cb25ceb55223ecf610ed37b281e5b0a59935705dc2d2c34ad5795e0bd96f1256cf91365756e43ed9c94b1082334d6f6c34f6b6e9472710 SHA512 1d184ccb9d1328d9f4e2fa22006f1d21bd17200bc893ee2588b4342da24775f98648e0e993893eb56a9159f95a114f128dfdacef9fa8ea296c7ace6c7741aea0
22 DIST python-engineio-2.2.0.tar.gz 22137 BLAKE2B 5e864a4cb2bc5048f459f98e24894bf263caedaf58ce3225dbb216fc5f4722efbaf7f346c39869daf485debff1479db254add66f6f256066ed26a11a8be196b3 SHA512 8e601c583bea21b37fc673bf92e3b40d6f3ded7068e7b103111b60d6677195e67338398934a270dacc8621b040e52d32eb9652e15607c7be69b6c50a8d19eaf2
23
24 diff --git a/dev-python/python-engineio/python-engineio-1.7.0.ebuild b/dev-python/python-engineio/python-engineio-1.7.0.ebuild
25 deleted file mode 100644
26 index 379ec3f2b7e..00000000000
27 --- a/dev-python/python-engineio/python-engineio-1.7.0.ebuild
28 +++ /dev/null
29 @@ -1,27 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python3_6 pypy3 )
35 -
36 -inherit distutils-r1
37 -
38 -MY_PN=""
39 -DESCRIPTION="Python implementation of the Engine.IO realtime server."
40 -HOMEPAGE="https://python-engineio.readthedocs.org/ https://github.com/miguelgrinberg/python-engineio/ https://pypi.org/project/python-engineio/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="test"
46 -
47 -RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
48 -DEPEND="${RDEPEND}
49 - dev-python/setuptools[${PYTHON_USEDEP}]"
50 -
51 -# pypi tarball does not contain tests
52 -RESTRICT="test"
53 -
54 -python_test() {
55 - esetup.py test || die "Tests failed under ${EPYTHON}"
56 -}