Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/simplejson: ChangeLog simplejson-2.1.2.ebuild
Date: Mon, 01 Nov 2010 16:44:37
Message-Id: 20101101164430.1F87320051@flycatcher.gentoo.org
1 arfrever 10/11/01 16:44:30
2
3 Modified: ChangeLog
4 Added: simplejson-2.1.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.29 dev-python/simplejson/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/ChangeLog?rev=1.29&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/ChangeLog?rev=1.29&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/ChangeLog?r1=1.28&r2=1.29
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v
20 retrieving revision 1.28
21 retrieving revision 1.29
22 diff -u -r1.28 -r1.29
23 --- ChangeLog 4 Jun 2010 10:16:58 -0000 1.28
24 +++ ChangeLog 1 Nov 2010 16:44:29 -0000 1.29
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/simplejson
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.28 2010/06/04 10:16:58 phajdan.jr Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.29 2010/11/01 16:44:29 arfrever Exp $
30 +
31 +*simplejson-2.1.2 (01 Nov 2010)
32 +
33 + 01 Nov 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +simplejson-2.1.2.ebuild:
35 + Version bump.
36
37 04 Jun 2010; Pawel Hajdan jr <phajdan.jr@g.o>
38 simplejson-2.1.1.ebuild:
39
40
41
42 1.1 dev-python/simplejson/simplejson-2.1.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/simplejson-2.1.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/simplejson-2.1.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: simplejson-2.1.2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-2.1.2.ebuild,v 1.1 2010/11/01 16:44:29 arfrever Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="3.*"
57
58 inherit distutils
59
60 DESCRIPTION="Simple, fast, extensible JSON encoder/decoder for Python"
61 HOMEPAGE="http://undefined.org/python/#simplejson http://pypi.python.org/pypi/simplejson"
62 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63
64 LICENSE="MIT"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
67 IUSE="doc"
68
69 DEPEND="dev-python/setuptools"
70 RDEPEND=""
71
72 PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
73
74 src_test() {
75 testing() {
76 ln -fs ../$(ls -d build-${PYTHON_ABI}/lib*)/simplejson/_speedups.so simplejson/_speedups.so
77 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" simplejson/tests/__init__.py
78 }
79 python_execute_function testing
80 }
81
82 src_install() {
83 distutils_src_install
84
85 if use doc; then
86 dohtml -r docs/* || die "dohtml failed"
87 fi
88 }