diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-07-07 00:59:00 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-07-07 00:59:00 +0000 |
commit | 808949e12207dc460def844daa5e0dd63c36c08d (patch) | |
tree | 9c11687f601c5211937f76edf299b7426740078e /dev-python/envisagecore/envisagecore-3.1.1.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-808949e12207dc460def844daa5e0dd63c36c08d.tar.gz gentoo-2-808949e12207dc460def844daa5e0dd63c36c08d.tar.bz2 gentoo-2-808949e12207dc460def844daa5e0dd63c36c08d.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/envisagecore/envisagecore-3.1.1.ebuild')
-rw-r--r-- | dev-python/envisagecore/envisagecore-3.1.1.ebuild | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/dev-python/envisagecore/envisagecore-3.1.1.ebuild b/dev-python/envisagecore/envisagecore-3.1.1.ebuild deleted file mode 100644 index 222458ccb716..000000000000 --- a/dev-python/envisagecore/envisagecore-3.1.1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/envisagecore/envisagecore-3.1.1.ebuild,v 1.3 2010/03/20 14:59:54 bicatali Exp $ - -EAPI="2" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" - -inherit distutils - -MY_PN="EnvisageCore" -MY_P="${MY_PN}-${PV}" -DESCRIPTION="Enthought Tool Suite extensible application framework" -HOMEPAGE="http://code.enthought.com/projects/envisage/" -SRC_URI="http://www.enthought.com/repo/ETS/${MY_P}.tar.gz" - -IUSE="doc examples test" -SLOT="0" -KEYWORDS="~amd64 ~x86" -LICENSE="BSD" - -RDEPEND=">=dev-python/apptools-3.3.0 - >=dev-python/traits-3.2.0 - >=dev-python/enthoughtbase-3.0.3" -DEPEND="dev-python/setuptools - doc? ( dev-python/setupdocs ) - test? ( >=dev-python/nose-0.10.3 - >=dev-python/apptools-3.3.0 - >=dev-python/enthoughtbase-3.0.3 )" -RESTRICT_PYTHON_ABIS="3.*" - -S="${WORKDIR}/${MY_P}" - -PYTHON_MODNAME="enthought" - -src_prepare() { - sed -i \ - -e "s/self.run_command('build_docs')/pass/" \ - -e "s/setupdocs>=1.0//" \ - setup.py || die -} - -src_compile() { - distutils_src_compile - if use doc; then - "$(PYTHON -f)" setup.py build_docs --formats=html,pdf || die "Generation of documentation failed" - fi -} - -src_test() { - testing() { - PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" test - } - python_execute_function testing -} - -src_install() { - distutils_src_install - insinto /usr/share/doc/${PF} - if use doc; then - doins -r build/docs/html || die - doins build/docs/latex/*.pdf || die - fi - if use examples; then - doins -r examples || die - fi -} |