diff options
author | 2010-06-05 20:08:09 +0000 | |
---|---|---|
committer | 2010-06-05 20:08:09 +0000 | |
commit | 2a77008bb99dd2f9e35e0d49a95a97b43c2c3641 (patch) | |
tree | 855b887fb7e156321892b86e2e28f89f3f1669ab /dev-python/routes | |
parent | Add project URI patch, bug 319625 (diff) | |
download | historical-2a77008bb99dd2f9e35e0d49a95a97b43c2c3641.tar.gz historical-2a77008bb99dd2f9e35e0d49a95a97b43c2c3641.tar.bz2 historical-2a77008bb99dd2f9e35e0d49a95a97b43c2c3641.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/routes')
-rw-r--r-- | dev-python/routes/routes-1.10.3.ebuild | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-python/routes/routes-1.10.3.ebuild b/dev-python/routes/routes-1.10.3.ebuild deleted file mode 100644 index 913692ce0f1a..000000000000 --- a/dev-python/routes/routes-1.10.3.ebuild +++ /dev/null @@ -1,37 +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/routes/routes-1.10.3.ebuild,v 1.1 2009/04/26 09:49:27 patrick Exp $ - -NEED_PYTHON=2.4 - -inherit distutils - -KEYWORDS="~amd64 ~x86" - -MY_PN=Routes -MY_P=${MY_PN}-${PV} - -DESCRIPTION="A Python re-implementation of the Rails routes system for mapping URL's to Controllers/Actions." -HOMEPAGE="http://routes.groovie.org" -SRC_URI="http://cheeseshop.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" -LICENSE="BSD" -SLOT="0" -IUSE="doc" - -DEPEND="doc? ( dev-python/buildutils dev-python/pudge ) - dev-python/setuptools" -RDEPEND="" - -S="${WORKDIR}/${MY_P}" - -src_compile() { - distutils_src_compile - if use doc ; then - PYTHONPATH=. "${python}" setup.py pudge || die "generating docs failed" - fi -} - -src_install() { - distutils_src_install - use doc && dohtml -r docs/html/* -} |