diff options
author | Jesus Rivero <neurogeek@gentoo.org> | 2008-10-15 21:21:16 +0000 |
---|---|---|
committer | Jesus Rivero <neurogeek@gentoo.org> | 2008-10-15 21:21:16 +0000 |
commit | a0c08490a4372e3a257cf806e86ef9d19e9d7a10 (patch) | |
tree | 2f5aacca21cb7ed61deb11f93fc41980174baf07 /dev-python/cheetah | |
parent | version bump per 237849 (diff) | |
download | historical-a0c08490a4372e3a257cf806e86ef9d19e9d7a10.tar.gz historical-a0c08490a4372e3a257cf806e86ef9d19e9d7a10.tar.bz2 historical-a0c08490a4372e3a257cf806e86ef9d19e9d7a10.zip |
Removed older versions
Package-Manager: portage-2.2_rc12/cvs/Linux 2.6.18-gentoo-r3 i686
Diffstat (limited to 'dev-python/cheetah')
-rw-r--r-- | dev-python/cheetah/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/cheetah/cheetah-1.0.ebuild | 25 | ||||
-rw-r--r-- | dev-python/cheetah/cheetah-2.0.ebuild | 42 |
3 files changed, 5 insertions, 68 deletions
diff --git a/dev-python/cheetah/ChangeLog b/dev-python/cheetah/ChangeLog index b88be2fa61f7..be577e3a7096 100644 --- a/dev-python/cheetah/ChangeLog +++ b/dev-python/cheetah/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/cheetah # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cheetah/ChangeLog,v 1.43 2008/10/10 09:43:27 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/cheetah/ChangeLog,v 1.44 2008/10/15 21:21:16 neurogeek Exp $ + + 15 Oct 2008; Jesus Rivero <neurogeek@gentoo.org> -cheetah-1.0.ebuild, + -cheetah-2.0.ebuild: + Removed older versions 10 Oct 2008; Raúl Porcel <armin76@gentoo.org> cheetah-2.0.1.ebuild: alpha/ia64/sparc stable wrt #239581 diff --git a/dev-python/cheetah/cheetah-1.0.ebuild b/dev-python/cheetah/cheetah-1.0.ebuild deleted file mode 100644 index 6c8c5c3a7999..000000000000 --- a/dev-python/cheetah/cheetah-1.0.ebuild +++ /dev/null @@ -1,25 +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-1.0.ebuild,v 1.2 2007/07/19 18:06:40 grobian Exp $ - -inherit distutils - -MY_P=${P/ch/Ch} - -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-lang/python-2.2" -S=${WORKDIR}/${MY_P} - -PYTHON_MODNAME="Cheetah" -DOCS="README CHANGES TODO" - -pkg_postinst() { - ewarn "If you use compiled templates, they must be re-compiled if" - ewarn "uou are upgrading from ${PN} <=0.9.18 to >=1.0" -} diff --git a/dev-python/cheetah/cheetah-2.0.ebuild b/dev-python/cheetah/cheetah-2.0.ebuild deleted file mode 100644 index 38fbe98edb20..000000000000 --- a/dev-python/cheetah/cheetah-2.0.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.ebuild,v 1.1 2007/10/12 23:46:37 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" -} |