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 A5FAF15808C for ; Sun, 20 Feb 2022 21:10:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22C40E087A; Sun, 20 Feb 2022 21:10:23 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0663AE087A for ; Sun, 20 Feb 2022 21:10:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DB94E3438FE for ; Sun, 20 Feb 2022 21:10:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57DF62EB for ; Sun, 20 Feb 2022 21:10:20 +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: <1645391081.841a5415149d9f8472253c07aff7ca0c67a3f3ba.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/openvdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/openvdb/metadata.xml media-gfx/openvdb/openvdb-9.0.0-r2.ebuild X-VCS-Directories: media-gfx/openvdb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 841a5415149d9f8472253c07aff7ca0c67a3f3ba X-VCS-Branch: master Date: Sun, 20 Feb 2022 21:10:20 +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: 36fe8a6a-9f33-48e9-afe8-f5243ec25e57 X-Archives-Hash: 68398bac5562b329bb714be943b199ec commit: 841a5415149d9f8472253c07aff7ca0c67a3f3ba Author: Sebastian Parborg gmail com> AuthorDate: Thu Feb 17 17:34:24 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 20 21:04:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=841a5415 media-gfx/openvdb: Add abi9 flag Bump the "use abiX" useflags. Signed-off-by: Sebastian Parborg gmail.com> Signed-off-by: Sam James gentoo.org> media-gfx/openvdb/metadata.xml | 3 +++ media-gfx/openvdb/openvdb-9.0.0-r2.ebuild | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/media-gfx/openvdb/metadata.xml b/media-gfx/openvdb/metadata.xml index ac6d484a46d8..abb456e35583 100644 --- a/media-gfx/openvdb/metadata.xml +++ b/media-gfx/openvdb/metadata.xml @@ -36,6 +36,9 @@ Disables newer features to maintain compatibility with ABI8. + + Disables newer features to maintain compatibility with ABI9. + Build utility binaries diff --git a/media-gfx/openvdb/openvdb-9.0.0-r2.ebuild b/media-gfx/openvdb/openvdb-9.0.0-r2.ebuild index d50e1f5bab74..1c94b6577b39 100644 --- a/media-gfx/openvdb/openvdb-9.0.0-r2.ebuild +++ b/media-gfx/openvdb/openvdb-9.0.0-r2.ebuild @@ -14,12 +14,12 @@ SRC_URI="https://github.com/AcademySoftwareFoundation/${PN}/archive/v${PV}.tar.g LICENSE="MPL-2.0" SLOT="0/9" KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" -IUSE="cpu_flags_x86_avx cpu_flags_x86_sse4_2 +blosc doc +nanovdb numpy python static-libs test utils zlib abi6-compat abi7-compat +abi8-compat" +IUSE="cpu_flags_x86_avx cpu_flags_x86_sse4_2 +blosc doc +nanovdb numpy python static-libs test utils zlib abi6-compat abi7-compat abi8-compat +abi9-compat" RESTRICT="!test? ( test )" REQUIRED_USE=" numpy? ( python ) - ^^ ( abi6-compat abi7-compat abi8-compat ) + ^^ ( abi6-compat abi7-compat abi8-compat abi9-compat ) python? ( ${PYTHON_REQUIRED_USE} ) " RDEPEND=" @@ -83,6 +83,8 @@ src_configure() { version=7 elif use abi8-compat; then version=8 + elif use abi9-compat; then + version=9 else die "OpenVDB ABI version is not compatible" fi