From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C0078138335 for ; Wed, 19 Sep 2018 00:04:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9E53E07DF; Wed, 19 Sep 2018 00:04:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A38C2E07DF for ; Wed, 19 Sep 2018 00:04:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3D9FF335CF3 for ; Wed, 19 Sep 2018 00:04:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F0DF3CB for ; Wed, 19 Sep 2018 00:04:36 +0000 (UTC) From: "Andrey Utkin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Utkin" Message-ID: <1537315427.5c058b815a8a72b3caceaee814783c1dab21f607.andrey_utkin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jmespath/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jmespath/jmespath-0.9.3-r1.ebuild X-VCS-Directories: dev-python/jmespath/ X-VCS-Committer: andrey_utkin X-VCS-Committer-Name: Andrey Utkin X-VCS-Revision: 5c058b815a8a72b3caceaee814783c1dab21f607 X-VCS-Branch: master Date: Wed, 19 Sep 2018 00:04:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1c29da1f-64ef-4c8f-9475-ed112d45c875 X-Archives-Hash: dc6a0f3ec92b381b862fc6923713ff65 commit: 5c058b815a8a72b3caceaee814783c1dab21f607 Author: Andrey Utkin gentoo org> AuthorDate: Sat Sep 8 23:59:54 2018 +0000 Commit: Andrey Utkin gentoo org> CommitDate: Wed Sep 19 00:03:47 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c058b81 dev-python/jmespath: add python3_7, EAPI=7 Acked-by: Alexis Ballier gentoo.org> Package-Manager: Portage-2.3.48, Repoman-2.3.10 dev-python/jmespath/jmespath-0.9.3-r1.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/dev-python/jmespath/jmespath-0.9.3-r1.ebuild b/dev-python/jmespath/jmespath-0.9.3-r1.ebuild new file mode 100644 index 00000000000..252f4e77c07 --- /dev/null +++ b/dev-python/jmespath/jmespath-0.9.3-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} pypy{,3} ) + +inherit distutils-r1 + +DESCRIPTION="JSON Matching Expressions" +HOMEPAGE="https://github.com/boto/jmespath https://pypi.org/project/jmespath/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] ) +" +RDEPEND="" + +python_test() { + nosetests || die +}