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 E248A15800F for ; Sun, 19 Feb 2023 09:29:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CD48E07A5; Sun, 19 Feb 2023 09:29:44 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 009EAE07A5 for ; Sun, 19 Feb 2023 09:29:43 +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 37CAE340ED7 for ; Sun, 19 Feb 2023 09:29:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ECC4C85C for ; Sun, 19 Feb 2023 09:29:40 +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: <1676798972.b0d3ce4f8039d8742422444b9550d2da68d6ee55.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-native/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/tomcat-native/tomcat-native-2.0.3-r1.ebuild dev-java/tomcat-native/tomcat-native-2.0.3.ebuild X-VCS-Directories: dev-java/tomcat-native/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: b0d3ce4f8039d8742422444b9550d2da68d6ee55 X-VCS-Branch: master Date: Sun, 19 Feb 2023 09:29:40 +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: 452acda6-8d35-433e-9157-a2d0ddb801e7 X-Archives-Hash: 7f6662d906ab71c9fc791bf047b9bc19 commit: b0d3ce4f8039d8742422444b9550d2da68d6ee55 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sun Feb 19 09:03:09 2023 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sun Feb 19 09:29:32 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0d3ce4f dev-java/tomcat-native: fix broken symlink Closes: https://bugs.gentoo.org/895352 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/29658 Signed-off-by: Miroslav Šulc gentoo.org> .../{tomcat-native-2.0.3.ebuild => tomcat-native-2.0.3-r1.ebuild} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dev-java/tomcat-native/tomcat-native-2.0.3.ebuild b/dev-java/tomcat-native/tomcat-native-2.0.3-r1.ebuild similarity index 97% rename from dev-java/tomcat-native/tomcat-native-2.0.3.ebuild rename to dev-java/tomcat-native/tomcat-native-2.0.3-r1.ebuild index c9cfba053ed8..e5d555c68e08 100644 --- a/dev-java/tomcat-native/tomcat-native-2.0.3.ebuild +++ b/dev-java/tomcat-native/tomcat-native-2.0.3-r1.ebuild @@ -35,7 +35,6 @@ VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/tomcat-connectors.a JAVA_RESOURCE_DIRS="../resources" JAVA_SRC_DIR="../java" JAVA_TEST_GENTOO_CLASSPATH="junit-4" -JAVA_TEST_RESOURCE_DIRS=".libs" JAVA_TEST_SRC_DIR="../test" PATCHES=( @@ -78,7 +77,7 @@ src_test() { src_install() { java-pkg-simple_src_install - java-pkg_doso .libs/*.so + java-pkg_doso .libs/*.so* dodoc -r ../docs ! use static-libs && find "${D}" -name '*.la' -delete || die }