Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dnspython/
Date: Sun, 27 Mar 2016 17:44:49
Message-Id: 1459100644.9beb6a85cf9b68618e2346cb584be1860f4986c3.soap@gentoo
1 commit: 9beb6a85cf9b68618e2346cb584be1860f4986c3
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 17:22:51 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 17:44:04 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9beb6a85
7
8 dev-python/dnspython: Add python3_5 support
9
10 Package-Manager: portage-2.2.28
11
12 dev-python/dnspython/dnspython-1.12.0-r301.ebuild | 43 +++++++++++++++++++++++
13 1 file changed, 43 insertions(+)
14
15 diff --git a/dev-python/dnspython/dnspython-1.12.0-r301.ebuild b/dev-python/dnspython/dnspython-1.12.0-r301.ebuild
16 new file mode 100644
17 index 0000000..482d8a0
18 --- /dev/null
19 +++ b/dev-python/dnspython/dnspython-1.12.0-r301.ebuild
20 @@ -0,0 +1,43 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +PYTHON_COMPAT=( python3_{3,4,5} )
28 +
29 +inherit distutils-r1
30 +
31 +MY_PN="${PN}3"
32 +MY_P="${MY_PN}-${PV}"
33 +
34 +DESCRIPTION="DNS toolkit for Python"
35 +HOMEPAGE="http://www.dnspython.org/ https://pypi.python.org/pypi/dnspython"
36 +SRC_URI="http://www.dnspython.org/kits3/${PV}/${MY_P}.zip"
37 +
38 +LICENSE="ISC"
39 +SLOT="py3"
40 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
41 +IUSE="examples test"
42 +
43 +RDEPEND="dev-python/pycrypto[${PYTHON_USEDEP}]
44 + !dev-python/dnspython:0"
45 +DEPEND="${RDEPEND}
46 + !dev-python/dnspython:0
47 + app-arch/unzip"
48 +
49 +S="${WORKDIR}/${MY_P}"
50 +
51 +# For testsuite
52 +DISTUTILS_IN_SOURCE_BUILD=1
53 +
54 +python_test() {
55 + cd tests || die
56 + "${PYTHON}" utest.py || die "tests failed under ${EPYTHON}"
57 + einfo "Testsuite passed under ${EPYTHON}"
58 +}
59 +
60 +python_install_all() {
61 + use examples && local EXAMPLES=( examples/. )
62 + distutils-r1_python_install_all
63 +}