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/pytest: pytest-2.4.2.ebuild ChangeLog
Date: Sat, 30 Nov 2013 03:50:56
Message-Id: 20131130035052.9ACA02004E@flycatcher.gentoo.org
1 floppym 13/11/30 03:50:52
2
3 Modified: pytest-2.4.2.ebuild ChangeLog
4 Log:
5 Fix pexpect-3.0 problems in tests.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
8
9 Revision Changes Path
10 1.4 dev-python/pytest/pytest-2.4.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild?r1=1.3&r2=1.4
15
16 Index: pytest-2.4.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- pytest-2.4.2.ebuild 17 Nov 2013 04:13:46 -0000 1.3
23 +++ pytest-2.4.2.ebuild 30 Nov 2013 03:50:52 -0000 1.4
24 @@ -1,16 +1,12 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.3 2013/11/17 04:13:46 prometheanfire Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.4 2013/11/30 03:50:52 floppym Exp $
29
30 EAPI="5"
31
32 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
33 inherit distutils-r1 eutils
34
35 -RESTRICT="test"
36 -#testing restricted due to test failures with pexpect-3.0 (which is required for pypy2_0 and python3_x support)
37 -#https://bitbucket.org/hpk42/pytest/issue/386/tests-fail-with-pexpect-30
38 -
39 DESCRIPTION="py.test: simple powerful testing with Python"
40 HOMEPAGE="http://pytest.org/ http://pypi.python.org/pypi/pytest"
41 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 @@ -29,7 +25,11 @@
43 dev-python/setuptools[${PYTHON_USEDEP}]
44 virtual/python-argparse[${PYTHON_USEDEP}]
45 test? ( dev-python/pyyaml[${PYTHON_USEDEP}]
46 - dev-python/pexpect[${PYTHON_USEDEP}] )"
47 + >=dev-python/pexpect-3.0[${PYTHON_USEDEP}] )"
48 +
49 +PATCHES=(
50 + "${FILESDIR}/pytest-2.4.2-pexpect-3.0.patch"
51 +)
52
53 python_prepare_all() {
54 # Disable versioning of py.test script to avoid collision with
55
56
57
58 1.82 dev-python/pytest/ChangeLog
59
60 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/ChangeLog?rev=1.82&view=markup
61 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/ChangeLog?rev=1.82&content-type=text/plain
62 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/ChangeLog?r1=1.81&r2=1.82
63
64 Index: ChangeLog
65 ===================================================================
66 RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
67 retrieving revision 1.81
68 retrieving revision 1.82
69 diff -u -r1.81 -r1.82
70 --- ChangeLog 17 Nov 2013 04:13:46 -0000 1.81
71 +++ ChangeLog 30 Nov 2013 03:50:52 -0000 1.82
72 @@ -1,6 +1,10 @@
73 # ChangeLog for dev-python/pytest
74 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
75 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.81 2013/11/17 04:13:46 prometheanfire Exp $
76 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.82 2013/11/30 03:50:52 floppym Exp $
77 +
78 + 30 Nov 2013; Mike Gilbert <floppym@g.o>
79 + +files/pytest-2.4.2-pexpect-3.0.patch, pytest-2.4.2.ebuild:
80 + Fix pexpect-3.0 problems in tests.
81
82 17 Nov 2013; Matthew Thode <prometheanfire@g.o> pytest-2.4.2.ebuild:
83 added pytest-2.4.2 with restricted tests due to upstream bug