Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jmespath/
Date: Sat, 28 Jan 2017 20:14:42
Message-Id: 1485634399.293e7b526c85326a0d2c079ab755c8800989841b.aballier@gentoo
1 commit: 293e7b526c85326a0d2c079ab755c8800989841b
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 28 16:04:12 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 28 20:13:19 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=293e7b52
7
8 dev-python/jmespath: bump to 0.9.1
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/jmespath/Manifest | 1 +
13 dev-python/jmespath/jmespath-0.9.1.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/jmespath/Manifest b/dev-python/jmespath/Manifest
17 index b12c13d..b31eddc 100644
18 --- a/dev-python/jmespath/Manifest
19 +++ b/dev-python/jmespath/Manifest
20 @@ -1 +1,2 @@
21 DIST jmespath-0.9.0.tar.gz 20855 SHA256 08dfaa06d4397f283a01e57089f3360e3b52b5b9da91a70e1fd91e9f0cdd3d3d SHA512 c3a707bde5e529554638255a6a6dcf49591ec7573e28d84d34b3c1b8f84d13289ab054818f88b72ac8aee0f1af6ae830cb661f027e90efe9fb9edb4dcf5128c9 WHIRLPOOL f2b8e5d65068add24d3e3d7a272fbc67f439baadd0863ca90ce21db9f62913de9d64df43763c2cdb3549aeedc56bf7aac4cfd40756bdf013a8184d5c3d72b8ac
22 +DIST jmespath-0.9.1.tar.gz 22701 SHA256 e72d02de23c1814322f7c0dcffb46716271f9b52b129aace0ab6f5a0450d5f02 SHA512 aa81157dc9b0cb0cfda40551f492379a72a62dd2ff052b0ff8cb2b950a0c8118920c498287b40cd83a38e8ad5216c517ea541954d87cac4ea861b64cff580036 WHIRLPOOL f2e5eca1b9a1ace8f0a2519b3a1e3effb35ff81765a1ace614b6ce17667ec984b2d628e1d7f2f89068b0b51f52f00c6c554da856fe36e426ac3492cb13849891
23
24 diff --git a/dev-python/jmespath/jmespath-0.9.1.ebuild b/dev-python/jmespath/jmespath-0.9.1.ebuild
25 new file mode 100644
26 index 00000000..52ec0ad
27 --- /dev/null
28 +++ b/dev-python/jmespath/jmespath-0.9.1.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI="5"
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="JSON Matching Expressions"
40 +HOMEPAGE="https://github.com/boto/jmespath https://pypi.python.org/pypi/jmespath"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="test"
47 +
48 +DEPEND="
49 + dev-python/setuptools[${PYTHON_USEDEP}]
50 + test? ( dev-python/nose[${PYTHON_USEDEP}] )
51 +"
52 +RDEPEND=""
53 +
54 +python_test() {
55 + nosetests || die
56 +}