Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/simplejson: simplejson-3.8.0.ebuild ChangeLog
Date: Thu, 30 Jul 2015 18:32:51
Message-Id: 20150730183211.E6C6D10F@oystercatcher.gentoo.org
1 jlec 15/07/30 18:32:11
2
3 Modified: ChangeLog
4 Added: simplejson-3.8.0.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
9
10 Revision Changes Path
11 1.158 dev-python/simplejson/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/ChangeLog?rev=1.158&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/ChangeLog?rev=1.158&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/ChangeLog?r1=1.157&r2=1.158
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v
20 retrieving revision 1.157
21 retrieving revision 1.158
22 diff -u -r1.157 -r1.158
23 --- ChangeLog 23 Jul 2015 21:01:04 -0000 1.157
24 +++ ChangeLog 30 Jul 2015 18:32:11 -0000 1.158
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/simplejson
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.157 2015/07/23 21:01:04 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.158 2015/07/30 18:32:11 jlec Exp $
30 +
31 +*simplejson-3.8.0 (30 Jul 2015)
32 +
33 + 30 Jul 2015; Justin Lecher <jlec@g.o> +simplejson-3.8.0.ebuild:
34 + Version Bump
35
36 23 Jul 2015; Pacho Ramos <pacho@g.o> simplejson-3.7.2.ebuild:
37 ppc stable wrt bug #552062
38
39
40
41 1.1 dev-python/simplejson/simplejson-3.8.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/simplejson-3.8.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/simplejson-3.8.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: simplejson-3.8.0.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-3.8.0.ebuild,v 1.1 2015/07/30 18:32:11 jlec Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 )
55
56 inherit distutils-r1 flag-o-matic
57
58 DESCRIPTION="Simple, fast, extensible JSON encoder/decoder for Python"
59 HOMEPAGE="http://undefined.org/python/#simplejson http://pypi.python.org/pypi/simplejson"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="|| ( MIT AFL-2.1 )"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
65
66 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
67
68 DOCS=( README.rst CHANGES.txt )
69
70 python_compile() {
71 if ! python_is_python3; then
72 local CFLAGS=${CFLAGS}
73 append-cflags -fno-strict-aliasing
74 fi
75 distutils-r1_python_compile
76 }
77
78 python_test() {
79 esetup.py test
80 }