diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-04-07 18:18:07 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-04-07 18:18:07 +0000 |
commit | 1d4083cf538e2b9fd25e05079398402ab20468ee (patch) | |
tree | d7f6fac427d4ddb47be5c91ad817ae52ef1cb20b /dev-python/mecab-python | |
parent | Removing unneeded dependency on dev-libs/boost (diff) | |
download | historical-1d4083cf538e2b9fd25e05079398402ab20468ee.tar.gz historical-1d4083cf538e2b9fd25e05079398402ab20468ee.tar.bz2 historical-1d4083cf538e2b9fd25e05079398402ab20468ee.zip |
Set SUPPORT_PYTHON_ABIS (bug #344731).
Package-Manager: portage-2.2.0_alpha29_p10/cvs/Linux x86_64
Diffstat (limited to 'dev-python/mecab-python')
-rw-r--r-- | dev-python/mecab-python/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/mecab-python/mecab-python-0.97.ebuild | 18 | ||||
-rw-r--r-- | dev-python/mecab-python/mecab-python-0.98.ebuild | 18 |
3 files changed, 28 insertions, 16 deletions
diff --git a/dev-python/mecab-python/ChangeLog b/dev-python/mecab-python/ChangeLog index 1e0530d05680..f1efba1e4e99 100644 --- a/dev-python/mecab-python/ChangeLog +++ b/dev-python/mecab-python/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/mecab-python -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mecab-python/ChangeLog,v 1.11 2010/01/23 09:06:53 matsuu Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mecab-python/ChangeLog,v 1.12 2011/04/07 18:18:07 arfrever Exp $ + + 07 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + mecab-python-0.97.ebuild, mecab-python-0.98.ebuild: + Set SUPPORT_PYTHON_ABIS (bug #344731). *mecab-python-0.98 (23 Jan 2010) diff --git a/dev-python/mecab-python/mecab-python-0.97.ebuild b/dev-python/mecab-python/mecab-python-0.97.ebuild index 4ab3dbbea418..b60143be3fe5 100644 --- a/dev-python/mecab-python/mecab-python-0.97.ebuild +++ b/dev-python/mecab-python/mecab-python-0.97.ebuild @@ -1,26 +1,30 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mecab-python/mecab-python-0.97.ebuild,v 1.5 2009/08/16 07:59:31 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/mecab-python/mecab-python-0.97.ebuild,v 1.6 2011/04/07 18:18:07 arfrever Exp $ -inherit distutils +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* *-jython" -IUSE="" +inherit distutils DESCRIPTION="Python binding for MeCab" HOMEPAGE="http://mecab.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN/-*}/${P}.tar.gz" LICENSE="|| ( BSD LGPL-2.1 GPL-2 )" -KEYWORDS="amd64 ~ia64 ppc64 x86" SLOT="0" +KEYWORDS="amd64 ~ia64 ppc64 x86" +IUSE="" DEPEND=">=app-text/mecab-${PV}" +RDEPEND="${DEPEND}" DOCS="test.py" +PYTHON_MODNAME="MeCab.py" src_install() { - distutils_src_install dohtml bindings.html || die - } diff --git a/dev-python/mecab-python/mecab-python-0.98.ebuild b/dev-python/mecab-python/mecab-python-0.98.ebuild index 64633c224811..e95531b7924a 100644 --- a/dev-python/mecab-python/mecab-python-0.98.ebuild +++ b/dev-python/mecab-python/mecab-python-0.98.ebuild @@ -1,26 +1,30 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mecab-python/mecab-python-0.98.ebuild,v 1.1 2010/01/23 09:06:53 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/mecab-python/mecab-python-0.98.ebuild,v 1.2 2011/04/07 18:18:07 arfrever Exp $ -inherit distutils +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* *-jython" -IUSE="" +inherit distutils DESCRIPTION="Python binding for MeCab" HOMEPAGE="http://mecab.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN/-*}/${P}.tar.gz" LICENSE="|| ( BSD LGPL-2.1 GPL-2 )" -KEYWORDS="~amd64 ~ia64 ~ppc64 ~x86" SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc64 ~x86" +IUSE="" DEPEND=">=app-text/mecab-${PV}" +RDEPEND="${DEPEND}" DOCS="test.py" +PYTHON_MODNAME="MeCab.py" src_install() { - distutils_src_install dohtml bindings.html || die - } |