diff options
Diffstat (limited to 'net-libs/txtorcon/txtorcon-0.11.0.ebuild')
-rw-r--r-- | net-libs/txtorcon/txtorcon-0.11.0.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-libs/txtorcon/txtorcon-0.11.0.ebuild b/net-libs/txtorcon/txtorcon-0.11.0.ebuild new file mode 100644 index 000000000000..59b8a52f1616 --- /dev/null +++ b/net-libs/txtorcon/txtorcon-0.11.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/txtorcon/txtorcon-0.11.0.ebuild,v 1.1 2014/08/16 20:48:14 mrueg Exp $ + +EAPI=5 +PYTHON_COMPAT=(python2_7) + +inherit distutils-r1 + +DESCRIPTION="Twisted-based Tor controller client, with state-tracking and configuration abstractions" +HOMEPAGE="https://github.com/meejah/txtorcon https://pypi.python.org/pypi/txtorcon" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND="dev-python/twisted-core[${PYTHON_USEDEP}] + dev-python/ipaddr[${PYTHON_USEDEP}] + net-misc/tor + net-zope/zope-interface[${PYTHON_USEDEP}]" + +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/mock[${PYTHON_USEDEP}] )" + +python_test() { + trial --reporter=text test || die +} |