summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-10-30 11:36:53 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-10-30 11:36:53 +0000
commit0018a606d2280bf1bf06aed5c35a0d059ef92a93 (patch)
treeeb6efa690b46782f128de60cbfeda008561391cd /dev-python/clientform
parentmodified versioning scheme to allow revisions of the same patchset. the patch... (diff)
downloadgentoo-2-0018a606d2280bf1bf06aed5c35a0d059ef92a93.tar.gz
gentoo-2-0018a606d2280bf1bf06aed5c35a0d059ef92a93.tar.bz2
gentoo-2-0018a606d2280bf1bf06aed5c35a0d059ef92a93.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/clientform')
-rw-r--r--dev-python/clientform/clientform-0.2.7.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-python/clientform/clientform-0.2.7.ebuild b/dev-python/clientform/clientform-0.2.7.ebuild
deleted file mode 100644
index 83eae6a382ae..000000000000
--- a/dev-python/clientform/clientform-0.2.7.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/clientform/clientform-0.2.7.ebuild,v 1.4 2007/09/22 14:13:25 nixnut Exp $
-
-inherit distutils
-
-MY_P="ClientForm-${PV}"
-DESCRIPTION="Parse, fill out, and return HTML forms on the client side"
-HOMEPAGE="http://wwwsearch.sourceforge.net/ClientForm/"
-SRC_URI="http://wwwsearch.sourceforge.net/ClientForm/src/${MY_P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc x86"
-IUSE="examples"
-
-S="${WORKDIR}/${MY_P}"
-DOCS="*.txt"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # use distutils instead of setuptools
- sed -i \
- -e 's/not hasattr(sys, "version_info")/1/' \
- setup.py || die "sed failed"
-}
-
-src_test() {
- "${python}" test.py || die "test.py failed"
-}
-
-src_install() {
- # remove to prevent distutils_src_install from installing it
- dohtml *.html
- rm README.html*
-
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-}