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 DF0E3158089 for ; Sat, 11 Nov 2023 16:22:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C41662BC029; Sat, 11 Nov 2023 16:22:41 +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 9EBF42BC029 for ; Sat, 11 Nov 2023 16:22:41 +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 87545335D54 for ; Sat, 11 Nov 2023 16:22:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3124D5E for ; Sat, 11 Nov 2023 16:22:38 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1699719702.b38f4eb8d5464f99182d356e4941bea648ec5b3f.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/onnx/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/onnx/onnx-1.14.0-r2.ebuild X-VCS-Directories: sci-libs/onnx/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: b38f4eb8d5464f99182d356e4941bea648ec5b3f X-VCS-Branch: master Date: Sat, 11 Nov 2023 16:22:38 +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: b4362449-365e-430b-9975-d92ce1e7c441 X-Archives-Hash: ada1a214801c5cb26b9f9e10dc03faf5 commit: b38f4eb8d5464f99182d356e4941bea648ec5b3f Author: Alfredo Tupone gentoo org> AuthorDate: Sat Nov 11 16:20:03 2023 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sat Nov 11 16:21:42 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b38f4eb8 sci-libs/onnx: add ONNX_USE_LITE_PROTO=ON Closes: https://bugs.gentoo.org/915843 Signed-off-by: Alfredo Tupone gentoo.org> sci-libs/onnx/onnx-1.14.0-r2.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sci-libs/onnx/onnx-1.14.0-r2.ebuild b/sci-libs/onnx/onnx-1.14.0-r2.ebuild index 7fcd28a9355b..f3f43c3fddd3 100644 --- a/sci-libs/onnx/onnx-1.14.0-r2.ebuild +++ b/sci-libs/onnx/onnx-1.14.0-r2.ebuild @@ -41,8 +41,9 @@ src_prepare() { } src_configure() { - local mycmakeargs=( + mycmakeargs=( -DONNX_USE_PROTOBUF_SHARED_LIBS=ON + -DONNX_USE_LITE_PROTO=ON ) cmake_src_configure use python && distutils-r1_src_configure @@ -50,7 +51,7 @@ src_configure() { src_compile() { cmake_src_compile - use python && distutils-r1_src_compile + use python && CMAKE_ARGS="${mycmakeargs[@]}" distutils-r1_src_compile } src_install() {