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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2497215808D for ; Wed, 20 Apr 2022 07:14:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CEF1E0864; Wed, 20 Apr 2022 07:14:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 8F65EE0864 for ; Wed, 20 Apr 2022 07:14:20 +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 1D568341542 for ; Wed, 20 Apr 2022 07:14:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71F48177 for ; Wed, 20 Apr 2022 07:14:16 +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: <1650438704.4edf114d54e41143aaef05be9546d813cc0b4b5d.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/fontbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/fontbox/fontbox-1.7.1-r2.ebuild X-VCS-Directories: dev-java/fontbox/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 4edf114d54e41143aaef05be9546d813cc0b4b5d X-VCS-Branch: master Date: Wed, 20 Apr 2022 07:14:16 +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: 0c032b50-eb08-46bd-8e69-521416b02bba X-Archives-Hash: 951b25625961673f693d6079cf8c0729 commit: 4edf114d54e41143aaef05be9546d813cc0b4b5d Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Tue Apr 19 07:42:00 2022 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Wed Apr 20 07:11:44 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4edf114d dev-java/fontbox: skip test classes without tests Closes: https://bugs.gentoo.org/803503 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/25100 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/fontbox/fontbox-1.7.1-r2.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev-java/fontbox/fontbox-1.7.1-r2.ebuild b/dev-java/fontbox/fontbox-1.7.1-r2.ebuild index 0f32b29e1928..6125efbc8ddb 100644 --- a/dev-java/fontbox/fontbox-1.7.1-r2.ebuild +++ b/dev-java/fontbox/fontbox-1.7.1-r2.ebuild @@ -42,6 +42,14 @@ src_prepare() { } src_test() { + # junit.framework.AssertionFailedError: + # No tests found in org.apache.fontbox.cff.Type1CharStringTest + rm src/test/java/org/apache/fontbox/cff/Type1CharStringTest.java || die + + # junit.framework.AssertionFailedError: + # No tests found in org.apache.fontbox.cff.Type1FontUtilTest + rm src/test/java/org/apache/fontbox/cff/Type1FontUtilTest.java || die + java-pkg-2_src_test }