diff options
author | 2009-10-01 23:00:10 +0000 | |
---|---|---|
committer | 2009-10-01 23:00:10 +0000 | |
commit | fe7f5971b49c140450aa730de85a2d66648c579a (patch) | |
tree | c4efc57bb1fd27a3162f0b3e12db371281274770 /dev-python/buildutils | |
parent | Stable on amd64 (bug #287135) (diff) | |
download | gentoo-2-fe7f5971b49c140450aa730de85a2d66648c579a.tar.gz gentoo-2-fe7f5971b49c140450aa730de85a2d66648c579a.tar.bz2 gentoo-2-fe7f5971b49c140450aa730de85a2d66648c579a.zip |
Set SUPPORT_PYTHON_ABIS.
(Portage version: 14471-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/buildutils')
-rw-r--r-- | dev-python/buildutils/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/buildutils/buildutils-0.3.ebuild | 28 |
2 files changed, 21 insertions, 15 deletions
diff --git a/dev-python/buildutils/ChangeLog b/dev-python/buildutils/ChangeLog index d4e0b1b02bca..369e97a5d7cb 100644 --- a/dev-python/buildutils/ChangeLog +++ b/dev-python/buildutils/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/buildutils -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/ChangeLog,v 1.5 2008/04/05 14:51:48 hawking Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/ChangeLog,v 1.6 2009/10/01 23:00:10 arfrever Exp $ + + 01 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + buildutils-0.3.ebuild: + Set SUPPORT_PYTHON_ABIS. *buildutils-0.3 (05 Apr 2008) diff --git a/dev-python/buildutils/buildutils-0.3.ebuild b/dev-python/buildutils/buildutils-0.3.ebuild index 5d6155407c95..56989b75940f 100644 --- a/dev-python/buildutils/buildutils-0.3.ebuild +++ b/dev-python/buildutils/buildutils-0.3.ebuild @@ -1,36 +1,38 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild,v 1.1 2008/04/05 14:51:48 hawking Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild,v 1.2 2009/10/01 23:00:10 arfrever Exp $ -NEED_PYTHON=2.4 +EAPI="2" +SUPPORT_PYTHON_ABIS="1" inherit distutils eutils -KEYWORDS="~amd64 ~x86" - DESCRIPTION="Extensions for developing Python libraries and applications." -HOMEPAGE="http://buildutils.lesscode.org/" -SRC_URI="http://cheeseshop.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" +HOMEPAGE="http://buildutils.lesscode.org http://pypi.python.org/pypi/buildutils" +SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" + LICENSE="MIT" SLOT="0" +KEYWORDS="~amd64 ~x86" IUSE="doc" DEPEND="dev-python/setuptools doc? ( dev-python/pudge )" RDEPEND="" +RESTRICT_PYTHON_ABIS="3.*" -src_unpack() { - distutils_src_unpack +src_prepare() { + distutils_src_prepare # pudge command is disabled by default, enable it. - epatch "${FILESDIR}"/${P}-pudge_addcommand.patch + epatch "${FILESDIR}/${P}-pudge_addcommand.patch" } src_compile() { distutils_src_compile - if use doc ; then - einfo "Generating docs as requested..." - "${python}" setup.py pudge || die "generating docs failed" + if use doc; then + einfo "Generation of documentation" + "${python}" setup.py pudge || die "Generation of documentation failed" fi } |