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
commitfd309953fe15cfdaa0e13fef8392ac7a2f625c8d (patch)
tree5e5f19a64bfdaa0efdc3b95fb7ff628e3f8ade02 /dev-python/traits
parentDelete older ebuild. (diff)
downloadgentoo-2-fd309953fe15cfdaa0e13fef8392ac7a2f625c8d.tar.gz
gentoo-2-fd309953fe15cfdaa0e13fef8392ac7a2f625c8d.tar.bz2
gentoo-2-fd309953fe15cfdaa0e13fef8392ac7a2f625c8d.zip
Delete older ebuild.
(Portage version: 2.2.0_alpha19_p6/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/traits')
-rw-r--r--dev-python/traits/ChangeLog6
-rw-r--r--dev-python/traits/traits-3.4.0.ebuild66
2 files changed, 5 insertions, 67 deletions
diff --git a/dev-python/traits/ChangeLog b/dev-python/traits/ChangeLog
index ffeb4114c349..8f65a585448e 100644
--- a/dev-python/traits/ChangeLog
+++ b/dev-python/traits/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/traits
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/traits/ChangeLog,v 1.18 2011/01/27 10:01:25 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/traits/ChangeLog,v 1.19 2011/01/27 15:04:40 arfrever Exp $
+
+ 27 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ -traits-3.4.0.ebuild:
+ Delete.
27 Jan 2011; Markos Chandras <hwoarang@gentoo.org> traits-3.5.0.ebuild:
Stable on amd64 wrt bug #347107
diff --git a/dev-python/traits/traits-3.4.0.ebuild b/dev-python/traits/traits-3.4.0.ebuild
deleted file mode 100644
index b14aeedc9f0e..000000000000
--- a/dev-python/traits/traits-3.4.0.ebuild
+++ /dev/null
@@ -1,66 +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/traits/traits-3.4.0.ebuild,v 1.7 2010/10/14 15:09:03 ranger Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-DISTUTILS_SRC_TEST="setup.py"
-
-inherit distutils flag-o-matic
-
-MY_PN="Traits"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Enthought Tool Suite explicitly typed attributes for Python"
-HOMEPAGE="http://code.enthought.com/projects/traits http://pypi.python.org/pypi/Traits"
-SRC_URI="http://www.enthought.com/repo/ETS/${MY_P}.tar.gz"
-
-IUSE="doc examples test"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-LICENSE="BSD"
-
-RDEPEND=">=dev-python/numpy-1.1
- >=dev-python/enthoughtbase-3.0.5"
-DEPEND="dev-python/setuptools
- doc? ( dev-python/setupdocs )
- test? ( >=dev-python/nose-0.10.3
- >=dev-python/numpy-1.1 )"
-
-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() {
- # Python 2 breaks strict aliasing. Don't use this flag with Python 3.
- append-flags -fno-strict-aliasing
-
- distutils_src_compile
-
- if use doc; then
- "$(PYTHON -f)" setup.py build_docs --formats=html || 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 docs/*.pdf || die
- fi
- if use examples; then
- doins -r examples || die
- fi
-}