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/flask-themes: flask-themes-0.1.3-r1.ebuild ChangeLog
Date: Fri, 30 May 2014 11:07:48
Message-Id: 20140530110744.05BFE2004E@flycatcher.gentoo.org
1 idella4 14/05/30 11:07:43
2
3 Modified: flask-themes-0.1.3-r1.ebuild ChangeLog
4 Log:
5 add py3 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.5 dev-python/flask-themes/flask-themes-0.1.3-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-themes/flask-themes-0.1.3-r1.ebuild?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-themes/flask-themes-0.1.3-r1.ebuild?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-themes/flask-themes-0.1.3-r1.ebuild?r1=1.4&r2=1.5
15
16 Index: flask-themes-0.1.3-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-themes/flask-themes-0.1.3-r1.ebuild,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- flask-themes-0.1.3-r1.ebuild 6 May 2014 08:15:59 -0000 1.4
23 +++ flask-themes-0.1.3-r1.ebuild 30 May 2014 11:07:43 -0000 1.5
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/flask-themes/flask-themes-0.1.3-r1.ebuild,v 1.4 2014/05/06 08:15:59 idella4 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-themes/flask-themes-0.1.3-r1.ebuild,v 1.5 2014/05/30 11:07:43 idella4 Exp $
29
30 EAPI=5
31 -PYTHON_COMPAT=( python2_7 pypy )
32 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
33
34 inherit distutils-r1
35
36 @@ -28,5 +28,8 @@
37 PATCHES=( "${FILESDIR}"/fixtests.patch )
38
39 python_test() {
40 - PYTHONPATH=.:tests nosetests || die "Tests failed under ${EPYTHON}"
41 + # suite fails miserably under py3. Cannot even find upstream repo to file. pypi.org does NOT help
42 + if ! python_is_python3; then
43 + PYTHONPATH=.:tests nosetests || die "Tests failed under ${EPYTHON}"
44 + fi
45 }
46
47
48
49 1.7 dev-python/flask-themes/ChangeLog
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-themes/ChangeLog?rev=1.7&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-themes/ChangeLog?rev=1.7&content-type=text/plain
53 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-themes/ChangeLog?r1=1.6&r2=1.7
54
55 Index: ChangeLog
56 ===================================================================
57 RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-themes/ChangeLog,v
58 retrieving revision 1.6
59 retrieving revision 1.7
60 diff -u -r1.6 -r1.7
61 --- ChangeLog 6 May 2014 08:15:59 -0000 1.6
62 +++ ChangeLog 30 May 2014 11:07:43 -0000 1.7
63 @@ -1,6 +1,9 @@
64 # ChangeLog for dev-python/flask-themes
65 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
66 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-themes/ChangeLog,v 1.6 2014/05/06 08:15:59 idella4 Exp $
67 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-themes/ChangeLog,v 1.7 2014/05/30 11:07:43 idella4 Exp $
68 +
69 + 30 May 2014; Ian Delaney <idella4@g.o> flask-themes-0.1.3-r1.ebuild:
70 + add py3 support
71
72 06 May 2014; Ian Delaney <idella4@g.o> flask-themes-0.1.3-r1.ebuild:
73 drop py2.6 add pypy support