Gentoo Archives: gentoo-commits

From: Andrey Utkin <andrey_utkin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jmespath/
Date: Wed, 19 Sep 2018 00:04:41
Message-Id: 1537315427.5c058b815a8a72b3caceaee814783c1dab21f607.andrey_utkin@gentoo
1 commit: 5c058b815a8a72b3caceaee814783c1dab21f607
2 Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 8 23:59:54 2018 +0000
4 Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 19 00:03:47 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c058b81
7
8 dev-python/jmespath: add python3_7, EAPI=7
9
10 Acked-by: Alexis Ballier <aballier <AT> gentoo.org>
11 Package-Manager: Portage-2.3.48, Repoman-2.3.10
12
13 dev-python/jmespath/jmespath-0.9.3-r1.ebuild | 26 ++++++++++++++++++++++++++
14 1 file changed, 26 insertions(+)
15
16 diff --git a/dev-python/jmespath/jmespath-0.9.3-r1.ebuild b/dev-python/jmespath/jmespath-0.9.3-r1.ebuild
17 new file mode 100644
18 index 00000000000..252f4e77c07
19 --- /dev/null
20 +++ b/dev-python/jmespath/jmespath-0.9.3-r1.ebuild
21 @@ -0,0 +1,26 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI="7"
26 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} pypy{,3} )
27 +
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="JSON Matching Expressions"
31 +HOMEPAGE="https://github.com/boto/jmespath https://pypi.org/project/jmespath/"
32 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 +
34 +LICENSE="MIT"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
37 +IUSE="test"
38 +
39 +DEPEND="
40 + dev-python/setuptools[${PYTHON_USEDEP}]
41 + test? ( dev-python/nose[${PYTHON_USEDEP}] )
42 +"
43 +RDEPEND=""
44 +
45 +python_test() {
46 + nosetests || die
47 +}