mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 23:19:14 +02:00
After a message to gentoo-dev ML, and no reply from any user on x86, we decided to dekeyword most Java packages from x86, and reverse dependencies of them. Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
31 lines
799 B
Bash
31 lines
799 B
Bash
# Copyright 2022-2024 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:1.1.6"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
MY_PN="jsonp"
|
|
MY_PV="1.1-${PV}-RELEASE"
|
|
MY_P="${MY_PN}-${MY_PV}"
|
|
|
|
DESCRIPTION="JSR 374 (JSON Processing) API"
|
|
HOMEPAGE="https://projects.eclipse.org/projects/ee4j.jsonp"
|
|
SRC_URI="https://github.com/eclipse-ee4j/jsonp/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="|| ( EPL-2.0 GPL-2-with-classpath-exception )"
|
|
# Since version 2.0.0, the namespace has changed to jakarta.json
|
|
SLOT="1"
|
|
KEYWORDS="amd64 arm64 ppc64"
|
|
|
|
DEPEND=">=virtual/jdk-11:*"
|
|
RDEPEND=">=virtual/jre-1.8:*"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
JAVA_SRC_DIR="api/src/main"
|
|
|
|
DOCS=( CONTRIBUTING.md NOTICE.md README.md )
|