mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
38 lines
1.0 KiB
Bash
38 lines
1.0 KiB
Bash
# Copyright 2023-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
|
MAVEN_ID="com.github.ben-manes.caffeine:caffeine:${PV}"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="A high performance caching library"
|
|
HOMEPAGE="https://github.com/ben-manes/caffeine"
|
|
SRC_URI="https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/${PV}/caffeine-${PV}-sources.jar"
|
|
# Compiling from Github tarball would require to be packaged at least
|
|
# package com.squareup.javapoet
|
|
# package MethodSpec
|
|
# package TypeSpec
|
|
# SRC_URI="https://github.com/ben-manes/caffeine/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
# S="${WORKDIR}/${P}/caffeine"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64 ppc64"
|
|
|
|
BDEPEND="app-arch/unzip"
|
|
CP_DEPEND="
|
|
dev-java/jsr305:0
|
|
dev-java/checker-framework-qual:0
|
|
dev-java/error-prone-annotations:0
|
|
"
|
|
# min java 11 for bug #919464
|
|
DEPEND="${CP_DEPEND}
|
|
>=virtual/jdk-11:*"
|
|
RDEPEND="${CP_DEPEND}
|
|
>=virtual/jre-1.8:*"
|
|
|
|
JAVA_AUTOMATIC_MODULE_NAME="com.github.benmanes.caffeine"
|