summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-python/twill/ChangeLog5
-rw-r--r--dev-python/twill/twill-0.9.ebuild41
2 files changed, 4 insertions, 42 deletions
diff --git a/dev-python/twill/ChangeLog b/dev-python/twill/ChangeLog
index e2e194356bc1..eee294e8b12d 100644
--- a/dev-python/twill/ChangeLog
+++ b/dev-python/twill/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/twill
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/ChangeLog,v 1.18 2015/03/07 08:24:53 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twill/ChangeLog,v 1.19 2015/03/08 13:33:03 mrueg Exp $
+
+ 08 Mar 2015; Manuel Rüger <mrueg@gentoo.org> -twill-0.9.ebuild:
+ Remove old.
07 Mar 2015; Pacho Ramos <pacho@gentoo.org> twill-0.9-r1.ebuild:
ppc stable, bug 540290
diff --git a/dev-python/twill/twill-0.9.ebuild b/dev-python/twill/twill-0.9.ebuild
deleted file mode 100644
index 7e3653802a1e..000000000000
--- a/dev-python/twill/twill-0.9.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2014 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.9 2014/10/15 23:05:15 blueness Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-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"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc ~ppc64 x86"
-IUSE="doc"
-
-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
-}