Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/jsonpatch: jsonpatch-1.8.ebuild ChangeLog jsonpatch-0.10.ebuild jsonpatch-0.12.ebuild jsonpatch-1.5.ebuild
Date: Sat, 04 Oct 2014 09:18:58
Message-Id: 20141004091855.347F86EC3@oystercatcher.gentoo.org
1 idella4 14/10/04 09:18:55
2
3 Modified: ChangeLog
4 Added: jsonpatch-1.8.ebuild
5 Removed: jsonpatch-0.10.ebuild jsonpatch-0.12.ebuild
6 jsonpatch-1.5.ebuild
7 Log:
8 remove some old
9
10 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
11
12 Revision Changes Path
13 1.7 dev-python/jsonpatch/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jsonpatch/ChangeLog?rev=1.7&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jsonpatch/ChangeLog?rev=1.7&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jsonpatch/ChangeLog?r1=1.6&r2=1.7
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-python/jsonpatch/ChangeLog,v
22 retrieving revision 1.6
23 retrieving revision 1.7
24 diff -u -r1.6 -r1.7
25 --- ChangeLog 14 Jul 2014 07:44:03 -0000 1.6
26 +++ ChangeLog 4 Oct 2014 09:18:55 -0000 1.7
27 @@ -1,6 +1,12 @@
28 # ChangeLog for dev-python/jsonpatch
29 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonpatch/ChangeLog,v 1.6 2014/07/14 07:44:03 patrick Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonpatch/ChangeLog,v 1.7 2014/10/04 09:18:55 idella4 Exp $
32 +
33 +*jsonpatch-1.8 (04 Oct 2014)
34 +
35 + 04 Oct 2014; Ian Delaney <idella4@g.o> +jsonpatch-1.8.ebuild,
36 + -jsonpatch-0.10.ebuild, -jsonpatch-0.12.ebuild, -jsonpatch-1.5.ebuild:
37 + remove some old
38
39 *jsonpatch-1.7 (14 Jul 2014)
40
41
42
43
44 1.1 dev-python/jsonpatch/jsonpatch-1.8.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jsonpatch/jsonpatch-1.8.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/jsonpatch/jsonpatch-1.8.ebuild?rev=1.1&content-type=text/plain
48
49 Index: jsonpatch-1.8.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-python/jsonpatch/jsonpatch-1.8.ebuild,v 1.1 2014/10/04 09:18:55 idella4 Exp $
54
55 EAPI=5
56 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
57
58 inherit distutils-r1
59
60 DESCRIPTION="Apply JSON-Patches according to
61 http://tools.ietf.org/html/draft-pbryan-json-patch-04"
62 HOMEPAGE="https://github.com/stefankoegl/python-json-patch"
63 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
68 IUSE=""
69
70 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
71 RDEPEND=">=dev-python/jsonpointer-1.3[${PYTHON_USEDEP}]"
72
73 python_test() {
74 "${PYTHON}" tests.py || die "Tests fail with ${EPYTHON}"
75 "${PYTHON}" ext_tests.py || die "Tests fail with ${EPYTHON}"
76 }