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 E45E31581C1 for ; Wed, 10 Jul 2024 05:26:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 366452BC03A; Wed, 10 Jul 2024 05:26:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 E5CE92BC03A for ; Wed, 10 Jul 2024 05:26:21 +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 1D70B335DCC for ; Wed, 10 Jul 2024 05:26:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C4231E0C for ; Wed, 10 Jul 2024 05:26:19 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1720589053.132fc13c631bafa1c4e867e5d6099cb4d69d86f9.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/hugo/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/hugo/hugo-0.128.2.ebuild X-VCS-Directories: www-apps/hugo/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 132fc13c631bafa1c4e867e5d6099cb4d69d86f9 X-VCS-Branch: master Date: Wed, 10 Jul 2024 05:26:19 +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: 3e47e0f4-864c-4c36-88d8-c1104d3187a9 X-Archives-Hash: 1319a228cc20b09de4d1ae9b751d8049 commit: 132fc13c631bafa1c4e867e5d6099cb4d69d86f9 Author: Joonas Niilola gentoo org> AuthorDate: Wed Jul 10 05:24:13 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Jul 10 05:24:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=132fc13c www-apps/hugo: drop virtual/pandoc as a hard test dependency - currently it skips one test without pandoc dep, but it's a complicated dep to keep due to pandoc-bin not being keyworded on many arches and pandoc pulling tons of haskell stuff. Signed-off-by: Joonas Niilola gentoo.org> www-apps/hugo/hugo-0.128.2.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/www-apps/hugo/hugo-0.128.2.ebuild b/www-apps/hugo/hugo-0.128.2.ebuild index b3f3114af58e..d49c59a1bdb9 100644 --- a/www-apps/hugo/hugo-0.128.2.ebuild +++ b/www-apps/hugo/hugo-0.128.2.ebuild @@ -25,7 +25,6 @@ BDEPEND=" test? ( dev-python/docutils dev-ruby/asciidoctor - virtual/pandoc ) " RDEPEND=" @@ -79,6 +78,10 @@ src_compile() { } src_test() { + if ! has_version -b virtual/pandoc ; then + elog "You're missing virtual/pandoc - some tests will be skipped." + fi + ego test "./..." ${MY_BUILD_FLAGS} }