update jsonpath-ng-1.5.2

This commit is contained in:
Andreas Billmeier 2021-06-18 15:39:32 +02:00 committed by Andreas Billmeier
parent 3c20e6ba2a
commit 5e19cea087
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 36 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST jsonpath-ng-1.5.1.tar.gz 30784 BLAKE2B 9f0073cb73779703616358a2436e5d90a65d30d91e8a32a1fd845bd76096f8d9f9316d62cb95917cd8e511c54ca86fa3a1ab2cd930e6df48aecb1359f53dec40 SHA512 f4dbff37d50b4b6e4d68bc79b78f8abc8bd760acfa3b176429ec751fd48cf72fe8d922fefffabaf0106d9df0dd08c0c15c725861a0bd3ecc21e1e0d514f246c4
DIST jsonpath-ng-1.5.2.tar.gz 30691 BLAKE2B cfd715a762d211bc21d676354372efdf6c9e21731ed6a3e4772cd3f67f19241b9d84489a94fd85cacf3931d56474d8327266a6da14d26caca8906d29dbebdd2c SHA512 3b1d2473386b605e4243b071d867eece9a54602c111df3bf9b3ba8965f2ec2bf2fd389cf556e47d3c6e63a840d17923dffeebce75b56a0b9040b61d8b4e6371d
EBUILD jsonpath-ng-1.5.1.ebuild 939 BLAKE2B 3d8a61f89625dcc993a3dedfbdcd6c1209a4aca11d782eb57bd6c72d8627abbfa6483b6802f9de14da6fb618bcc7fa139a46778d6d1495152bfd1b2857fe2f7b SHA512 8de3613713c0a9ef1e1b6a2a8c79fe63486649bb7557c6dfc2c83f7bf171f560dd06afc8579c3235922d7c1fecfe426d55920c967d9499c1059e6fc3f9e6b6a7
EBUILD jsonpath-ng-1.5.2.ebuild 949 BLAKE2B bc7885f5c9066123c186f90747d636107775e38c23dc798b45cec7e0fa4dc8ab89ef43aba1d3cf93fbb62859a15faf004b33fb944fb32339e9f9725a1b2c3667 SHA512 fcabf5a21b50a50a63a384729d75eeec2bb16b6017e9a49bd7ec7eb5e18f481301e39dc9e5657b25a05c735006abdf9668c09beee8a4301e6fe3813f47714ddf
MISC metadata.xml 455 BLAKE2B 99adb52005d15f364bde074c8417943e3398bce14120797b0bd93049dcd68faf271ca73adef5b4a9a2533fa14162705b40bffbfd0b077a33b49df8f511cb6025 SHA512 ab18660e2ba65e9cb194294083146d1266f2e3649b32272be88c0d8b688fdf377c6a5e32341d48225b6baebe17084b9c369ff00c0ae285c230714dbe3f3ab03c

View File

@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A final implementation of JSONPath for Python that aims to be standard compliant, including arithmetic and binary comparison operators and providing clear AST for metaprogramming."
HOMEPAGE="https://github.com/h2non/jsonpath-ng https://pypi.org/project/jsonpath-ng/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache 2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND="dev-python/ply[${PYTHON_USEDEP}]
dev-python/decorator[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}