bump jsonpath-ng-1.5.3

This commit is contained in:
Andreas Billmeier 2022-10-02 12:49:04 +02:00 committed by Andreas Billmeier
parent 95e9bb656e
commit 8809b18105
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 44 additions and 5 deletions

View File

@ -538,12 +538,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1914 Ebuilds in total, 1907 of them have in total 1919 (35 different) licenses assigned.
There are 1915 Ebuilds in total, 1908 of them have in total 1920 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1152|
|Apache-2.0|366|
|Apache-2.0|367|
|GPL-3|119|
|BSD|104|
|LGPL-3|29|

View File

@ -1,3 +1,5 @@
DIST jsonpath-ng-1.5.2.tar.gz 30691 BLAKE2B cfd715a762d211bc21d676354372efdf6c9e21731ed6a3e4772cd3f67f19241b9d84489a94fd85cacf3931d56474d8327266a6da14d26caca8906d29dbebdd2c SHA512 3b1d2473386b605e4243b071d867eece9a54602c111df3bf9b3ba8965f2ec2bf2fd389cf556e47d3c6e63a840d17923dffeebce75b56a0b9040b61d8b4e6371d
EBUILD jsonpath-ng-1.5.2.ebuild 872 BLAKE2B cf07c03d50b2087c40164e82633da8a4db627858afe7356dc31dd9ea4a6a60adb1e87a93f4f188ef522ffd7389c9e7174bcff1e0dc361cb850cc0f634879d768 SHA512 cd62525ec6541e9138f38f0ad7d5a58ea6bc683ca385758b31b7ed6b215c75aef96c20f8610b340e975db5a1417bce4c85a48f02202ee8a35e8489338181d1ad
DIST jsonpath-ng-1.5.3.tar.gz 32819 BLAKE2B 2f217638a5f4b76d0fe2bd8d0655794281d437983abe9fda96a40440bc97ba0ad13875b7cf83d06386258c43e66732b8a9d799ccaecf5034a9d01d120f403cb6 SHA512 adf501d0db74f76216476700dce342d7a92641ecb451bdce43d0c6abce59a278dc1696b959205030de256b456ae67a554ea35a5dec272f0a4fc84c4d2b76a5c1
EBUILD jsonpath-ng-1.5.2.ebuild 848 BLAKE2B 67ad8643c85a37b4b2dc9eedaf60c89b522e5264f9f350b1dd664d5049ac9e21daa51e9d8465d047ce17f68a157cf6f77dc72290cad7e5392f6b565ca24c513c SHA512 f74d4b63a1b52938600c442428feef4621e1623ab651b760d084c4d8acc789a8b43cb92c4ba16d1abfe6770096cc89633888b37106bf0bdc3b37510615656400
EBUILD jsonpath-ng-1.5.3.ebuild 879 BLAKE2B 4fd8eef476c0aa53f4c702fa6c9543c27a452f4b407419d8bc6a793b0a5b94df3d8c3e4b42bef0cd9b6abf28f0f3a6022a2cb574af1ea46d6dccfabd6f8ccb53 SHA512 4c5ec9f382bf59d32a2ae0fb78b896323256f75b3bf9759d6fdfaacdb3bfd73aea12523427b85594f8748adba2d94b7ea54125d41415dd371a97277642e354da
MISC metadata.xml 455 BLAKE2B 99adb52005d15f364bde074c8417943e3398bce14120797b0bd93049dcd68faf271ca73adef5b4a9a2533fa14162705b40bffbfd0b077a33b49df8f511cb6025 SHA512 ab18660e2ba65e9cb194294083146d1266f2e3649b32272be88c0d8b688fdf377c6a5e32341d48225b6baebe17084b9c369ff00c0ae285c230714dbe3f3ab03c

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@ -13,7 +13,7 @@ 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"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"

View File

@ -0,0 +1,37 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="A final implementation of JSONPath for Python that aims to be standard compliant."
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"
IUSE="test"
RESTRICT="!test? ( 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
}
distutils_enable_tests pytest