27 lines
759 B
Bash
27 lines
759 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="5"
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="An obfuscating proxy using Tor's pluggable transport protocol"
|
|
HOMEPAGE="https://www.torproject.org/projects/obfsproxy.html"
|
|
SRC_URI="mirror://pypi/o/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~mips ~x86"
|
|
|
|
DOCS=( ChangeLog INSTALL README TODO doc/HOWTO.txt )
|
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
RDEPEND=">=dev-python/pyptlib-0.0.6[${PYTHON_USEDEP}]
|
|
>=dev-python/pycrypto-2.6-r2[${PYTHON_USEDEP}]
|
|
dev-python/twisted-core[${PYTHON_USEDEP}]
|
|
dev-python/pyyaml[${PYTHON_USEDEP}]"
|
|
|
|
PATCHES=( "${FILESDIR}"/${PN}-0.2.9-remove-argparse.patch )
|