Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyenchant: ChangeLog pyenchant-1.6.2.ebuild
Date: Sat, 29 May 2010 16:13:57
Message-Id: 20100529161354.D54AC2CF37@corvid.gentoo.org
1 arfrever 10/05/29 16:13:54
2
3 Modified: ChangeLog
4 Added: pyenchant-1.6.2.ebuild
5 Log:
6 Version bump.
7 (Portage version: HEAD/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.22 dev-python/pyenchant/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyenchant/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyenchant/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyenchant/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyenchant/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 9 May 2010 18:06:56 -0000 1.21
23 +++ ChangeLog 29 May 2010 16:13:54 -0000 1.22
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/pyenchant
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/ChangeLog,v 1.21 2010/05/09 18:06:56 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/ChangeLog,v 1.22 2010/05/29 16:13:54 arfrever Exp $
29 +
30 +*pyenchant-1.6.2 (29 May 2010)
31 +
32 + 29 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + -pyenchant-1.6.0.ebuild, +pyenchant-1.6.2.ebuild:
34 + Version bump.
35
36 09 May 2010; Raúl Porcel <armin76@g.o> pyenchant-1.6.1.ebuild:
37 sparc stable wrt #313771
38
39
40
41 1.1 dev-python/pyenchant/pyenchant-1.6.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyenchant/pyenchant-1.6.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyenchant/pyenchant-1.6.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pyenchant-1.6.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/pyenchant-1.6.2.ebuild,v 1.1 2010/05/29 16:13:54 arfrever Exp $
51
52 EAPI="3"
53 SUPPORT_PYTHON_ABIS="1"
54 DISTUTILS_SRC_TEST="setup.py"
55
56 inherit distutils
57
58 DESCRIPTION="Python wrapper for the Enchant spellchecking wrapper library"
59 HOMEPAGE="http://pyenchant.sourceforge.net http://pypi.python.org/pypi/pyenchant"
60 SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
65 IUSE=""
66
67 DEPEND=">=app-text/enchant-1.4.0
68 dev-python/setuptools"
69 RDEPEND="${DEPEND}"
70
71 DOCS="README.txt TODO.txt"
72 PYTHON_MODNAME="enchant"
73
74 src_prepare() {
75 distutils_src_prepare
76
77 # TestInstallEnv tests are broken with Python 3 (enchant.tokenize is wrongly imported as tokenize).
78 sed -e "s/test_basic/_&/;s/test_UnicodeInstallPath/_&/" -i enchant/tests.py || die "sed failed"
79 }