Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@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: Sat, 08 Feb 2014 06:43:16
Message-Id: 20140208064312.05B572004C@flycatcher.gentoo.org
1 patrick 14/02/08 06:43:11
2
3 Modified: ChangeLog
4 Added: python-levenshtein-0.11.2.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.20 dev-python/python-levenshtein/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 3 Dec 2013 06:20:59 -0000 1.19
24 +++ ChangeLog 8 Feb 2014 06:43:11 -0000 1.20
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/python-levenshtein
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.19 2013/12/03 06:20:59 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.20 2014/02/08 06:43:11 patrick Exp $
31 +
32 +*python-levenshtein-0.11.2 (08 Feb 2014)
33 +
34 + 08 Feb 2014; Patrick Lauer <patrick@g.o>
35 + +python-levenshtein-0.11.2.ebuild:
36 + Bump
37
38 *python-levenshtein-0.11.1 (03 Dec 2013)
39
40
41
42
43 1.1 dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: python-levenshtein-0.11.2.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $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 $
53
54 EAPI=5
55 PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 )
56
57 inherit distutils-r1
58
59 MY_PN="python-Levenshtein"
60 MY_P="${MY_PN}-${PV}"
61
62 DESCRIPTION="Functions for fast computation of Levenshtein (edit) distance, and edit operations"
63 HOMEPAGE="http://github.com/miohtama/python-Levenshtein/tree/
64 http://pypi.python.org/pypi/python-Levenshtein/"
65 SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ia64 ~x86"
70 IUSE="doc"
71
72 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
73 RDEPEND=""
74
75 S="${WORKDIR}/${MY_P}"
76
77 python_compile_all() {
78 if use doc; then
79 einfo "Generation of documentation"
80 "${PYTHON}" "${FILESDIR}/genextdoc.py" Levenshtein || die "Generation of documentation failed"
81 fi
82 }
83
84 python_install_all() {
85 use doc && local HTML_DOCS=( Levenshtein.html )
86 distutils-r1_python_install_all
87 }