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.12.0.ebuild ChangeLog
Date: Thu, 04 Sep 2014 15:29:16
Message-Id: 20140904152911.D4C594B26@oystercatcher.gentoo.org
1 idella4 14/09/04 15:29:11
2
3 Modified: ChangeLog
4 Added: dnspython-1.12.0.ebuild
5 Log:
6 bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.89 dev-python/dnspython/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dnspython/ChangeLog?rev=1.89&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dnspython/ChangeLog?rev=1.89&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dnspython/ChangeLog?r1=1.88&r2=1.89
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/dnspython/ChangeLog,v
20 retrieving revision 1.88
21 retrieving revision 1.89
22 diff -u -r1.88 -r1.89
23 --- ChangeLog 30 Aug 2014 11:55:58 -0000 1.88
24 +++ ChangeLog 4 Sep 2014 15:29:11 -0000 1.89
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/dnspython
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/ChangeLog,v 1.88 2014/08/30 11:55:58 nimiux Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/ChangeLog,v 1.89 2014/09/04 15:29:11 idella4 Exp $
30 +
31 +*dnspython-1.12.0 (04 Sep 2014)
32 +
33 + 04 Sep 2014; Ian Delaney <idella4@g.o> +dnspython-1.12.0.ebuild:
34 + bump
35
36 30 Aug 2014; Chema Alonso <nimiux@g.o> dnspython-1.11.1.ebuild:
37 Stable for amd64 wrt bug #513558
38
39
40
41 1.1 dev-python/dnspython/dnspython-1.12.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dnspython/dnspython-1.12.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dnspython/dnspython-1.12.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dnspython-1.12.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/dnspython-1.12.0.ebuild,v 1.1 2014/09/04 15:29:11 idella4 Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 )
54
55 inherit distutils-r1
56
57 DESCRIPTION="DNS toolkit for Python"
58 HOMEPAGE="http://www.dnspython.org/ http://pypi.python.org/pypi/dnspython"
59 SRC_URI="http://www.dnspython.org/kits/${PV}/${P}.tar.gz"
60
61 LICENSE="ISC"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
64 IUSE="examples test"
65
66 DEPEND="dev-python/pycrypto[${PYTHON_USEDEP}]"
67 RDEPEND="${DEPEND}"
68
69 # For tests
70 DISTUTILS_IN_SOURCE_BUILD=1
71
72 python_test() {
73 pushd "${BUILD_DIR}"/../tests &> /dev/null
74 local test
75 for test in *.py; do
76 if ! "${PYTHON}" ${test}; then
77 die "test $test failed under ${EPYTHON}"
78 else
79 einfo "test $test"
80 fi
81 done
82 einfo "Testsuite passed under ${EPYTHON}"
83 }
84
85 python_install_all() {
86 use examples && local EXAMPLES=( examples/. )
87 distutils-r1_python_install_all
88 }