blob: 3a2cd4ed18057b5f7bf196b148dd984e71a8c02f (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-1.6.ebuild,v 1.1 2007/03/05 08:12:42 dev-zero Exp $
NEED_PYTHON=2.3
inherit distutils
KEYWORDS="~amd64 ~x86"
DESCRIPTION="A simple, fast, complete, correct and extensible JSON encoder and decoder."
HOMEPAGE="http://undefined.org/python/#simplejson"
SRC_URI="http://cheeseshop.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
IUSE="test"
DEPEND="test? ( dev-python/nose )
dev-python/setuptools"
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e '/^ez_setup/d' -e '/^import ez_setup/d' \
setup.py || die "sed failed"
}
src_install() {
distutils_src_install
dohtml -r docs/*
}
src_test() {
PYTHONPATH=. "${python}" setup.py test || die "test failed"
}
|