diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-20 20:10:11 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-20 20:10:11 +0000 |
commit | 4c1c74d8338f1bbfb7afd6f210d08333786cae55 (patch) | |
tree | 4cf163f819dca8e006545bdbbe9f00b1d0539def /dev-python/paste | |
parent | Version bump. (diff) | |
download | historical-4c1c74d8338f1bbfb7afd6f210d08333786cae55.tar.gz historical-4c1c74d8338f1bbfb7afd6f210d08333786cae55.tar.bz2 historical-4c1c74d8338f1bbfb7afd6f210d08333786cae55.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/paste')
-rw-r--r-- | dev-python/paste/paste-1.6.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-python/paste/paste-1.6.ebuild b/dev-python/paste/paste-1.6.ebuild deleted file mode 100644 index 01f6456b33f8..000000000000 --- a/dev-python/paste/paste-1.6.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/paste/paste-1.6.ebuild,v 1.2 2008/05/13 13:21:08 hawking Exp $ - -NEED_PYTHON=2.4 - -inherit distutils - -KEYWORDS="~amd64 ~x86" - -MY_PN=Paste -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Tools for using a Web Server Gateway Interface stack" -HOMEPAGE="http://pythonpaste.org" -SRC_URI="http://cheeseshop.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" -LICENSE="MIT" -SLOT="0" -IUSE="doc flup openid" - -RDEPEND="flup? ( dev-python/flup ) - openid? ( dev-python/python-openid )" -DEPEND="${RDEPEND} - dev-python/setuptools - doc? ( dev-python/pudge dev-python/buildutils )" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - distutils_src_unpack - - sed -i \ - -e '/highlighter/d' \ - setup.cfg || die "sed failed" -} - -src_compile() { - distutils_src_compile - if use doc ; then - einfo "Generating docs as requested..." - PYTHONPATH=. "${python}" setup.py pudge || die "generating docs failed" - fi -} - -src_install() { - distutils_src_install - use doc && dohtml -r docs/html/* -} - -# src_test() needs py.test but there's no release yet |