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/futures: futures-2.1.6.ebuild ChangeLog
Date: Mon, 05 May 2014 04:51:28
Message-Id: 20140505045122.379132004C@flycatcher.gentoo.org
1 idella4 14/05/05 04:51:22
2
3 Modified: futures-2.1.6.ebuild ChangeLog
4 Log:
5 drop py2.6 add pypy support, upgrade test phase
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.2 dev-python/futures/futures-2.1.6.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/futures/futures-2.1.6.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/futures/futures-2.1.6.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/futures/futures-2.1.6.ebuild?r1=1.1&r2=1.2
15
16 Index: futures-2.1.6.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/futures/futures-2.1.6.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- futures-2.1.6.ebuild 23 Jan 2014 02:32:24 -0000 1.1
23 +++ futures-2.1.6.ebuild 5 May 2014 04:51:22 -0000 1.2
24 @@ -1,9 +1,9 @@
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/futures/futures-2.1.6.ebuild,v 1.1 2014/01/23 02:32:24 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/futures/futures-2.1.6.ebuild,v 1.2 2014/05/05 04:51:22 idella4 Exp $
29
30 EAPI=5
31 -PYTHON_COMPAT=( python{2_6,2_7} )
32 +PYTHON_COMPAT=( python2_7 pypy )
33 inherit distutils-r1
34
35 DESCRIPTION="Backport of the concurrent.futures package from Python 3.2"
36 @@ -17,12 +17,19 @@
37
38 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
39 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
40 +# Requ'd for failing tests under pypy
41 +DISTUTILS_IN_SOURCE_BUILD=1
42
43 python_compile_all() {
44 use doc && emake -C docs html
45 }
46
47 python_test() {
48 + # tests that fail under pypy
49 + # http://code.google.com/p/pythonfutures/issues/detail?id=27
50 + if [[ "${EPYTHON}" == pypy ]]; then
51 + sed -e 's:test_del_shutdown:_&:g' -e 's:test_repr:_&:' -i test_futures.py || die
52 + fi
53 "${PYTHON}" test_futures.py || die "Tests fail with ${EPYTHON}"
54 }
55
56
57
58
59 1.10 dev-python/futures/ChangeLog
60
61 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/futures/ChangeLog?rev=1.10&view=markup
62 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/futures/ChangeLog?rev=1.10&content-type=text/plain
63 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/futures/ChangeLog?r1=1.9&r2=1.10
64
65 Index: ChangeLog
66 ===================================================================
67 RCS file: /var/cvsroot/gentoo-x86/dev-python/futures/ChangeLog,v
68 retrieving revision 1.9
69 retrieving revision 1.10
70 diff -u -r1.9 -r1.10
71 --- ChangeLog 23 Jan 2014 02:32:24 -0000 1.9
72 +++ ChangeLog 5 May 2014 04:51:22 -0000 1.10
73 @@ -1,6 +1,9 @@
74 # ChangeLog for dev-python/futures
75 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
76 -# $Header: /var/cvsroot/gentoo-x86/dev-python/futures/ChangeLog,v 1.9 2014/01/23 02:32:24 radhermit Exp $
77 +# $Header: /var/cvsroot/gentoo-x86/dev-python/futures/ChangeLog,v 1.10 2014/05/05 04:51:22 idella4 Exp $
78 +
79 + 05 May 2014; Ian Delaney <idella4@g.o> futures-2.1.6.ebuild:
80 + drop py2.6 add pypy support, upgrade test phase
81
82 *futures-2.1.6 (23 Jan 2014)