blob: d23a2a1f83c4bc3ecc3d8bcc8623ae28013e9a35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 versionator
MY_P=${PN}_$(replace_version_separator 2 '-')
DESCRIPTION="Miscellaneous utilities for nevow and twisted.web programming"
HOMEPAGE="http://www.inoi.fi/open/trac/webut"
SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 ia64 ppc sparc x86"
IUSE="examples"
RDEPEND=">=dev-python/nevow-0.9.18[${PYTHON_USEDEP}]
>=dev-python/twisted-core-2[${PYTHON_USEDEP}]
>=dev-python/zope-interface-3.0.1[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}-$(get_version_component_range 1-2)"
python_install_all() {
use examples && local EXAMPLES=( examples/. )
distutils-r1_python_install_all
}
|