blob: 2c38d479c2a931bc7080efbb34bb62df6dc569c4 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/turbojson/turbojson-1.1.4.ebuild,v 1.1 2009/04/01 11:47:19 patrick Exp $
NEED_PYTHON=2.4
inherit distutils
KEYWORDS=""
MY_PN=TurboJson
MY_P=${MY_PN}-${PV}
DESCRIPTION="TurboGears JSON file format support plugin"
HOMEPAGE="http://www.turbogears.org/docs/plugins/template.html"
#SRC_URI="http://files.turbogears.org/eggs/${MY_P}.tar.gz"
SRC_URI="http://pypi.python.org/packages/source/T/${MY_PN}/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
IUSE="test"
RDEPEND="dev-python/ruledispatch
dev-python/simplejson
>=dev-python/prioritized-methods-0.2"
DEPEND="${RDEPEND}
>=dev-python/setuptools-0.6_rc9
test? ( dev-python/nose )"
S=${WORKDIR}/${MY_P}
src_test() {
PYTHONPATH=. "${python}" setup.py test || die "tests failed"
}
|