summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pyfits/pyfits-2.1.1.ebuild')
-rw-r--r--dev-python/pyfits/pyfits-2.1.1.ebuild35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-python/pyfits/pyfits-2.1.1.ebuild b/dev-python/pyfits/pyfits-2.1.1.ebuild
deleted file mode 100644
index b5efa4994668..000000000000
--- a/dev-python/pyfits/pyfits-2.1.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfits/pyfits-2.1.1.ebuild,v 1.3 2009/10/15 13:32:48 maekke Exp $
-
-EAPI="2"
-
-NEED_PYTHON="2.3"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-DESCRIPTION="Provides an interface to FITS formatted files under python"
-SRC_URI="http://www.stsci.edu/resources/software_hardware/${PN}/${P}.tar.gz"
-HOMEPAGE="http://www.stsci.edu/resources/software_hardware/pyfits"
-
-IUSE=""
-SLOT="0"
-KEYWORDS="amd64 x86 ~x86-fbsd"
-LICENSE="AURA"
-
-RDEPEND="dev-python/numpy"
-DEPEND="${RDEPEND}"
-RESTRICT_PYTHON_ABIS="3.*"
-
-src_test() {
- cd "${S}/test"
-
- testing() {
- local test
- for test in test*.py; do
- PYTHONPATH="$(ls -d ../build-${PYTHON_ABI}/lib*)" "$(PYTHON)" "${test}" || die "test ${test} failed"
- done
- }
- python_execute_function testing
-}