diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-02-15 14:24:58 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-02-15 14:24:58 +0000 |
commit | 4812fa6ee692f338e9332fcc39f2e6b62f019ae2 (patch) | |
tree | 65a38e509d0f0a47ae78859a1f7e485a51d5cc4e /dev-python/twill | |
parent | Bump to 0.3.12 (diff) | |
download | gentoo-2-4812fa6ee692f338e9332fcc39f2e6b62f019ae2.tar.gz gentoo-2-4812fa6ee692f338e9332fcc39f2e6b62f019ae2.tar.bz2 gentoo-2-4812fa6ee692f338e9332fcc39f2e6b62f019ae2.zip |
Bump to 0.9
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/twill')
-rw-r--r-- | dev-python/twill/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/twill/twill-0.9.ebuild | 34 |
2 files changed, 41 insertions, 2 deletions
diff --git a/dev-python/twill/ChangeLog b/dev-python/twill/ChangeLog index d801d32d5fd0..ef106cacb9f3 100644 --- a/dev-python/twill/ChangeLog +++ b/dev-python/twill/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/twill -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/ChangeLog,v 1.2 2008/01/23 15:58:26 beandog Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/ChangeLog,v 1.3 2009/02/15 14:24:58 patrick Exp $ + +*twill-0.9 (15 Feb 2009) + + 15 Feb 2009; Patrick Lauer <patrick@gentoo.org> +twill-0.9.ebuild: + Bump to 0.9 23 Jan 2008; Steve Dibb <beandog@gentoo.org> twill-0.9_beta1.ebuild: Add ~amd64, bug 202397 diff --git a/dev-python/twill/twill-0.9.ebuild b/dev-python/twill/twill-0.9.ebuild new file mode 100644 index 000000000000..e19bdcc125da --- /dev/null +++ b/dev-python/twill/twill-0.9.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 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 $ + +inherit distutils + +MY_PV="${PV/_beta/b}" +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" +IUSE="doc" + +S=${WORKDIR}/${MY_P} + +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." +} |