mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-11 00:07:51 +03:00
Signed-off-by: Valérian Rousset <tharvik@users.noreply.github.com> Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
36 lines
942 B
Bash
36 lines
942 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.thetransactioncompany:jsonrpc2-base:1.38.2"
|
|
JAVA_TESTING_FRAMEWORKS="junit-4"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="Represent, parse and serialise JSON-RPC 2.0 messages"
|
|
HOMEPAGE="https://software.dzhuvinov.com/json-rpc-2.0-base.html"
|
|
SRC_URI="https://bitbucket.org/thetransactioncompany/json-rpc-2.0-base/get/${PV}.tar.bz2 -> ${P}.tar.bz2"
|
|
S="${WORKDIR}/thetransactioncompany-json-rpc-2.0-base-75e66af02953"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="1"
|
|
KEYWORDS="amd64 ~arm64"
|
|
|
|
CP_DEPEND="dev-java/json-smart:1"
|
|
DEPEND="
|
|
${CP_DEPEND}
|
|
>=virtual/jdk-1.8:*
|
|
"
|
|
|
|
RDEPEND="
|
|
${CP_DEPEND}
|
|
>=virtual/jre-1.8:*
|
|
"
|
|
|
|
JAVA_SRC_DIR="src/main/java"
|
|
JAVA_TEST_SRC_DIR="src/test/java"
|
|
JAVA_TEST_GENTOO_CLASSPATH="junit-4"
|
|
JAVA_TEST_EXCLUDES=( "com.thetransactioncompany.jsonrpc2.util.TestEnumDay" )
|