Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in virtual/python-futures: python-futures-0.ebuild ChangeLog
Date: Mon, 05 May 2014 05:11:26
Message-Id: 20140505051123.739972004C@flycatcher.gentoo.org
1 idella4 14/05/05 05:11:23
2
3 Modified: python-futures-0.ebuild ChangeLog
4 Log:
5 drop py2.6 add pypy support
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.4 virtual/python-futures/python-futures-0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-futures/python-futures-0.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-futures/python-futures-0.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-futures/python-futures-0.ebuild?r1=1.3&r2=1.4
15
16 Index: python-futures-0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/virtual/python-futures/python-futures-0.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- python-futures-0.ebuild 19 Apr 2014 18:02:54 -0000 1.3
23 +++ python-futures-0.ebuild 5 May 2014 05:11:23 -0000 1.4
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/virtual/python-futures/python-futures-0.ebuild,v 1.3 2014/04/19 18:02:54 mgorny Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/virtual/python-futures/python-futures-0.ebuild,v 1.4 2014/05/05 05:11:23 idella4 Exp $
29
30 EAPI=5
31 -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
32 +PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
33 inherit python-r1
34
35 DESCRIPTION="A virtual for the Python concurrent.futures module"
36 @@ -16,4 +16,4 @@
37 IUSE=""
38
39 RDEPEND="${PYTHON_DEPS}
40 - $(python_gen_cond_dep 'dev-python/futures[${PYTHON_USEDEP}]' 'python2*')"
41 + $(python_gen_cond_dep 'dev-python/futures[${PYTHON_USEDEP}]' python2_7 pypy)"
42
43
44
45 1.4 virtual/python-futures/ChangeLog
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-futures/ChangeLog?rev=1.4&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-futures/ChangeLog?rev=1.4&content-type=text/plain
49 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/python-futures/ChangeLog?r1=1.3&r2=1.4
50
51 Index: ChangeLog
52 ===================================================================
53 RCS file: /var/cvsroot/gentoo-x86/virtual/python-futures/ChangeLog,v
54 retrieving revision 1.3
55 retrieving revision 1.4
56 diff -u -r1.3 -r1.4
57 --- ChangeLog 19 Apr 2014 18:02:54 -0000 1.3
58 +++ ChangeLog 5 May 2014 05:11:23 -0000 1.4
59 @@ -1,6 +1,9 @@
60 # ChangeLog for virtual/python-futures
61 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
62 -# $Header: /var/cvsroot/gentoo-x86/virtual/python-futures/ChangeLog,v 1.3 2014/04/19 18:02:54 mgorny Exp $
63 +# $Header: /var/cvsroot/gentoo-x86/virtual/python-futures/ChangeLog,v 1.4 2014/05/05 05:11:23 idella4 Exp $
64 +
65 + 05 May 2014; Ian Delaney <idella4@g.o> python-futures-0.ebuild:
66 + drop py2.6 add pypy support
67
68 19 Apr 2014; Michał Górny <mgorny@g.o> python-futures-0.ebuild:
69 Use ${PYTHON_USEDEP} substitution support added to python_gen_cond_dep().