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 5CD15158020 for ; Wed, 12 Oct 2022 23:10:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BFEEE095D; Wed, 12 Oct 2022 23:09:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 F3A44E0950 for ; Wed, 12 Oct 2022 23:09:56 +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 1EDD83412C8 for ; Wed, 12 Oct 2022 23:09:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C39EC62F for ; Wed, 12 Oct 2022 23:09:52 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1665615987.6b7393da42ee0482c5886b988257c9ceacd7ec9f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/vtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/vtk/metadata.xml sci-libs/vtk/vtk-9.1.0-r3.ebuild sci-libs/vtk/vtk-9.1.0-r4.ebuild X-VCS-Directories: sci-libs/vtk/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6b7393da42ee0482c5886b988257c9ceacd7ec9f X-VCS-Branch: master Date: Wed, 12 Oct 2022 23:09: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: c7d2a82f-351b-4476-b0b1-62ad54ea359c X-Archives-Hash: abc672caf25ab63f038360d381099637 commit: 6b7393da42ee0482c5886b988257c9ceacd7ec9f Author: Bernd Waibel posteo net> AuthorDate: Tue Oct 4 20:57:04 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 12 23:06:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b7393da sci-libs/vtk: fix build on musl - Add logging USE flag to be able to disable it for musl - Re-keyword temporarily dropped arm64 Bug: https://bugs.gentoo.org/873601 Signed-off-by: Bernd Waibel posteo.net> Closes: https://github.com/gentoo/gentoo/pull/27626 Signed-off-by: Sam James gentoo.org> sci-libs/vtk/metadata.xml | 1 + sci-libs/vtk/{vtk-9.1.0-r3.ebuild => vtk-9.1.0-r4.ebuild} | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/sci-libs/vtk/metadata.xml b/sci-libs/vtk/metadata.xml index b4654dc0d664..104d25f0b118 100644 --- a/sci-libs/vtk/metadata.xml +++ b/sci-libs/vtk/metadata.xml @@ -21,6 +21,7 @@ Building Imaging modules Support for json formatted data Build kits in addition to modules + Enable the loguru logging module Offscreen rendering through OSMesa Use pegtl to build parsers Use Qt6 packages instead of Qt5 diff --git a/sci-libs/vtk/vtk-9.1.0-r3.ebuild b/sci-libs/vtk/vtk-9.1.0-r4.ebuild similarity index 98% rename from sci-libs/vtk/vtk-9.1.0-r3.ebuild rename to sci-libs/vtk/vtk-9.1.0-r4.ebuild index 7b1132e4e548..f6730684bc66 100644 --- a/sci-libs/vtk/vtk-9.1.0-r3.ebuild +++ b/sci-libs/vtk/vtk-9.1.0-r4.ebuild @@ -37,13 +37,12 @@ S="${WORKDIR}/VTK-${PV}" LICENSE="BSD LGPL-2" SLOT="0/${MY_PV}" -# ~arm64 #864791 -KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" # TODO: Like to simplifiy these. Mostly the flags related to Groups, plus # maybe some flags related to Kits and a few other needed flags. IUSE="all-modules +boost cuda debug doc examples +ffmpeg +gdal imaging java - mpi mysql odbc openmp postgres python qt5 qt6 +rendering tbb test +threads - tk video_cards_nvidia views web" + logging mpi mysql odbc openmp postgres python qt5 qt6 +rendering tbb test + +threads tk video_cards_nvidia views web" RESTRICT="!test? ( test )" @@ -294,6 +293,7 @@ src_configure() { -DVTK_BUILD_EXAMPLES=$(usex examples ON OFF) -DVTK_ENABLE_KITS=ON + -DVTK_ENABLE_LOGGING=$(usex logging ON OFF) # defaults to ON: USE flag for this? -DVTK_ENABLE_REMOTE_MODULES=OFF