gentoo-ebuilds/dev-java/istack-commons-runtime/istack-commons-runtime-3.0.12.ebuild
Arthur Zamarin fc10287578
dev-java/istack-commons-runtime: dekeyword x86
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>
2024-10-17 18:30:56 +03:00

37 lines
980 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
JAVA_PKG_IUSE="doc source test"
MAVEN_ID="com.sun.istack:istack-commons-runtime:${PV}"
JAVA_TESTING_FRAMEWORKS="junit-4"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="istack common utility code"
HOMEPAGE="https://projects.eclipse.org/projects/ee4j/istack-commons/"
SRC_URI="https://github.com/eclipse-ee4j/jaxb-istack-commons/archive/${PV}.tar.gz -> jaxb-istack-commons-${PV}.tar.gz"
S="${WORKDIR}/jaxb-istack-commons-${PV}/istack-commons"
LICENSE="EPL-1.0"
SLOT="3"
KEYWORDS="amd64 arm64 ppc64"
# fails if jdk-1.8:* # https://bugs.gentoo.org/857024
DEPEND="
>=virtual/jdk-11:*
dev-java/jakarta-activation-api:1
"
RDEPEND="
>=virtual/jre-1.8:*
"
DOCS=( ../{CONTRIBUTING,NOTICE,README}.md )
JAVA_CLASSPATH_EXTRA="jakarta-activation-api-1"
JAVA_SRC_DIR="runtime/src/main/java"
JAVA_TEST_GENTOO_CLASSPATH="junit-4"
JAVA_TEST_SRC_DIR="runtime/src/test/java"