2017-03-29 12:15:17 +03:00
|
|
|
# Copyright 1999-2017 Gentoo Foundation
|
2015-10-03 23:18:52 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI="5"
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
|
|
|
|
inherit twisted-r1
|
|
|
|
|
|
|
|
DESCRIPTION="An implementation of the Q2Q protocol"
|
2017-08-10 10:30:32 +03:00
|
|
|
HOMEPAGE="https://github.com/twisted/vertex https://pypi.python.org/pypi/Vertex"
|
2015-10-03 23:18:52 +03:00
|
|
|
SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz"
|
|
|
|
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
2016-02-19 09:07:28 +03:00
|
|
|
IUSE="libressl test"
|
2015-10-03 23:18:52 +03:00
|
|
|
|
2016-02-19 09:07:28 +03:00
|
|
|
RDEPEND="
|
2015-10-03 23:18:52 +03:00
|
|
|
!libressl? ( dev-libs/openssl:0 )
|
|
|
|
libressl? ( dev-libs/libressl )
|
|
|
|
>=dev-python/epsilon-0.6.0-r1[${PYTHON_USEDEP}]
|
|
|
|
>=dev-python/pyopenssl-0.13-r1[${PYTHON_USEDEP}]
|
2017-03-29 12:15:17 +03:00
|
|
|
|| (
|
|
|
|
dev-python/twisted[${PYTHON_USEDEP}]
|
|
|
|
dev-python/twisted-core[${PYTHON_USEDEP}]
|
|
|
|
)"
|
2016-02-19 09:07:28 +03:00
|
|
|
DEPEND="${RDEPEND}
|
2017-03-29 12:15:17 +03:00
|
|
|
test? ( dev-python/pretend[${PYTHON_USEDEP}] )"
|
2015-10-03 23:18:52 +03:00
|
|
|
|
|
|
|
python_install_all() {
|
|
|
|
distutils-r1_python_install_all
|
|
|
|
|
|
|
|
dodoc NAME.txt
|
|
|
|
}
|