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/doit: doit-0.23.0-r1.ebuild ChangeLog
Date: Sun, 23 Mar 2014 13:17:32
Message-Id: 20140323131729.46DC920051@flycatcher.gentoo.org
1 idella4 14/03/23 13:17:29
2
3 Modified: doit-0.23.0-r1.ebuild ChangeLog
4 Log:
5 Correct deps, set test phase pypy capable and adjust for failures under pypy & py2.6, all wrt to the Bug #503616. Thx to Chicago for test support in irc. New release due in coming days set to fix most failed tests
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.2 dev-python/doit/doit-0.23.0-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/doit/doit-0.23.0-r1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/doit/doit-0.23.0-r1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/doit/doit-0.23.0-r1.ebuild?r1=1.1&r2=1.2
15
16 Index: doit-0.23.0-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/doit/doit-0.23.0-r1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- doit-0.23.0-r1.ebuild 21 Mar 2014 07:00:31 -0000 1.1
23 +++ doit-0.23.0-r1.ebuild 23 Mar 2014 13:17:29 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/doit/doit-0.23.0-r1.ebuild,v 1.1 2014/03/21 07:00:31 idella4 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/doit/doit-0.23.0-r1.ebuild,v 1.2 2014/03/23 13:17:29 idella4 Exp $
29
30 EAPI=5
31 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
32 @@ -15,9 +15,13 @@
33 KEYWORDS="~amd64"
34 IUSE="test"
35
36 -DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
37 RDEPEND="dev-python/pyinotify[${PYTHON_USEDEP}]
38 dev-python/six[${PYTHON_USEDEP}]"
39 +DEPEND="test? ( ${RDEPEND}
40 + dev-python/pytest[${PYTHON_USEDEP}]
41 + dev-python/mock[${PYTHON_USEDEP}] )"
42 +# Required for test phase
43 +DISTUTILS_IN_SOURCE_BUILD=1
44 DOCS=( AUTHORS CHANGES README TODO.txt dev_requirements.txt )
45
46 python_prepare_all() {
47 @@ -36,11 +40,19 @@
48
49 python_test() {
50 # Testsuite is designed to be run by py.test, called by runtests.py
51 - if [[ "${EPYTHON}" == 'pypy-c2.0' ]]; then
52 - einfo "some tests are not supported by pypy"
53 - else
54 - "${PYTHON}" runtests.py
55 + # https://bitbucket.org/schettino72/doit/issue/78/tests-that-fail-under-pypy
56 + if [[ "${EPYTHON}" == pypy-c2.0 ]]; then
57 + sed -e 's:test_corrupted_file:_&:' \
58 + -e 's:test_corrupted_file_unrecognized_excep_pdep:_&:' \
59 + -i tests/test_dependency.py || die
60 + elif [[ "${EPYTHON}" == python2.6 ]]; then
61 + rm -f tests/test___main__.py || die
62 + sed -e 's:test_invalid_param_stdout:_&:' \
63 + -i tests/test_action.py || die
64 + sed -e 's:test_run_wait:_&:' \
65 + -i tests/test_cmd_auto.py || die
66 fi
67 + "${PYTHON}" runtests.py
68 }
69
70 src_install() {
71
72
73
74 1.8 dev-python/doit/ChangeLog
75
76 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/doit/ChangeLog?rev=1.8&view=markup
77 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/doit/ChangeLog?rev=1.8&content-type=text/plain
78 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/doit/ChangeLog?r1=1.7&r2=1.8
79
80 Index: ChangeLog
81 ===================================================================
82 RCS file: /var/cvsroot/gentoo-x86/dev-python/doit/ChangeLog,v
83 retrieving revision 1.7
84 retrieving revision 1.8
85 diff -u -r1.7 -r1.8
86 --- ChangeLog 21 Mar 2014 07:00:31 -0000 1.7
87 +++ ChangeLog 23 Mar 2014 13:17:29 -0000 1.8
88 @@ -1,6 +1,11 @@
89 # ChangeLog for dev-python/doit
90 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
91 -# $Header: /var/cvsroot/gentoo-x86/dev-python/doit/ChangeLog,v 1.7 2014/03/21 07:00:31 idella4 Exp $
92 +# $Header: /var/cvsroot/gentoo-x86/dev-python/doit/ChangeLog,v 1.8 2014/03/23 13:17:29 idella4 Exp $
93 +
94 + 23 Mar 2014; Ian Delaney <idella4@g.o> doit-0.23.0-r1.ebuild:
95 + Correct deps, set test phase pypy capable and adjust for failures under pypy &
96 + py2.6, all wrt to the Bug #503616. Thx to Chicago for test support in irc.
97 + New release due in coming days set to fix most failed tests
98
99 *doit-0.23.0-r1 (21 Mar 2014)