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 1C08F158090 for ; Sat, 28 Sep 2024 14:03:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68910E2A67; Sat, 28 Sep 2024 14:03:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 4EECAE2A67 for ; Sat, 28 Sep 2024 14:03:31 +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 638ED34308A for ; Sat, 28 Sep 2024 14:03:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 033AE1897 for ; Sat, 28 Sep 2024 14:03:29 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1727532198.e248df9e46b95bd3a5c369a27c00be10f4b86633.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/xalan/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/xalan/xalan-2.7.3-r1.ebuild X-VCS-Directories: dev-java/xalan/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: e248df9e46b95bd3a5c369a27c00be10f4b86633 X-VCS-Branch: master Date: Sat, 28 Sep 2024 14:03:29 +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: 5b2435fc-34bb-4b0e-91a2-ef10ca1d0a0e X-Archives-Hash: cd12f41ab29aa083b9711dadbbe48086 commit: e248df9e46b95bd3a5c369a27c00be10f4b86633 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sat Sep 28 12:56:02 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Sep 28 14:03:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e248df9e dev-java/xalan: drop 2.7.3-r1 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Arthur Zamarin gentoo.org> dev-java/xalan/xalan-2.7.3-r1.ebuild | 45 ------------------------------------ 1 file changed, 45 deletions(-) diff --git a/dev-java/xalan/xalan-2.7.3-r1.ebuild b/dev-java/xalan/xalan-2.7.3-r1.ebuild deleted file mode 100644 index c49a110bfdde..000000000000 --- a/dev-java/xalan/xalan-2.7.3-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -JAVA_PKG_IUSE="doc source" -MAVEN_ID="xalan:xalan:2.7.3" - -inherit java-pkg-2 java-pkg-simple verify-sig - -DESCRIPTION="Transforming XML documents into HTML, text, or other XML document types" -HOMEPAGE="https://xalan.apache.org/" -SRC_URI="mirror://apache/xalan/xalan-j/source/xalan-j_${PV//./_}-src.tar.gz - verify-sig? ( https://downloads.apache.org/xalan/xalan-j/source/xalan-j_${PV//./_}-src.tar.gz.asc )" - -S="${WORKDIR}/xalan-j_${PV//./_}" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" - -CP_DEPEND=" - dev-java/bcel:0 - dev-java/javacup:0 - ~dev-java/xalan-serializer-${PV}:${SLOT} - dev-java/xerces:2 -" - -DEPEND="${CP_DEPEND} - >=virtual/jdk-1.8:*" - -RDEPEND="${CP_DEPEND} - >=virtual/jre-1.8:*" - -BDEPEND="verify-sig? ( sec-keys/openpgp-keys-apache-xalan-j )" -VERIFY_SIG_OPENPGP_KEY_PATH="/usr/share/openpgp-keys/xalan-j.apache.org.asc" - -JAVA_MAIN_CLASS="org.apache.xalan.xslt.Process" -JAVA_SRC_DIR="src" - -src_prepare() { - java-pkg-2_src_prepare - # serializer is packaged separately - rm -r src/org/apache/xml/serializer || die "cannot remove serializer" -}