Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/warlock/
Date: Wed, 10 Apr 2019 05:08:40
Message-Id: 1554872897.d2b89a62f1debe41510a6e4278fdbf6e88f65b07.prometheanfire@gentoo
1 commit: d2b89a62f1debe41510a6e4278fdbf6e88f65b07
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 10 05:01:17 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 10 05:08:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2b89a62
7
8 dev-python/warlock: 1.3.0 bump
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-python/warlock/Manifest | 1 +
14 dev-python/warlock/warlock-1.3.0.ebuild | 32 ++++++++++++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/dev-python/warlock/Manifest b/dev-python/warlock/Manifest
18 index bbc666972b5..363e74843d5 100644
19 --- a/dev-python/warlock/Manifest
20 +++ b/dev-python/warlock/Manifest
21 @@ -1,2 +1,3 @@
22 DIST warlock-1.1.0.tar.gz 7879 BLAKE2B e132cad7d2d89845f255dca0ab16760c403c375ff89c2f2e465047dfdbe56677c5e52490dab056af6b8131758eaf9abae80c779da96db697de1173901ce4f143 SHA512 57353cb21ee7245cb27f29193d8c0987971535f1bc9f7a8914738ec15cd5712cf7001eae379041c0188e489365f23b0190dc13799b57a117b0bd3ed62cc2e30a
23 DIST warlock-1.2.0.tar.gz 8210 BLAKE2B 61e7dc9e033d0893b93eb2e9e82310366dfbc6aa37a15bddbe72cd3a48329be6d5a1b44dd095235f8f828a4e365dbb9f6964e064ef2025c91ca46e6bf119ab91 SHA512 775362a80be7ab37d3a856947cc930e6be74d2b86e59ce44c9e24e54e111288dddae17f7d8b8885ea3d4cfa5674d327149d725a3acf4fc7bb48b2f63f5db63dd
24 +DIST warlock-1.3.0.tar.gz 8853 BLAKE2B 51b313f81cc7009b2b336d6ea7ecf5b78adfe33b3efee3abd9b2296f90716db25fcd4a06eb6946c26c3700ccf5d090da716bd4c5a7864f285e26bd2504700c3c SHA512 0c60c624e89782009a79a0174e6855a9d3a084403f5fa8fc676ad28c42184ff44c43684d6ab68262045f75588932ab4679dffb05f7762c290741ca645d90f32a
25
26 diff --git a/dev-python/warlock/warlock-1.3.0.ebuild b/dev-python/warlock/warlock-1.3.0.ebuild
27 new file mode 100644
28 index 00000000000..5c76cb43efd
29 --- /dev/null
30 +++ b/dev-python/warlock/warlock-1.3.0.ebuild
31 @@ -0,0 +1,32 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python object model built on JSON schema and JSON patch"
41 +HOMEPAGE="https://github.com/bcwaldon/warlock"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
47 +IUSE="test"
48 +
49 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
50 + test? ( dev-python/six[${PYTHON_USEDEP}]
51 + >=dev-python/jsonpatch-0.10[${PYTHON_USEDEP}]
52 + <dev-python/jsonpatch-2[${PYTHON_USEDEP}]
53 + >=dev-python/jsonschema-0.7[${PYTHON_USEDEP}]
54 + <dev-python/jsonschema-3[${PYTHON_USEDEP}] )"
55 +RDEPEND="dev-python/six[${PYTHON_USEDEP}]
56 + >=dev-python/jsonpatch-0.10[${PYTHON_USEDEP}]
57 + <dev-python/jsonpatch-2[${PYTHON_USEDEP}]
58 + >=dev-python/jsonschema-0.7[${PYTHON_USEDEP}]
59 + <dev-python/jsonschema-3[${PYTHON_USEDEP}]"
60 +
61 +python_test() {
62 + "${PYTHON}" test/test_core.py || die
63 +}