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.7.3.ebuild ChangeLog
Date: Mon, 01 Jun 2015 10:07:55
Message-Id: 20150601100750.D5744A1B@oystercatcher.gentoo.org
1 jlec 15/06/01 10:07:50
2
3 Modified: ChangeLog
4 Added: simplejson-3.7.3.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.151 dev-python/simplejson/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/ChangeLog?rev=1.151&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/ChangeLog?rev=1.151&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/ChangeLog?r1=1.150&r2=1.151
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v
20 retrieving revision 1.150
21 retrieving revision 1.151
22 diff -u -r1.150 -r1.151
23 --- ChangeLog 23 May 2015 08:17:43 -0000 1.150
24 +++ ChangeLog 1 Jun 2015 10:07:50 -0000 1.151
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.150 2015/05/23 08:17:43 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.151 2015/06/01 10:07:50 jlec Exp $
30 +
31 +*simplejson-3.7.3 (01 Jun 2015)
32 +
33 + 01 Jun 2015; Justin Lecher <jlec@g.o> +simplejson-3.7.3.ebuild:
34 + Version Bump
35
36 *simplejson-3.7.2 (23 May 2015)
37
38
39
40
41 1.1 dev-python/simplejson/simplejson-3.7.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/simplejson-3.7.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simplejson/simplejson-3.7.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: simplejson-3.7.3.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.7.3.ebuild,v 1.1 2015/06/01 10:07:50 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 }