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 3A3581581A7 for ; Wed, 5 Jun 2024 12:48:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9D33E2C63; Wed, 5 Jun 2024 12:48:43 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C26CBE2C63 for ; Wed, 5 Jun 2024 12:48: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 7D3C6341B52 for ; Wed, 5 Jun 2024 12:48:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B8E6A1C83 for ; Wed, 5 Jun 2024 12:48:39 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1717564286.51811b92e3a4603bae2522e3c340cb122978739c.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-fs/dwarfs/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-fs/dwarfs/dwarfs-0.9.10-r1.ebuild sys-fs/dwarfs/dwarfs-0.9.10.ebuild X-VCS-Directories: sys-fs/dwarfs/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 51811b92e3a4603bae2522e3c340cb122978739c X-VCS-Branch: master Date: Wed, 5 Jun 2024 12:48:39 +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: e59c4794-ef16-450c-8fdf-08fab7808aba X-Archives-Hash: 88eac9484766ed3eb8f4fc88b0dc745d commit: 51811b92e3a4603bae2522e3c340cb122978739c Author: Denis Reva gmail com> AuthorDate: Wed Jun 5 05:11:12 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Jun 5 05:11:26 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=51811b92 sys-fs/dwarfs: Build the man page unconditionally https://github.com/gentoo/guru/commit/5b57fe071132b4d4fb2212d7046107057ac411ec#r14266 9428 Signed-off-by: Denis Reva gmail.com> sys-fs/dwarfs/{dwarfs-0.9.10.ebuild => dwarfs-0.9.10-r1.ebuild} | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sys-fs/dwarfs/dwarfs-0.9.10.ebuild b/sys-fs/dwarfs/dwarfs-0.9.10-r1.ebuild similarity index 94% rename from sys-fs/dwarfs/dwarfs-0.9.10.ebuild rename to sys-fs/dwarfs/dwarfs-0.9.10-r1.ebuild index 42bdd10ad..f95818f5e 100644 --- a/sys-fs/dwarfs/dwarfs-0.9.10.ebuild +++ b/sys-fs/dwarfs/dwarfs-0.9.10-r1.ebuild @@ -16,7 +16,8 @@ S="${WORKDIR}/dwarfs-${PV}" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" -IUSE="+jemalloc test man" #Tests is broken at this moment +IUSE="+jemalloc test" +#Tests are expected to be partially broken sometimes # See https://github.com/mhx/dwarfs/issues/194 RESTRICT="!test? ( test )" @@ -55,7 +56,7 @@ BDEPEND=" sys-devel/bison sys-devel/flex virtual/pkgconfig - man? ( app-text/ronn-ng ) + app-text/ronn-ng test? ( dev-cpp/gtest ) $(python_gen_any_dep 'dev-python/mistletoe[${PYTHON_USEDEP}]') " @@ -97,7 +98,8 @@ src_configure() { mycmakeargs=( -DUSE_JEMALLOC=$(usex jemalloc ON OFF) -DWITH_TESTS=$(usex test ON OFF) - -DWITH_MAN_PAGES=$(usex man ON OFF) + -DWITH_MAN_PAGES=ON + # https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0305 -DPREFER_SYSTEM_ZSTD=ON -DPREFER_SYSTEM_XXHASH=ON -DPREFER_SYSTEM_GTEST=ON