Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/dnspython: dnspython-1.10.0-r1.ebuild ChangeLog
Date: Wed, 29 May 2013 17:09:07
Message-Id: 20130529170901.06C2E2171D@flycatcher.gentoo.org
1 idella4 13/05/29 17:09:00
2
3 Modified: ChangeLog
4 Added: dnspython-1.10.0-r1.ebuild
5 Log:
6 revbump, migrate -> distutils-r1
7
8 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.80 dev-python/dnspython/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dnspython/ChangeLog?rev=1.80&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dnspython/ChangeLog?rev=1.80&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dnspython/ChangeLog?r1=1.79&r2=1.80
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/dnspython/ChangeLog,v
20 retrieving revision 1.79
21 retrieving revision 1.80
22 diff -u -r1.79 -r1.80
23 --- ChangeLog 1 Dec 2012 01:59:06 -0000 1.79
24 +++ ChangeLog 29 May 2013 17:09:00 -0000 1.80
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/dnspython
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/ChangeLog,v 1.79 2012/12/01 01:59:06 radhermit Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/ChangeLog,v 1.80 2013/05/29 17:09:00 idella4 Exp $
31 +
32 +*dnspython-1.10.0-r1 (29 May 2013)
33 +
34 + 29 May 2013; Ian Delaney <idella4@g.o> +dnspython-1.10.0-r1.ebuild:
35 + revbump, migrate -> distutils-r1
36
37 01 Dec 2012; Tim Harder <radhermit@g.o> dnspython-1.9.4.ebuild,
38 dnspython-1.10.0.ebuild:
39 @@ -296,4 +301,3 @@
40 02 May 2004; Bryan Østergaard <kloeri@g.o> +metadata.xml,
41 +dnspython-1.3.0.ebuild:
42 Initial import, bug #46500.
43 -
44
45
46
47 1.1 dev-python/dnspython/dnspython-1.10.0-r1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dnspython/dnspython-1.10.0-r1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dnspython/dnspython-1.10.0-r1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: dnspython-1.10.0-r1.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/dnspython-1.10.0-r1.ebuild,v 1.1 2013/05/29 17:09:00 idella4 Exp $
57
58 EAPI=5
59 PYTHON_COMPAT=( python{2_5,2_6,2_7} )
60
61 inherit distutils-r1
62
63 DESCRIPTION="DNS toolkit for Python"
64 HOMEPAGE="http://www.dnspython.org/ http://pypi.python.org/pypi/dnspython"
65 SRC_URI="http://www.dnspython.org/kits/${PV}/${P}.tar.gz"
66
67 LICENSE="ISC"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
70 IUSE="examples test"
71
72 DEPEND="dev-python/pycrypto[${PYTHON_USEDEP}]"
73 RDEPEND="${DEPEND}"
74
75 DOCS=( ChangeLog README )
76
77 python_prepare_all() {
78 use test && DISTUTILS_IN_SOURCE_BUILD=1
79 distutils-r1_python_prepare_all
80 }
81
82 python_test() {
83 pushd "${BUILD_DIR}"/../tests &> /dev/null
84 local test
85 for test in *.py; do
86 if ! "${PYTHON}" ${test}; then
87 die "test $test failed under ${EPYTHON}"
88 else
89 einfo "test $test"
90 fi
91 done
92 # make some order out of the output salad
93 einfo "Testsuite passed under ${EPYTHON}"
94 }
95
96 python_install_all() {
97 use examples && local EXAMPLES=( examples/. )
98 distutils-r1_python_install_all
99 }