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/python-levenshtein: python-levenshtein-0.11.2.ebuild ChangeLog
Date: Sun, 30 Mar 2014 07:54:30
Message-Id: 20140330075424.5DAFC20057@flycatcher.gentoo.org
1 idella4 14/03/30 07:54:24
2
3 Modified: python-levenshtein-0.11.2.ebuild ChangeLog
4 Log:
5 Add py3 support (except for doc build), fixes Bug #493998
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/python-levenshtein/python-levenshtein-0.11.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?r1=1.1&r2=1.2
15
16 Index: python-levenshtein-0.11.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- python-levenshtein-0.11.2.ebuild 8 Feb 2014 06:43:11 -0000 1.1
23 +++ python-levenshtein-0.11.2.ebuild 30 Mar 2014 07:54:24 -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/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.1 2014/02/08 06:43:11 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.2 2014/03/30 07:54:24 idella4 Exp $
29
30 EAPI=5
31 -PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 )
32 +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
33
34 inherit distutils-r1
35
36 @@ -27,8 +27,13 @@
37
38 python_compile_all() {
39 if use doc; then
40 - einfo "Generation of documentation"
41 - "${PYTHON}" "${FILESDIR}/genextdoc.py" Levenshtein || die "Generation of documentation failed"
42 + # Cannot assume user has a system py2 or pypy
43 + if python_is_python3; then
44 + die "The build of Levenshtein.html is not supported by python3"
45 + else
46 + einfo "Generation of documentation"
47 + "${PYTHON}" "${FILESDIR}/genextdoc.py" Levenshtein || die "Generation of documentation failed"
48 + fi
49 fi
50 }
51
52
53
54
55 1.21 dev-python/python-levenshtein/ChangeLog
56
57 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.21&view=markup
58 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.21&content-type=text/plain
59 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?r1=1.20&r2=1.21
60
61 Index: ChangeLog
62 ===================================================================
63 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v
64 retrieving revision 1.20
65 retrieving revision 1.21
66 diff -u -r1.20 -r1.21
67 --- ChangeLog 8 Feb 2014 06:43:11 -0000 1.20
68 +++ ChangeLog 30 Mar 2014 07:54:24 -0000 1.21
69 @@ -1,6 +1,10 @@
70 # ChangeLog for dev-python/python-levenshtein
71 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
72 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.20 2014/02/08 06:43:11 patrick Exp $
73 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.21 2014/03/30 07:54:24 idella4 Exp $
74 +
75 + 30 Mar 2014; Ian Delaney <idella4@g.o>
76 + python-levenshtein-0.11.2.ebuild:
77 + Add py3 support (except for doc build), fixes Bug #493998
78
79 *python-levenshtein-0.11.2 (08 Feb 2014)