Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/sshuttle/
Date: Fri, 29 Apr 2022 10:21:57
Message-Id: 1651227658.f1a8223af37caa72fb2ba8a1f269c2f15daab4a7.sam@gentoo
1 commit: f1a8223af37caa72fb2ba8a1f269c2f15daab4a7
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 29 09:30:44 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 29 10:20:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1a8223a
7
8 net-proxy/sshuttle: drop 1.0.5
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-proxy/sshuttle/Manifest | 1 -
13 net-proxy/sshuttle/sshuttle-1.0.5.ebuild | 53 --------------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/net-proxy/sshuttle/Manifest b/net-proxy/sshuttle/Manifest
17 index 58aa627072b4..08faa7825113 100644
18 --- a/net-proxy/sshuttle/Manifest
19 +++ b/net-proxy/sshuttle/Manifest
20 @@ -1,2 +1 @@
21 -DIST sshuttle-1.0.5.tar.gz 88823 BLAKE2B 6a68be71a92c8245e2e60df1f425c6959547f8c2b972bdafcd774449c3779698c2549f2c7a3575c102158962ef9dd2edaaecec564f36f7f5cc84ed3f53b3daa3 SHA512 a9ebc8f8cf5ccc351796c2eb5b224b5d76908d23a367b768fa4e7b9cd8517ee7ff9c232c92ed4332f46d02d890ad8114f8beaa66876a8c0d7d4850c18ff4c2b3
22 DIST sshuttle-1.1.0.tar.gz 93987 BLAKE2B c81ab591d5f84764a6ed114623ccb1aaf2ff9706bc5f494513b19c4c2eeb218f3777b2bc7042329eb862aa311a5eab56669d88e10d92b019c0ff9ac9381e3903 SHA512 86361dec179c2ae61c338abaec3d0d36a280c1cc719c1df245a98379037315ac71781e8e5599bb50e34f5068dab3e1010cd7d15c614e01f3dc12011b620d43ee
23
24 diff --git a/net-proxy/sshuttle/sshuttle-1.0.5.ebuild b/net-proxy/sshuttle/sshuttle-1.0.5.ebuild
25 deleted file mode 100644
26 index dd71ee736799..000000000000
27 --- a/net-proxy/sshuttle/sshuttle-1.0.5.ebuild
28 +++ /dev/null
29 @@ -1,53 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -inherit distutils-r1 linux-info
37 -
38 -DESCRIPTION="Transparent proxy server that works as a poor man's VPN using ssh"
39 -HOMEPAGE="https://github.com/sshuttle/sshuttle https://pypi.org/project/sshuttle/"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="LGPL-2.1+"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -
46 -BDEPEND="
47 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
48 - dev-python/sphinx
49 - test? (
50 - dev-python/mock[${PYTHON_USEDEP}]
51 - )
52 -"
53 -RDEPEND="
54 - dev-python/psutil[${PYTHON_USEDEP}]
55 - || ( net-firewall/iptables net-firewall/nftables )
56 -"
57 -
58 -CONFIG_CHECK="~NETFILTER_XT_TARGET_HL ~IP_NF_TARGET_REDIRECT ~IP_NF_MATCH_TTL ~NF_NAT"
59 -
60 -distutils_enable_tests pytest
61 -
62 -python_prepare_all() {
63 - # Don't run tests via setup.py pytest
64 - sed -i "/setup_requires=/s/'pytest-runner'//" setup.py || die
65 -
66 - # Don't require pytest-cov when running tests
67 - sed -i "s/^addopts =/#\0/" setup.cfg || die
68 -
69 - distutils-r1_python_prepare_all
70 -}
71 -
72 -python_compile_all() {
73 - emake -j1 -C docs html man
74 -}
75 -
76 -python_install_all() {
77 - HTML_DOCS=( docs/_build/html/. )
78 -
79 - doman docs/_build/man/*
80 -
81 - distutils-r1_python_install_all
82 -}