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 78DA31382C5 for ; Wed, 10 Jun 2020 13:30:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92EBFE0893; Wed, 10 Jun 2020 13:30:32 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 79312E0891 for ; Wed, 10 Jun 2020 13:30:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 3149B34F077 for ; Wed, 10 Jun 2020 13:30:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74500292 for ; Wed, 10 Jun 2020 13:30:23 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1591795818.095a4f0f152ffcbef74ee703f9c90b6d0e67ebad.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jmespath/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jmespath/Manifest dev-python/jmespath/jmespath-0.10.0.ebuild X-VCS-Directories: dev-python/jmespath/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 095a4f0f152ffcbef74ee703f9c90b6d0e67ebad X-VCS-Branch: master Date: Wed, 10 Jun 2020 13:30:23 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 65173126-881e-4f22-b553-903f2cb2f84c X-Archives-Hash: b393ac62e1bdbab9d15a0ab833e5b763 commit: 095a4f0f152ffcbef74ee703f9c90b6d0e67ebad Author: Michał Górny gentoo org> AuthorDate: Wed Jun 10 11:10:26 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 10 13:30:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=095a4f0f dev-python/jmespath: Bump to 0.10.0 Signed-off-by: Michał Górny gentoo.org> dev-python/jmespath/Manifest | 1 + dev-python/jmespath/jmespath-0.10.0.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-python/jmespath/Manifest b/dev-python/jmespath/Manifest index 443cec1755f..39f85dac7b4 100644 --- a/dev-python/jmespath/Manifest +++ b/dev-python/jmespath/Manifest @@ -1 +1,2 @@ DIST jmespath-0.9.3.tar.gz 22967 BLAKE2B c640b0fb29863e833adf200f2d3e364e65ff782f0f6046cf53463194cb8a69289e0146fc519c0e4d73a0606821f6d43d943e820b429b6fb53de06546688b39f7 SHA512 eeab444df7a29c0bc64bd8064c942a5b02772d39d6d262dbef1d43ebaf7e4eb97c34fb1df3a47c6da011a632ec5f9b1ffe62ac51929e8d412368b907ebbb85a7 +DIST jmespath.py-0.10.0.gh.tar.gz 81860 BLAKE2B a6181bde0189badcf3ec9a8cf2a913ddea27634b89e181c4b990a0c1eeb3bb777f6f3758ed6ca8acd061b06d853b9857ad33faf037201132bc73572c5d009f4d SHA512 84d787a9547bf0d33dfb4cf42514d6a7a1e69fb8867ccb9d84aa0555ea52b3064a9c6a49b3c51564090bb1d1d2d067fe1887105d744a0f25a991d9e9595c85c5 diff --git a/dev-python/jmespath/jmespath-0.10.0.ebuild b/dev-python/jmespath/jmespath-0.10.0.ebuild new file mode 100644 index 00000000000..c0b40b306c5 --- /dev/null +++ b/dev-python/jmespath/jmespath-0.10.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +PYTHON_COMPAT=( python3_{6..9} pypy3 ) + +inherit distutils-r1 + +MY_P=jmespath.py-${PV} +DESCRIPTION="JSON Matching Expressions" +HOMEPAGE="https://github.com/jmespath/jmespath.py/ + https://pypi.org/project/jmespath/" +SRC_URI=" + https://github.com/jmespath/jmespath.py/archive/${PV}.tar.gz + -> ${MY_P}.gh.tar.gz" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" + +distutils_enable_tests nose