summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-10-22 08:47:51 +0200
committerJustin Lecher <jlec@gentoo.org>2015-10-22 10:31:52 +0200
commitadf3a32f8da1e3802e61e8e74221bcab88cda73b (patch)
tree6a84750f1a5c807442fb45b7f6604105be789512 /dev-python/pyfits/pyfits-2.4.0.ebuild
parentnet-firewall/xtables-addons: version bump to 2.9 (diff)
downloadgentoo-adf3a32f8da1e3802e61e8e74221bcab88cda73b.tar.gz
gentoo-adf3a32f8da1e3802e61e8e74221bcab88cda73b.tar.bz2
gentoo-adf3a32f8da1e3802e61e8e74221bcab88cda73b.zip
dev-python/pyfits: Drop old
Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/pyfits/pyfits-2.4.0.ebuild')
-rw-r--r--dev-python/pyfits/pyfits-2.4.0.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-python/pyfits/pyfits-2.4.0.ebuild b/dev-python/pyfits/pyfits-2.4.0.ebuild
deleted file mode 100644
index 93014a9d736e..000000000000
--- a/dev-python/pyfits/pyfits-2.4.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-*"
-
-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="BSD"
-
-RDEPEND="dev-python/numpy
- !<dev-python/astropy-0.3"
-DEPEND="${RDEPEND}"
-
-# current tests need data which are not in tar ball
-RESTRICT="test"
-
-src_test() {
- testing() {
- local t
- for t in lib/tests/testPyfits*.py; do
- PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib*)" "$(PYTHON)" "${t}" || die "${t} failed with Python ${PYTHON_ABI}"
- done
- }
- python_execute_function testing
-}
-
-src_install() {
- distutils_src_install
- local binary
- for binary in "${ED}"/usr/bin/*; do
- mv ${binary}{,-pyfits} || die
- done
-}