dev-java/json-path: add 2.10.0

Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Part-of: https://github.com/gentoo/gentoo/pull/44435
Closes: https://github.com/gentoo/gentoo/pull/44435
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Volkmar W. Pogatzki 2025-11-02 14:21:27 +01:00 committed by Miroslav Šulc
parent 17b9ed87f4
commit d59d0bae7a
No known key found for this signature in database
GPG Key ID: 65D0F770B26B469C
2 changed files with 50 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST json-path-2.10.0.tar.gz 225715 BLAKE2B f48ad8b9c2559df5de2134ca545b50f67e2e7f061500b8002c89ba4ffc4b1877eb9f4a5d82015ad817e88d9d9817f0ae8c4ca5e3e9da70afc9343c4e39a0c28a SHA512 4fbc249edcb7d8e2ebd49e48c27e877f9393be1a50103d7ed762f03d8058e72e7467bc8f9b9267e59b78822144c445ffbf9f085b6d0e4f2b670cca2d736c38b1
DIST json-path-2.9.0.tar.gz 290532 BLAKE2B 22a377acfd7b29e8bf950f2b328431223acae66a90ca7b0671f469416ad40801b99aeef3609ecff8a5e0e0d57834581c7ba00f8d705b431f8d93a71d21036c75 SHA512 ad5aafd9836898ec4064389d32665089d6ee310be86f9673f7fcbae93836f1737ab5900b4e0b16f315cda04167ac6c65c2e5a021c9374873467bb3807537200a

View File

@ -0,0 +1,49 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
JAVA_PKG_IUSE="doc source"
MAVEN_ID="com.jayway.jsonpath:json-path:${PV}"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Java JsonPath implementation "
HOMEPAGE="https://github.com/json-path/JsonPath"
SRC_URI="https://github.com/json-path/JsonPath/archive/${P}.tar.gz"
S="${WORKDIR}/JsonPath-${P}/json-path"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
CP_DEPEND="
dev-java/tapestry-json:0
dev-java/gson:0
>=dev-java/jackson-databind-2.20.0:0
dev-java/jettison:0
dev-java/json:0
dev-java/jsonb-api:0
dev-java/jsonp-api:0
>=dev-java/json-smart-2.5.2:0
dev-java/slf4j-api:0
"
DEPEND="
${CP_DEPEND}
>=virtual/jdk-1.8:*
"
RDEPEND="
${CP_DEPEND}
>=dev-java/jackson-core-2.20.0:0
>=virtual/jre-1.8:*
"
JAVA_AUTOMATIC_MODULE_NAME="json.path"
JAVA_SRC_DIR="src/main/java"
src_install() {
java-pkg-simple_src_install
java-pkg_register-dependency jackson-core
}