blob: e3e1b9c2c15a4a73559f9bbf4deb1f6df0454394 (
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
51
52
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/storm/storm-0.9.ebuild,v 1.1 2007/07/10 14:41:39 dev-zero Exp $
NEED_PYTHON=2.4
inherit distutils
DESCRIPTION="An object-relational mapper for Python developed at Canonical."
HOMEPAGE="https://storm.canonical.com/FrontPage"
SRC_URI="https://launchpad.net/storm/trunk/${PV}/+download/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE="mysql postgres sqlite test"
RDEPEND="mysql? ( dev-python/mysql-python )
postgres? ( =dev-python/psycopg-2* )
sqlite? ( || ( dev-python/pysqlite >=dev-lang/python-2.5 ) )"
DEPEND="${DEPEND}
test? ( || ( dev-python/pysqlite >=dev-lang/python-2.5 ) )"
DOCS="tests/tutorial.txt"
src_unpack() {
distutils_src_unpack
cat > setup.py <<-EOF
from distutils.core import setup
setup(name = "storm", version = "${PV}",
packages = ["storm","storm.databases"])
EOF
}
src_test() {
if use postgres ; then
elog "To run the PostgreSQL-tests, you need:"
elog " - a running postgresql-server"
elog " - an already existing database 'db'"
elog " - a user 'user' with full permissions on that database"
elog " - and an environment variable STORM_POSTGRES_URI=\"postgres://user:password@host:1234/db\""
fi
if use mysql ; then
elog "To run the MySQL-tests, you need:"
elog " - a running mysql-server"
elog " - an already existing database 'db'"
elog " - a user 'user' with full permissions on that database"
elog " - and an environment variable STORM_MYSQL_URI=\"mysql://user:password@host:1234/db\""
fi
PYTHONPATH=. "${python}" test || die "tests failed"
}
|