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 460AC158086 for ; Fri, 7 Jan 2022 13:04:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 562932BC002; Fri, 7 Jan 2022 13:03:59 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 183342BC002 for ; Fri, 7 Jan 2022 13:03:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 3126F342CB8 for ; Fri, 7 Jan 2022 13:03:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DA84285 for ; Fri, 7 Jan 2022 13:03:50 +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: <1641560628.9efa962d1eebea911031d267d163a28ce1ebc0a2.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/resin-servlet-api/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/resin-servlet-api/resin-servlet-api-4.0.27-r1.ebuild X-VCS-Directories: dev-java/resin-servlet-api/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 9efa962d1eebea911031d267d163a28ce1ebc0a2 X-VCS-Branch: master Date: Fri, 7 Jan 2022 13:03:50 +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: 1b5b7f69-41f6-44af-bc6d-66b8f2932c68 X-Archives-Hash: 770dd8569cc00c2d91b8533016b9a7bc commit: 9efa962d1eebea911031d267d163a28ce1ebc0a2 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sat Jan 1 12:37:03 2022 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Jan 7 13:03:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9efa962d dev-java/resin-servlet-api: Drop 4.0.27-r1 (wrong slot) Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/23617 Signed-off-by: Miroslav Šulc gentoo.org> .../resin-servlet-api-4.0.27-r1.ebuild | 41 ---------------------- 1 file changed, 41 deletions(-) diff --git a/dev-java/resin-servlet-api/resin-servlet-api-4.0.27-r1.ebuild b/dev-java/resin-servlet-api/resin-servlet-api-4.0.27-r1.ebuild deleted file mode 100644 index 4e73714c0d20..000000000000 --- a/dev-java/resin-servlet-api/resin-servlet-api-4.0.27-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -JAVA_PKG_IUSE="source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Resin Servlet API 3.0/JSP API 2.1 implementation" -HOMEPAGE="https://caucho.com" -SRC_URI="https://caucho.com/download/resin-${PV}-src.tar.gz" - -LICENSE="GPL-2" -SLOT="3.1" -KEYWORDS="~amd64 ~ppc64 ~x86" - -DEPEND=">=virtual/jdk-1.8:*" -RDEPEND=">=virtual/jre-1.8:*" - -S="${WORKDIR}/resin-${PV}" - -src_prepare() { - default - cd "${S}" - rm -f modules/ext/*.jar project-jars/*.jar webapp-jars/*.jar - java-ant_bsfix_files build-common.xml || die -} - -EANT_BUILD_TARGET="servlet16" -EANT_DOC_TARGET="" - -src_install() { - java-pkg_newjar "modules/servlet16/dist/servlet-16.jar" - use source && java-pkg_dosrc "${S}"/modules/servlet16/src/* - - dosym "${PN}.jar" "/usr/share/${PN}-${SLOT}/lib/servlet-api.jar" - java-pkg_regjar "${D}/usr/share/${PN}-${SLOT}/lib/servlet-api.jar" - dosym "${PN}.jar" "/usr/share/${PN}-${SLOT}/lib/jsp-api.jar" - java-pkg_regjar "${D}/usr/share/${PN}-${SLOT}/lib/jsp-api.jar" -}