diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2007-10-12 23:46:37 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2007-10-12 23:46:37 +0000 |
commit | 4e3cc057e3c31626d731d6b7296518b81f14d792 (patch) | |
tree | 1e48abe839a11373c5a0dde5bc5b819087f9968a /dev-python/cheetah/cheetah-2.0_rc8-r1.ebuild | |
parent | Live CVS ebuild for unicode-2 branch. (diff) | |
download | gentoo-2-4e3cc057e3c31626d731d6b7296518b81f14d792.tar.gz gentoo-2-4e3cc057e3c31626d731d6b7296518b81f14d792.tar.bz2 gentoo-2-4e3cc057e3c31626d731d6b7296518b81f14d792.zip |
Version bump, dropped old rc versions
(Portage version: 2.1.3.12)
Diffstat (limited to 'dev-python/cheetah/cheetah-2.0_rc8-r1.ebuild')
-rw-r--r-- | dev-python/cheetah/cheetah-2.0_rc8-r1.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-python/cheetah/cheetah-2.0_rc8-r1.ebuild b/dev-python/cheetah/cheetah-2.0_rc8-r1.ebuild deleted file mode 100644 index 4c67e2d2c980..000000000000 --- a/dev-python/cheetah/cheetah-2.0_rc8-r1.ebuild +++ /dev/null @@ -1,42 +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/cheetah/cheetah-2.0_rc8-r1.ebuild,v 1.1 2007/07/08 21:47:04 pythonhead Exp $ - -NEED_PYTHON=2.2 - -inherit distutils - -MY_PN=Cheetah -MY_P=${MY_PN}-${PV/_} - -DESCRIPTION="Python-powered template engine and code generator." -HOMEPAGE="http://www.cheetahtemplate.org/" -SRC_URI="mirror://sourceforge/cheetahtemplate/${MY_P}.tar.gz" -LICENSE="PSF-2.2" -IUSE="" -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" -SLOT="0" - -DEPEND="dev-python/setuptools" -RDEPEND="" - -S=${WORKDIR}/${MY_P} -PYTHON_MODNAME="Cheetah" -DOCS="README CHANGES TODO" -#Wacky setup.py, must have for Python 2.4: -export CHEETAH_USE_SETUPTOOLS='true' - -pkg_postinst() { - ewarn "This release requires re-compilation of all compiled templates!" -} - -src_test() { - #We need to do the sed here because files don't exist until after src_build - local p="$(ls -d ${S}/build/lib.* )" - local s="$(ls -d ${S}/build/scripts*)" - sed -i \ - -e "s:\(self\.go(\"\)\(${PN}\):\1PYTHONPATH=\'${p}\' \'${s}/\2\':" \ - src/Tests/CheetahWrapper.py || die "sed failed" - - PYTHONPATH="${p}" "${python}" src/Tests/Test.py || die "tests failed" -} |