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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 73B9415801B for ; Tue, 15 Aug 2023 15:53:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84AB62BC02E; Tue, 15 Aug 2023 15:53:45 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6ED902BC02E for ; Tue, 15 Aug 2023 15:53:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D757340E22 for ; Tue, 15 Aug 2023 15:53:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7868AFAA for ; Tue, 15 Aug 2023 15:53:42 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1692114791.1bf27838bc88d60c218e5ba701202499d42cb287.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonpath-ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jsonpath-ng/Manifest dev-python/jsonpath-ng/jsonpath-ng-1.5.3.ebuild dev-python/jsonpath-ng/metadata.xml X-VCS-Directories: dev-python/jsonpath-ng/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 1bf27838bc88d60c218e5ba701202499d42cb287 X-VCS-Branch: master Date: Tue, 15 Aug 2023 15:53:42 +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: 829b31a1-1440-4f98-bd0d-5a7b87e22f48 X-Archives-Hash: a5ef4165485548b1e92e7cb7bdfaccca commit: 1bf27838bc88d60c218e5ba701202499d42cb287 Author: Florian Schmaus gentoo org> AuthorDate: Tue Aug 15 15:25:40 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Tue Aug 15 15:53:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf27838 dev-python/jsonpath-ng: new package, add 1.5.3 Signed-off-by: Florian Schmaus gentoo.org> dev-python/jsonpath-ng/Manifest | 1 + dev-python/jsonpath-ng/jsonpath-ng-1.5.3.ebuild | 38 +++++++++++++++++++++++++ dev-python/jsonpath-ng/metadata.xml | 12 ++++++++ 3 files changed, 51 insertions(+) diff --git a/dev-python/jsonpath-ng/Manifest b/dev-python/jsonpath-ng/Manifest new file mode 100644 index 000000000000..74e5acdda5c9 --- /dev/null +++ b/dev-python/jsonpath-ng/Manifest @@ -0,0 +1 @@ +DIST jsonpath-ng-1.5.3.tar.gz 32819 BLAKE2B 2f217638a5f4b76d0fe2bd8d0655794281d437983abe9fda96a40440bc97ba0ad13875b7cf83d06386258c43e66732b8a9d799ccaecf5034a9d01d120f403cb6 SHA512 adf501d0db74f76216476700dce342d7a92641ecb451bdce43d0c6abce59a278dc1696b959205030de256b456ae67a554ea35a5dec272f0a4fc84c4d2b76a5c1 diff --git a/dev-python/jsonpath-ng/jsonpath-ng-1.5.3.ebuild b/dev-python/jsonpath-ng/jsonpath-ng-1.5.3.ebuild new file mode 100644 index 000000000000..4b2123f8e663 --- /dev/null +++ b/dev-python/jsonpath-ng/jsonpath-ng-1.5.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 +PYTHON_COMPAT=( python3_11 ) + +inherit distutils-r1 pypi + +DESCRIPTION="Python JSONPath Next-Generation" +HOMEPAGE=" + https://github.com/h2non/jsonpath-ng + https://pypi.org/project/jsonpath-ng/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/decorator[${PYTHON_USEDEP}] + dev-python/ply[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/oslotest[${PYTHON_USEDEP}] + dev-python/testscenarios[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + tests/test_jsonpath_rw_ext.py::Testjsonpath_ng_ext::test_fields_value +) diff --git a/dev-python/jsonpath-ng/metadata.xml b/dev-python/jsonpath-ng/metadata.xml new file mode 100644 index 000000000000..220b98b8a585 --- /dev/null +++ b/dev-python/jsonpath-ng/metadata.xml @@ -0,0 +1,12 @@ + + + + + Florian Schmaus + flow@gentoo.org + + + h2non/jsonpath-ng + jsonpath-ng + +