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/PySocks/
Date: Wed, 06 May 2020 07:12:25
Message-Id: 1588749133.626ef51ab61971a42d3d524dc834ca3c0157d4bd.mgorny@gentoo
1 commit: 626ef51ab61971a42d3d524dc834ca3c0157d4bd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 6 06:58:32 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 6 07:12:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=626ef51a
7
8 dev-python/PySocks: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/PySocks/Manifest | 1 -
13 dev-python/PySocks/PySocks-1.6.8.ebuild | 30 ------------------------------
14 2 files changed, 31 deletions(-)
15
16 diff --git a/dev-python/PySocks/Manifest b/dev-python/PySocks/Manifest
17 index 037a0cac372..eb0ba6dc0a6 100644
18 --- a/dev-python/PySocks/Manifest
19 +++ b/dev-python/PySocks/Manifest
20 @@ -1,2 +1 @@
21 -DIST PySocks-1.6.8.tar.gz 283450 BLAKE2B 72b52fcdb9f3dc3bd71ca75cdbaa159c0b35a81fd4ed9476ab043819dad3efac76615bc751fc6014e1358a13a3a735023bae7f502e2863b5e733982c16758db1 SHA512 9b544cf11464142a5f347cd5688b48422249363a425ccf3887117152f2f1969713674c4bba714242432ae85f3d62e03edeb9cb7b73ebd225ed3b47b3da6896d5
22 DIST PySocks-1.7.1.tar.gz 284429 BLAKE2B 8015e8a0a7ebfbb09ec542393aeb633a769701445c07f24bb9e62b07803d7bb605f22e79ad9ec83e47aa7fe843a1a057073d97e25482e742f42e18b2c7a2f1b3 SHA512 cef4a5ce8c67fb485644696a23bf68a721db47f3211212de2d4431eaf9ebd26077dd5a06f6dfa7fde2dcb9d7c1ed551facd014e999929cb4d7b504972c464016
23
24 diff --git a/dev-python/PySocks/PySocks-1.6.8.ebuild b/dev-python/PySocks/PySocks-1.6.8.ebuild
25 deleted file mode 100644
26 index 521ccd527d3..00000000000
27 --- a/dev-python/PySocks/PySocks-1.6.8.ebuild
28 +++ /dev/null
29 @@ -1,30 +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 -
35 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="SOCKS client module"
40 -HOMEPAGE="https://github.com/Anorov/PySocks https://pypi.org/project/PySocks/"
41 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 -IUSE="test"
47 -
48 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
49 - test? (
50 - dev-python/pytest[${PYTHON_USEDEP}]
51 - )"
52 -
53 -# Required module test-server isn't in the tree yet and once that's added
54 -# psutil will need keywords added as well since it's used too.
55 -RESTRICT=test
56 -
57 -python_test() {
58 - py.test -v || die "Tests fail with ${EPYTHON}"
59 -}