mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-08 13:17:38 -08:00
Needed for json-path which is a test dependency of dev-java/json Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Florian Schmaus <flow@gentoo.org>
24 lines
590 B
Bash
24 lines
590 B
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
|
MAVEN_ID="jakarta.json:jakarta.json-api:${PV}"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="Jakarta JSON Processing API"
|
|
HOMEPAGE="https://projects.eclipse.org/projects/ee4j.jsonp"
|
|
SRC_URI="https://github.com/jakartaee/jsonp-api/archive/${PV}-RELEASE.tar.gz -> ${P}-RELEASE.tar.gz"
|
|
S="${WORKDIR}/${P}-RELEASE"
|
|
|
|
LICENSE="EPL-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND=">=virtual/jdk-1.8:*"
|
|
RDEPEND=">=virtual/jre-1.8:*"
|
|
|
|
JAVA_SRC_DIR="api/src/main/java"
|