summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-12-20 01:40:09 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-12-20 01:40:09 +0000
commitd22fa862f26090bf03393b5ddc225a93049e39ac (patch)
treeb25dd980e95e42a1bba519d7a7c3406e45e66c1b /dev-python/cheetah
parentVersion bump. (diff)
downloadhistorical-d22fa862f26090bf03393b5ddc225a93049e39ac.tar.gz
historical-d22fa862f26090bf03393b5ddc225a93049e39ac.tar.bz2
historical-d22fa862f26090bf03393b5ddc225a93049e39ac.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/cheetah')
-rw-r--r--dev-python/cheetah/cheetah-2.2.2.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-python/cheetah/cheetah-2.2.2.ebuild b/dev-python/cheetah/cheetah-2.2.2.ebuild
deleted file mode 100644
index 9bfbafa8c533..000000000000
--- a/dev-python/cheetah/cheetah-2.2.2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/cheetah/cheetah-2.2.2.ebuild,v 1.8 2009/11/24 16:08:41 armin76 Exp $
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-MY_PN="Cheetah"
-MY_P="${MY_PN}-${PV/_}"
-
-DESCRIPTION="Python-powered template engine and code generator."
-HOMEPAGE="http://www.cheetahtemplate.org/ http://rtyler.github.com/cheetah/"
-SRC_URI="http://pypi.python.org/packages/source/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="PSF-2.2"
-IUSE=""
-KEYWORDS="alpha ~amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-SLOT="0"
-
-RDEPEND="dev-python/markdown"
-DEPEND="${RDEPEND}
- dev-python/setuptools"
-RESTRICT_PYTHON_ABIS="3.*"
-
-S="${WORKDIR}/${MY_P}"
-
-PYTHON_MODNAME="Cheetah"
-DOCS="CHANGES README TODO"
-
-src_test() {
- # Disable broken tests.
- sed \
- -e "/Unicode/d" \
- -e "s/if not sys.platform.startswith('java'):/if False:/" \
- -i cheetah/Tests/Test.py || die "sed failed"
-
- testing() {
- PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" cheetah/Tests/Test.py
- }
- python_execute_function testing
-}
-
-src_install() {
- [[ -z ${ED} ]] && local ED=${D}
- distutils_src_install
- rm -fr "${ED}"usr/lib*/python*/site-packages/Cheetah/Tests
-}