diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-18 13:07:51 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-18 13:07:51 +0000 |
commit | 09c0574ac3ade228f7c7d6462ac27e58f1c0c9c0 (patch) | |
tree | d6557e2e985f0d1442297f1b2f7d3e27aa312bff /dev-python/codetools | |
parent | Move flex to build-time dependencies only. (diff) | |
download | historical-09c0574ac3ade228f7c7d6462ac27e58f1c0c9c0.tar.gz historical-09c0574ac3ade228f7c7d6462ac27e58f1c0c9c0.tar.bz2 historical-09c0574ac3ade228f7c7d6462ac27e58f1c0c9c0.zip |
Delete older ebuilds.
Diffstat (limited to 'dev-python/codetools')
-rw-r--r-- | dev-python/codetools/codetools-3.1.0.ebuild | 64 | ||||
-rw-r--r-- | dev-python/codetools/codetools-3.1.1.ebuild | 67 |
2 files changed, 0 insertions, 131 deletions
diff --git a/dev-python/codetools/codetools-3.1.0.ebuild b/dev-python/codetools/codetools-3.1.0.ebuild deleted file mode 100644 index 651b7802ff88..000000000000 --- a/dev-python/codetools/codetools-3.1.0.ebuild +++ /dev/null @@ -1,64 +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/codetools/codetools-3.1.0.ebuild,v 1.2 2010/02/06 14:43:33 arfrever Exp $ - -EAPI="2" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" - -inherit distutils - -MY_PN="CodeTools" -MY_P="${MY_PN}-${PV}" -DESCRIPTION="Enthought Tool Suite code analysis and execution tools" -HOMEPAGE="http://code.enthought.com/projects/code_tools.php" -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/numpy-1.1 - >=dev-python/traits-3.2.0" -DEPEND="dev-python/setuptools - doc? ( dev-python/setupdocs ) - test? ( >=dev-python/nose-0.10.3 - >=dev-python/apptools-3.3.0 - >=dev-python/blockcanvas-3.1.0 )" -RESTRICT_PYTHON_ABIS="3.*" - -S="${WORKDIR}/${MY_P}" - -PYTHON_MODNAME="enthought" - -src_prepare() { - sed -e "s/self.run_command('build_docs')/pass/" -i 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() { - find "${S}" -name \*LICENSE.txt -delete - 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 -} diff --git a/dev-python/codetools/codetools-3.1.1.ebuild b/dev-python/codetools/codetools-3.1.1.ebuild deleted file mode 100644 index 68d4f6bccaa3..000000000000 --- a/dev-python/codetools/codetools-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/codetools/codetools-3.1.1.ebuild,v 1.2 2010/03/25 21:17:05 bicatali Exp $ - -EAPI="2" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" - -inherit distutils - -MY_PN="CodeTools" -MY_P="${MY_PN}-${PV}" -DESCRIPTION="Enthought Tool Suite code analysis and execution tools" -HOMEPAGE="http://code.enthought.com/projects/code_tools.php" -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/numpy - >=dev-python/traits-3.3.0" -DEPEND="dev-python/setuptools - doc? ( dev-python/setupdocs ) - test? ( dev-python/nose - >=dev-python/apptools-3.3.1 - >=dev-python/blockcanvas-3.1.1 )" -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() { - find "${S}" -name \*LICENSE.txt -delete - 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 -} |