Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/twisted: twisted-11.1.0.ebuild ChangeLog
Date: Thu, 29 Dec 2011 04:15:38
Message-Id: 20111229041526.C4BAD2004B@flycatcher.gentoo.org
1 floppym 11/12/29 04:15:26
2
3 Modified: twisted-11.1.0.ebuild ChangeLog
4 Log:
5 Call python_get_implementation_and_version from src_test.
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-python/twisted/twisted-11.1.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-11.1.0.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-11.1.0.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/twisted-11.1.0.ebuild?r1=1.1&r2=1.2
15
16 Index: twisted-11.1.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-11.1.0.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- twisted-11.1.0.ebuild 27 Dec 2011 06:39:32 -0000 1.1
23 +++ twisted-11.1.0.ebuild 29 Dec 2011 04:15:26 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-11.1.0.ebuild,v 1.1 2011/12/27 06:39:32 floppym Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-11.1.0.ebuild,v 1.2 2011/12/29 04:15:26 floppym Exp $
29
30 EAPI="4"
31 PYTHON_DEPEND="2"
32 @@ -46,7 +46,8 @@
33 src_test() {
34 testing() {
35 local exit_status="0"
36 - "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" install --root="${T}/tests" --no-compile || die "Installation of tests failed with $(python_get_implementation) $(python_get_version)"
37 + "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" install
38 + --root="${T}/tests" --no-compile || die "Installation of tests failed with $(python_get_implementation_and_version)"
39
40 pushd "${T}/tests${EPREFIX}$(python_get_sitedir)" > /dev/null || die
41
42 @@ -64,7 +65,7 @@
43
44 if ! PYTHONPATH="." "${T}/tests${EPREFIX}/usr/bin/trial" twisted; then
45 if [[ -n "${TWISTED_DEBUG_TESTS}" ]]; then
46 - die "Tests failed with $(python_get_implementation) $(python_get_version)"
47 + die "Tests failed with $(python_get_implementation_and_version)"
48 else
49 exit_status="1"
50 fi
51
52
53
54 1.151 dev-python/twisted/ChangeLog
55
56 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.151&view=markup
57 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.151&content-type=text/plain
58 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted/ChangeLog?r1=1.150&r2=1.151
59
60 Index: ChangeLog
61 ===================================================================
62 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v
63 retrieving revision 1.150
64 retrieving revision 1.151
65 diff -u -r1.150 -r1.151
66 --- ChangeLog 27 Dec 2011 06:39:32 -0000 1.150
67 +++ ChangeLog 29 Dec 2011 04:15:26 -0000 1.151
68 @@ -1,6 +1,9 @@
69 # ChangeLog for dev-python/twisted
70 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
71 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.150 2011/12/27 06:39:32 floppym Exp $
72 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.151 2011/12/29 04:15:26 floppym Exp $
73 +
74 + 29 Dec 2011; Mike Gilbert <floppym@g.o> twisted-11.1.0.ebuild:
75 + Call python_get_implementation_and_version from src_test.
76
77 *twisted-11.1.0 (27 Dec 2011)