From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C07ED158030 for ; Mon, 27 Feb 2023 06:59:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4DBEE0817; Mon, 27 Feb 2023 06:59:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A325EE07F9 for ; Mon, 27 Feb 2023 06:59:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A4AF7340E1C for ; Mon, 27 Feb 2023 06:59:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DBE128B7 for ; Mon, 27 Feb 2023 06:59:15 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1677481148.d9673cc189484a3e146ac8a8aba2b32b0729d37a.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/javax-jsp-api/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/javax-jsp-api/Manifest dev-java/javax-jsp-api/javax-jsp-api-2.2.ebuild dev-java/javax-jsp-api/metadata.xml X-VCS-Directories: dev-java/javax-jsp-api/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: d9673cc189484a3e146ac8a8aba2b32b0729d37a X-VCS-Branch: master Date: Mon, 27 Feb 2023 06:59:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fb254485-bb1c-4a7b-a76b-6d4be7bfdbd9 X-Archives-Hash: e8f5f5046748e04adda167f3943a361a commit: d9673cc189484a3e146ac8a8aba2b32b0729d37a Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Mon Feb 20 09:38:52 2023 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Mon Feb 27 06:59:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9673cc1 dev-java/javax-jsp-api: new package, add 2.2 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Miroslav Šulc gentoo.org> dev-java/javax-jsp-api/Manifest | 1 + dev-java/javax-jsp-api/javax-jsp-api-2.2.ebuild | 27 +++++++++++++++++++++++++ dev-java/javax-jsp-api/metadata.xml | 7 +++++++ 3 files changed, 35 insertions(+) diff --git a/dev-java/javax-jsp-api/Manifest b/dev-java/javax-jsp-api/Manifest new file mode 100644 index 000000000000..c5007f612518 --- /dev/null +++ b/dev-java/javax-jsp-api/Manifest @@ -0,0 +1 @@ +DIST jsp-api-2.2-sources.jar 163137 BLAKE2B 8bac5428393518cb3edb8488eaaab772d37db51dfbc5b466eabcb5b8ccd90cfa4869ebe65d861c64a6c588c8ede3ab1f5ab0c2e9080dde16c0585a7f774abb05 SHA512 ff79c34904372b722501b4479cbf88796017839d636a31b9343ef9104d93e3554154b3124f366295d05a41dc8320ff8bc83e9f8ee971df35c791220065b70647 diff --git a/dev-java/javax-jsp-api/javax-jsp-api-2.2.ebuild b/dev-java/javax-jsp-api/javax-jsp-api-2.2.ebuild new file mode 100644 index 000000000000..49afcbddfab8 --- /dev/null +++ b/dev-java/javax-jsp-api/javax-jsp-api-2.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 2023 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" +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" + +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}" diff --git a/dev-java/javax-jsp-api/metadata.xml b/dev-java/javax-jsp-api/metadata.xml new file mode 100644 index 000000000000..75321cfb5598 --- /dev/null +++ b/dev-java/javax-jsp-api/metadata.xml @@ -0,0 +1,7 @@ + + + + + java@gentoo.org + +