summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Delaney <idella4@gentoo.org>2013-05-14 13:06:37 +0000
committerIan Delaney <idella4@gentoo.org>2013-05-14 13:06:37 +0000
commit0866916efd938ef4da0978ad4002215e5b7b7efc (patch)
treebb554dd6844a645267b42a17916ca3c569dd3f07 /dev-python/encore
parentdrop old (diff)
downloadgentoo-2-0866916efd938ef4da0978ad4002215e5b7b7efc.tar.gz
gentoo-2-0866916efd938ef4da0978ad4002215e5b7b7efc.tar.bz2
gentoo-2-0866916efd938ef4da0978ad4002215e5b7b7efc.zip
drop old
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python/encore')
-rw-r--r--dev-python/encore/ChangeLog5
-rw-r--r--dev-python/encore/encore-0.2.ebuild45
2 files changed, 4 insertions, 46 deletions
diff --git a/dev-python/encore/ChangeLog b/dev-python/encore/ChangeLog
index 2d56ffd98fa3..43d949712dd7 100644
--- a/dev-python/encore/ChangeLog
+++ b/dev-python/encore/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/encore
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/encore/ChangeLog,v 1.3 2013/04/05 18:17:20 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/encore/ChangeLog,v 1.4 2013/05/14 13:06:37 idella4 Exp $
+
+ 14 May 2013; Ian Delaney <idella4@gentoo.org> -encore-0.2.ebuild:
+ drop old
05 Apr 2013; Mike Gilbert <floppym@gentoo.org> encore-0.3.ebuild:
Cleanup ebuild. Add missing deps for setuptools and nose.
diff --git a/dev-python/encore/encore-0.2.ebuild b/dev-python/encore/encore-0.2.ebuild
deleted file mode 100644
index 55f2a139acb2..000000000000
--- a/dev-python/encore/encore-0.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/encore/encore-0.2.ebuild,v 1.1 2012/12/06 18:24:08 bicatali Exp $
-
-EAPI=4
-
-PYTHON_DEPEND="2:2.6"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
-PYTHON_TESTS_RESTRICTED_ABIS="2.6"
-DISTUTILS_SRC_TEST="nosetests"
-
-inherit distutils
-
-DESCRIPTION="Enthought Tool Suite: collection of core-level utility modules"
-HOMEPAGE="https://github.com/enthought/encore"
-SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples"
-
-RDEPEND=""
-DEPEND="doc? ( dev-python/sphinx )"
-
-DOCS="dataflow.txt"
-
-src_compile() {
- distutils_src_compile
- use doc && PYTHONPATH="$(ls -1d ${S}/build*/lib | head -n1)" \
- emake -C docs html
-}
-
-src_install() {
- find -name "*LICENSE*.txt" -delete
- distutils_src_install
-
- use doc && dohtml -r docs/build/html/*
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-}