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 6AA60158095 for ; Mon, 8 Aug 2022 13:11:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 846C3E09F1; Mon, 8 Aug 2022 13:11:55 +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 0424AE09F1 for ; Mon, 8 Aug 2022 13:11:54 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1CDB4340BF6 for ; Mon, 8 Aug 2022 13:11:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 640F1526 for ; Mon, 8 Aug 2022 13:11:52 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1659964233.e336408370516e14fd34bb4be23cf5528825e05b.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pari/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/pari/pari-2.13.4-r1.ebuild X-VCS-Directories: sci-mathematics/pari/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: e336408370516e14fd34bb4be23cf5528825e05b X-VCS-Branch: master Date: Mon, 8 Aug 2022 13:11:52 +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: aff36275-aa03-4474-b545-840443cfe350 X-Archives-Hash: da6a7d918e83ed7a5cb54c7303f73f9b commit: e336408370516e14fd34bb4be23cf5528825e05b Author: Michael Orlitzky gentoo org> AuthorDate: Mon Aug 8 13:09:34 2022 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Mon Aug 8 13:10:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3364083 sci-mathematics/pari: disable "help" tests in the absence of USE=doc. Closes: https://bugs.gentoo.org/864289 Signed-off-by: Michael Orlitzky gentoo.org> sci-mathematics/pari/pari-2.13.4-r1.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sci-mathematics/pari/pari-2.13.4-r1.ebuild b/sci-mathematics/pari/pari-2.13.4-r1.ebuild index 4a13d42f694f..a3404e9b1593 100644 --- a/sci-mathematics/pari/pari-2.13.4-r1.ebuild +++ b/sci-mathematics/pari/pari-2.13.4-r1.ebuild @@ -48,6 +48,15 @@ src_prepare() { -e "s:\$d = \$0:\$d = '${EPREFIX}/usr/share/doc/${PF}':" \ -e 's:"acroread":"xdg-open":' \ doc/gphelp.in || die "Failed to fix doc dir" + + # These tests fail when LaTeX is not installed (which we don't + # require without USE=doc), most likely due to output formatting + # issues but I haven't deleted my LaTeX installation to check. + # There's no real upstream support for enabling/disabling the LaTeX + # docs, so this is probably the correctest way to skip these tests. + if ! use doc; then + rm src/test/{in,32}/help || die + fi } src_configure() {