blob: e6f26f3cb9a286010d2725b42cb542142c7f7e50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/atpy/atpy-0.9.5.1.ebuild,v 1.2 2011/05/05 16:31:08 arfrever Exp $
EAPI="2"
PYTHON_DEPEND="2:2.6"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.[45] 3.* *-jython"
inherit distutils
MYPN=ATpy
MYP="${MYPN}-${PV}"
DESCRIPTION="Astronomical tables support for Python"
HOMEPAGE="http://atpy.github.com/ http://pypi.python.org/pypi/ATpy"
SRC_URI="https://github.com/downloads/${PN}/${PN}/${MYP}.tar.gz"
RDEPEND="dev-python/numpy
dev-python/asciitable
fits? ( dev-python/pyfits )
hdf5? ( dev-python/h5py )
mysql? ( dev-python/mysql-python )
postgres? ( dev-db/pygresql )
sqlite? ( dev-python/pysqlite )
votable? ( dev-python/vo )"
DEPEND=">=dev-python/numpy-1.3"
IUSE="+fits hdf5 mysql postgres sqlite +votable"
SLOT="0"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-3"
S="${WORKDIR}/${MYP}"
src_prepare() {
distutils_src_prepare
# Disable failing MySQL tests.
sed -e "s/import MySQLdb/raise ImportError/" -i test/unittests.py || die "sed failed"
}
src_test() {
testing() {
PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/unittests.py
}
python_execute_function testing
}
|