blob: 15469023f13e6f7e09dd0645c7001ea8d46d7ebe (
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
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python3_4 )
inherit distutils-r1
MY_PN="${PN/py/py3}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Python DNS (Domain Name System) library"
HOMEPAGE="https://launchpad.net/py3dns"
SRC_URI="https://launchpad.net/${MY_PN}/trunk/${PV}/+download/${MY_P}.tar.gz"
LICENSE="CNRI"
SLOT="3"
KEYWORDS="amd64 hppa ~ia64 ~ppc ~sparc x86"
IUSE="examples"
DEPEND=""
RDEPEND=""
# Most if not all of the tests require network access.
RESTRICT=test
S="${WORKDIR}/${MY_P}"
python_test() {
# Some of the tests are broken.
for test in tests/{test{,2,4}.py,testsrv.py}
do
"${PYTHON}" ${test} || die
done
"${PYTHON}" tests/test5.py example.org || die
}
python_install_all() {
use examples && local EXAMPLES=( ./{tests,tools}/. )
distutils-r1_python_install_all
}
|