mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-11 00:07:51 +03: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>
28 lines
674 B
Bash
28 lines
674 B
Bash
# Copyright 2023-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
|
MAVEN_ID="javax.servlet.jsp:jsp-api:2.2"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="JavaServer Pages(TM) API JSR-000152 JSR-000245"
|
|
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
|
|
SRC_URI="https://repo1.maven.org/maven2/javax/servlet/jsp/jsp-api/${PV}/jsp-api-${PV}-sources.jar"
|
|
|
|
LICENSE="CDDL GPL-2-with-classpath-exception"
|
|
SLOT="2.2"
|
|
KEYWORDS="amd64 ~arm64"
|
|
|
|
CP_DEPEND="
|
|
dev-java/javax-el-api:2.2
|
|
dev-java/javax-servlet-api:2.5
|
|
"
|
|
|
|
RDEPEND=">=virtual/jre-1.8:*
|
|
${CP_DEPEND}"
|
|
DEPEND=">=virtual/jdk-1.8:*
|
|
${CP_DEPEND}"
|