summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-01-27 15:04:40 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-01-27 15:04:40 +0000
commit722d7375f46c1fb61298c930ac700a95da5900a0 (patch)
tree348fbaf8e534aa95ba941cf967652a6cb0a6f903 /dev-python/enthoughtbase
parentIntroduce "offlinehelp" use flag, if not set the LibreOffice Wiki will be use... (diff)
downloadhistorical-722d7375f46c1fb61298c930ac700a95da5900a0.tar.gz
historical-722d7375f46c1fb61298c930ac700a95da5900a0.tar.bz2
historical-722d7375f46c1fb61298c930ac700a95da5900a0.zip
Delete older ebuild.
Package-Manager: portage-2.2.0_alpha19_p6/cvs/Linux x86_64
Diffstat (limited to 'dev-python/enthoughtbase')
-rw-r--r--dev-python/enthoughtbase/ChangeLog6
-rw-r--r--dev-python/enthoughtbase/enthoughtbase-3.0.5.ebuild70
2 files changed, 5 insertions, 71 deletions
diff --git a/dev-python/enthoughtbase/ChangeLog b/dev-python/enthoughtbase/ChangeLog
index 1c9eb42d9b4c..f15bcfa44f2d 100644
--- a/dev-python/enthoughtbase/ChangeLog
+++ b/dev-python/enthoughtbase/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/enthoughtbase
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/enthoughtbase/ChangeLog,v 1.22 2011/01/27 10:00:36 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/enthoughtbase/ChangeLog,v 1.23 2011/01/27 15:01:07 arfrever Exp $
+
+ 27 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ -enthoughtbase-3.0.5.ebuild:
+ Delete.
27 Jan 2011; Markos Chandras <hwoarang@gentoo.org>
enthoughtbase-3.0.6.ebuild:
diff --git a/dev-python/enthoughtbase/enthoughtbase-3.0.5.ebuild b/dev-python/enthoughtbase/enthoughtbase-3.0.5.ebuild
deleted file mode 100644
index d267d1646fb8..000000000000
--- a/dev-python/enthoughtbase/enthoughtbase-3.0.5.ebuild
+++ /dev/null
@@ -1,70 +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/enthoughtbase/enthoughtbase-3.0.5.ebuild,v 1.6 2010/10/14 15:07:58 ranger Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-DISTUTILS_SRC_TEST="setup.py"
-
-inherit distutils
-
-MY_PN="EnthoughtBase"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Core packages for the Enthought Tool Suite"
-HOMEPAGE="http://code.enthought.com/projects/enthought_base.php http://pypi.python.org/pypi/EnthoughtBase"
-SRC_URI="http://www.enthought.com/repo/ETS/${MY_P}.tar.gz"
-
-LICENSE="BSD LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc examples"
-
-DEPEND="dev-python/setuptools
- doc? ( dev-python/setupdocs )"
-# tests would require circular deps
-# test? ( >=dev-python/nose-0.10.3
-# dev-python/traits
-# dev-python/etsdevtools )"
-RDEPEND=""
-
-RESTRICT="test"
-
-S="${WORKDIR}/${MY_P}"
-
-PYTHON_MODNAME="enthought"
-
-src_prepare() {
- distutils_src_prepare
-
- sed -i \
- -e "s/self.run_command('build_docs')/pass/" \
- -e '/setupdocs/d' \
- setup.py || die
-}
-
-src_compile() {
- distutils_src_compile
-
- if use doc; then
- einfo "Generation of documentation"
- export VARTEXFONTS="${T}/fonts"
- "$(PYTHON -f)" setup.py build_docs --formats=html,pdf || die "Generation of documentation failed"
- fi
-}
-
-src_install() {
- find "${S}" -name \*LICENSE.txt -delete
- distutils_src_install
- dodoc docs/*.txt
- 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
-}