mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 15:09:04 +02:00
38 lines
849 B
Bash
38 lines
849 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
# No tests due to missing eclass suppoert for junit-jupiter, bug #839681
|
|
JAVA_PKG_IUSE="doc source"
|
|
MAVEN_ID="io.pebbletemplates:pebble:${PV}"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="Templating engine for Java"
|
|
HOMEPAGE="https://pebbletemplates.io"
|
|
SRC_URI="https://github.com/PebbleTemplates/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/${P}/${PN}"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64"
|
|
|
|
CP_DEPEND="
|
|
dev-java/caffeine:0
|
|
dev-java/jakarta-servlet-api:6
|
|
dev-java/javax-servlet-api:2.5
|
|
dev-java/slf4j-api:0
|
|
dev-java/unbescape:0
|
|
"
|
|
DEPEND="
|
|
${CP_DEPEND}
|
|
>=virtual/jdk-1.8:*
|
|
"
|
|
RDEPEND="
|
|
${CP_DEPEND}
|
|
>=virtual/jre-1.8:*
|
|
"
|
|
|
|
JAVA_AUTOMATIC_MODULE_NAME="io.pebbletemplates"
|
|
JAVA_SRC_DIR="src/main/java"
|