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 D3B2D1581FB for ; Thu, 29 Aug 2024 14:03:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A753EE29E4; Thu, 29 Aug 2024 14:03:53 +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 882FEE29E4 for ; Thu, 29 Aug 2024 14:03:53 +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 BE499340754 for ; Thu, 29 Aug 2024 14:03:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23AEF1F24 for ; Thu, 29 Aug 2024 14:03:51 +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: <1724940205.7313377be5d6d478a32b6c5e877e686016b7a188.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-gap/digraphs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-gap/digraphs/digraphs-1.7.1-r1.ebuild dev-gap/digraphs/digraphs-1.7.1.ebuild X-VCS-Directories: dev-gap/digraphs/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 7313377be5d6d478a32b6c5e877e686016b7a188 X-VCS-Branch: master Date: Thu, 29 Aug 2024 14:03:51 +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: 1a739a41-8db1-447a-8347-926fff8fb5fd X-Archives-Hash: 2825d76f2b4327a95276d740ff768abd commit: 7313377be5d6d478a32b6c5e877e686016b7a188 Author: Michael Orlitzky gentoo org> AuthorDate: Thu Aug 29 11:31:48 2024 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Thu Aug 29 14:03:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7313377b dev-gap/digraphs: add missing test dependency Signed-off-by: Michael Orlitzky gentoo.org> .../{digraphs-1.7.1.ebuild => digraphs-1.7.1-r1.ebuild} | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dev-gap/digraphs/digraphs-1.7.1.ebuild b/dev-gap/digraphs/digraphs-1.7.1-r1.ebuild similarity index 72% rename from dev-gap/digraphs/digraphs-1.7.1.ebuild rename to dev-gap/digraphs/digraphs-1.7.1-r1.ebuild index d41ad562ddb5..2c7dd0866e1e 100644 --- a/dev-gap/digraphs/digraphs-1.7.1.ebuild +++ b/dev-gap/digraphs/digraphs-1.7.1-r1.ebuild @@ -20,6 +20,16 @@ RDEPEND="${DEPEND} dev-gap/orb dev-gap/datastructures" +# There are a few tests that will fail without a PDF viewer installed. +# Having xdg-open is good enough, and light weight, so it goes first. +BDEPEND="test? ( || ( + x11-misc/xdg-utils + app-text/gv + app-text/xpdf + app-text/evince + kde-apps/okular +) )" + DOCS=( CHANGELOG.md README.md ) GAP_PKG_EXTRA_INSTALL=( data notebooks )