diff options
author | Tim Harder <radhermit@gentoo.org> | 2016-04-08 01:13:35 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2016-04-08 01:14:04 -0400 |
commit | aedf8ac8807136a8ae9a144b92be013cab4522e4 (patch) | |
tree | 491654c8f612e56b43090f6c931324f2a5f4b71f /net-proxy/sshuttle | |
parent | sys-libs/timezone-data: version bump to 2016c (diff) | |
download | gentoo-aedf8ac8807136a8ae9a144b92be013cab4522e4.tar.gz gentoo-aedf8ac8807136a8ae9a144b92be013cab4522e4.tar.bz2 gentoo-aedf8ac8807136a8ae9a144b92be013cab4522e4.zip |
net-proxy/sshuttle: version bump to 0.78.0
Diffstat (limited to 'net-proxy/sshuttle')
-rw-r--r-- | net-proxy/sshuttle/Manifest | 1 | ||||
-rw-r--r-- | net-proxy/sshuttle/sshuttle-0.78.0.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/net-proxy/sshuttle/Manifest b/net-proxy/sshuttle/Manifest index e961d46acfce..b08ac1b905cc 100644 --- a/net-proxy/sshuttle/Manifest +++ b/net-proxy/sshuttle/Manifest @@ -3,3 +3,4 @@ DIST sshuttle-0.73.tar.gz 53321 SHA256 d78a6aa76f93ab69fd9685ce11b428a9b549c049a DIST sshuttle-0.75.tar.gz 52736 SHA256 63714287d8f9128eefafe4e1b9fc9c8367490f9d074a2b2ff2f555c46ff794b2 SHA512 caa1d2de2c1622086c00b1686dca14a975944cc91d6c9f0a9610060304b638609290e34bb9e719c2aadfc1f4f6eca151c769bb0cae7fe2ff74e67979e5949a24 WHIRLPOOL cc10efdbf5ce91ad308a72660595e84e78869168d2d8203065aa77d2c63a17f9075bacfade2ea74e73a358e42f989e48a3963232b8c68f88088f0858835c5023 DIST sshuttle-0.76.tar.gz 61706 SHA256 0b915dee37b203109930868465f4ae0389605cd5cde256381b62ef0637c810e0 SHA512 9a5cb401cef8f0bec3a9c9704ec87557196adadf6b8778c37473bffbf3b52100701e838a840a601b3fc6732ee3907fe25e2fb3ad5fe4e8f1776e35074cfb30cb WHIRLPOOL 4bf79bfa083e4bcb1e6cb68923267216971b915bb562d0c74c6d082d227e6ccc3b2966ec1770c9abc41ece8c50f8cc784d2d22fb90e5b0272b9356d7a16d3905 DIST sshuttle-0.77.2.tar.gz 63603 SHA256 20cc93802bded9efef1efb89a044abd7ef585cafc4da62b4bd83de944b8694bb SHA512 fba646528e91822709658674c770d24f1c20b9a678120442f0fdac422a553b0bf01ffd358a7874639eec6c272466f5a3fe8226c3d7b991f2d63c488a513f23ef WHIRLPOOL cc516641edf815b98ef340701cb58616596e99577868667a75063cbf212dc962d7dd50d39c0cf3fc8a0f644b263af2bbba51d1ba9facad8f9143b4465aec8a23 +DIST sshuttle-0.78.0.tar.gz 63391 SHA256 6bd80d48f73eb04d4449a8aa636081704107cfdef05980b3b02166ff44e419a2 SHA512 e4ecb09e79905c1be6d3d7935863231c54bd68144fbb1ca38af29d5efb35c42261db4319368d5c83474ed9714859b04012c9ad4108a77d283a0a041356f90cbd WHIRLPOOL 9f7c0ea7be81b4605ee4e9c14be1bc309fc273cc367be348a64f04569e5505888a12350e0ac07415edc541539dfdc3c3a5c6ac90421189dd6c6567ccc2131b37 diff --git a/net-proxy/sshuttle/sshuttle-0.78.0.ebuild b/net-proxy/sshuttle/sshuttle-0.78.0.ebuild new file mode 100644 index 000000000000..1d06a7c18d06 --- /dev/null +++ b/net-proxy/sshuttle/sshuttle-0.78.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_5} ) + +inherit eutils linux-info distutils-r1 + +DESCRIPTION="Transparent proxy server that works as a poor man's VPN using ssh" +HOMEPAGE="https://github.com/sshuttle/sshuttle https://pypi.python.org/pypi/sshuttle" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + net-firewall/iptables +" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/setuptools_scm[${PYTHON_USEDEP}] + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +CONFIG_CHECK="~NETFILTER_XT_TARGET_HL ~IP_NF_TARGET_REDIRECT ~NF_NAT" + +python_test() { + py.test || die "Tests fail under ${EPYTHON}" +} |