Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/sshuttle/
Date: Fri, 23 Mar 2018 06:39:28
Message-Id: 1521787152.2cd7a2dc7880b695c164e5ca15fdec9126feb2d2.radhermit@gentoo
1 commit: 2cd7a2dc7880b695c164e5ca15fdec9126feb2d2
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 23 06:30:13 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 23 06:39:12 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cd7a2dc
7
8 net-proxy/sshuttle: remove old
9
10 net-proxy/sshuttle/sshuttle-0.78.3.ebuild | 42 -------------------------------
11 1 file changed, 42 deletions(-)
12
13 diff --git a/net-proxy/sshuttle/sshuttle-0.78.3.ebuild b/net-proxy/sshuttle/sshuttle-0.78.3.ebuild
14 deleted file mode 100644
15 index b627c1c8e0c..00000000000
16 --- a/net-proxy/sshuttle/sshuttle-0.78.3.ebuild
17 +++ /dev/null
18 @@ -1,42 +0,0 @@
19 -# Copyright 1999-2017 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=6
23 -PYTHON_COMPAT=( python{2_7,3_5,3_6} )
24 -
25 -inherit linux-info distutils-r1
26 -
27 -DESCRIPTION="Transparent proxy server that works as a poor man's VPN using ssh"
28 -HOMEPAGE="https://github.com/sshuttle/sshuttle https://pypi.python.org/pypi/sshuttle"
29 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
30 -
31 -LICENSE="GPL-2+"
32 -SLOT="0"
33 -KEYWORDS="amd64 x86"
34 -IUSE="test"
35 -
36 -RDEPEND="
37 - dev-python/setuptools[${PYTHON_USEDEP}]
38 - net-firewall/iptables
39 -"
40 -DEPEND="
41 - dev-python/setuptools[${PYTHON_USEDEP}]
42 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
43 - test? (
44 - dev-python/pytest[${PYTHON_USEDEP}]
45 - dev-python/mock[${PYTHON_USEDEP}]
46 - )
47 -"
48 -
49 -CONFIG_CHECK="~NETFILTER_XT_TARGET_HL ~IP_NF_TARGET_REDIRECT ~IP_NF_MATCH_TTL ~NF_NAT"
50 -
51 -python_prepare_all() {
52 - # don't run tests via setup.py pytest
53 - sed -i "/setup_requires=/s/'pytest-runner'//" setup.py || die
54 -
55 - distutils-r1_python_prepare_all
56 -}
57 -
58 -python_test() {
59 - py.test || die "Tests fail under ${EPYTHON}"
60 -}