diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-12-30 22:18:29 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-12-30 22:18:29 +0000 |
commit | 631a5d939b402641a2d0c1b9ffee01a3b223ab9c (patch) | |
tree | 4e809a42509c63265f5ce68ddb2351c11de64393 /dev-python/twill | |
parent | Fix dependencies. Set SUPPORT_PYTHON_ABIS. Add "examples" USE flag. (diff) | |
download | gentoo-2-631a5d939b402641a2d0c1b9ffee01a3b223ab9c.tar.gz gentoo-2-631a5d939b402641a2d0c1b9ffee01a3b223ab9c.tar.bz2 gentoo-2-631a5d939b402641a2d0c1b9ffee01a3b223ab9c.zip |
Fix dependencies. Set SUPPORT_PYTHON_ABIS.
(Portage version: 2.2.0_alpha10_p22/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/twill')
-rw-r--r-- | dev-python/twill/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/twill/twill-0.9.ebuild | 29 |
2 files changed, 24 insertions, 13 deletions
diff --git a/dev-python/twill/ChangeLog b/dev-python/twill/ChangeLog index b3cd9ccec03a..fad2646d0b7d 100644 --- a/dev-python/twill/ChangeLog +++ b/dev-python/twill/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/twill -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/ChangeLog,v 1.4 2009/09/04 15:29:43 patrick Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/ChangeLog,v 1.5 2010/12/30 22:18:29 arfrever Exp $ + + 30 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + twill-0.9.ebuild: + Fix dependencies. Set SUPPORT_PYTHON_ABIS. 04 Sep 2009; Patrick Lauer <patrick@gentoo.org> -twill-0.9_beta1.ebuild: Remove old diff --git a/dev-python/twill/twill-0.9.ebuild b/dev-python/twill/twill-0.9.ebuild index e19bdcc125da..bd931b8b7967 100644 --- a/dev-python/twill/twill-0.9.ebuild +++ b/dev-python/twill/twill-0.9.ebuild @@ -1,6 +1,11 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/twill-0.9.ebuild,v 1.1 2009/02/15 14:24:58 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/twill-0.9.ebuild,v 1.2 2010/12/30 22:18:29 arfrever Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" inherit distutils @@ -10,25 +15,27 @@ MY_P="${PN}-${MY_PV}" DESCRIPTION="Simple scripting language for web browsing with Python API." HOMEPAGE="http://twill.idyll.org/" SRC_URI="http://darcs.idyll.org/~t/projects/${MY_P}.tar.gz" + LICENSE="MIT" -KEYWORDS="~amd64 ~x86" SLOT="0" +KEYWORDS="~amd64 ~x86" IUSE="doc" -S=${WORKDIR}/${MY_P} +S="${WORKDIR}/${MY_P}" + +src_test() { + elog "Testing disabled due to sandbox problems opening" + elog "a port on a server. Unpack the ebuild and run the" + elog "tests manually with 'nosetests' (dev-python/nose)" + elog "in the unpacked directory." +} src_install() { distutils_src_install + if use doc; then dodir /usr/share/doc/${PF}/examples cp -R doc/* "${D}"/usr/share/doc/${PF}/ cp examples/* "${D}"/usr/share/doc/${PF}/examples/ fi } - -src_test() { - elog "Testing disabled due to sandbox prolems opening" - elog "a port on a server. Unpack the ebuild and run the" - elog "tests manually with 'nosetests' (dev-python/nose)" - elog "in the unpacked directory." -} |