diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-03-04 16:26:10 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-03-04 16:26:10 +0000 |
commit | 7902132fc3fd581fc2e86884fed2d01cd41fabe9 (patch) | |
tree | 4be82264a1d8407652c7edd22741313952c8a9f5 /dev-python/pyenchant | |
parent | Delete older ebuild. (diff) | |
download | gentoo-2-7902132fc3fd581fc2e86884fed2d01cd41fabe9.tar.gz gentoo-2-7902132fc3fd581fc2e86884fed2d01cd41fabe9.tar.bz2 gentoo-2-7902132fc3fd581fc2e86884fed2d01cd41fabe9.zip |
Version bump.
(Portage version: 15749-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pyenchant')
-rw-r--r-- | dev-python/pyenchant/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/pyenchant/pyenchant-1.6.0.ebuild | 32 |
2 files changed, 39 insertions, 1 deletions
diff --git a/dev-python/pyenchant/ChangeLog b/dev-python/pyenchant/ChangeLog index 49e3e64f0a9c..e37e07c7fb2c 100644 --- a/dev-python/pyenchant/ChangeLog +++ b/dev-python/pyenchant/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pyenchant # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/ChangeLog,v 1.15 2010/01/13 17:37:13 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/ChangeLog,v 1.16 2010/03/04 16:26:10 arfrever Exp $ + +*pyenchant-1.6.0 (04 Mar 2010) + + 04 Mar 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + -pyenchant-1.1.5.ebuild, +pyenchant-1.6.0.ebuild: + Version bump. 13 Jan 2010; Jeroen Roovers <jer@gentoo.org> pyenchant-1.5.3.ebuild: Marked ~hppa (bug #300741). diff --git a/dev-python/pyenchant/pyenchant-1.6.0.ebuild b/dev-python/pyenchant/pyenchant-1.6.0.ebuild new file mode 100644 index 000000000000..23a32c148b6d --- /dev/null +++ b/dev-python/pyenchant/pyenchant-1.6.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/pyenchant-1.6.0.ebuild,v 1.1 2010/03/04 16:26:10 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" +DISTUTILS_SRC_TEST="setup.py" + +inherit distutils + +DESCRIPTION="Python wrapper for the Enchant spellchecking wrapper library" +HOMEPAGE="http://pyenchant.sourceforge.net http://pypi.python.org/pypi/pyenchant" +SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="" + +DEPEND=">=app-text/enchant-1.4.0 + dev-python/setuptools" +RDEPEND="${DEPEND}" + +PYTHON_MODNAME="enchant" +DOCS="README.txt TODO.txt" + +src_prepare() { + distutils_src_prepare + + # TestInstallEnv tests are broken with Python 3 (enchant.tokenize is wrongly imported as tokenize). + sed -e "s/test_basic/_&/;s/test_UnicodeInstallPath/_&/" -i enchant/tests.py || die "sed failed" +} |