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 B872E158090 for ; Thu, 19 May 2022 22:37:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD7ADE0919; Thu, 19 May 2022 22:37: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 B1FBAE0919 for ; Thu, 19 May 2022 22:37:57 +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 9B9763419EF for ; Thu, 19 May 2022 22:37:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E07F46A for ; Thu, 19 May 2022 22:37:53 +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: <1652999815.c7e2d5d7fbb1b1220a46d73c09f57f6d0a897eec.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/gdal/gdal-3.5.0-r4.ebuild X-VCS-Directories: sci-libs/gdal/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c7e2d5d7fbb1b1220a46d73c09f57f6d0a897eec X-VCS-Branch: master Date: Thu, 19 May 2022 22:37:53 +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: 3c42d8d4-ebdf-47ba-8330-bccf586a00ff X-Archives-Hash: fa1db3eb252e887908133e92c6032250 commit: c7e2d5d7fbb1b1220a46d73c09f57f6d0a897eec Author: Sam James gentoo org> AuthorDate: Thu May 19 22:36:55 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu May 19 22:36:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7e2d5d7 sci-libs/gdal: disable C# bindings There's no need for these AFAIK and leaving it as it is would be wrong anyway (as it automagically tries to use at least .NET SDK bits to download from internet. Not tested with mono though.) Closes: https://bugs.gentoo.org/845369 Signed-off-by: Sam James gentoo.org> sci-libs/gdal/gdal-3.5.0-r4.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sci-libs/gdal/gdal-3.5.0-r4.ebuild b/sci-libs/gdal/gdal-3.5.0-r4.ebuild index b526f8c5bfe6..7c586d305683 100644 --- a/sci-libs/gdal/gdal-3.5.0-r4.ebuild +++ b/sci-libs/gdal/gdal-3.5.0-r4.ebuild @@ -193,6 +193,8 @@ src_configure() { # Bindings -DBUILD_PYTHON_BINDINGS=$(usex python) -DBUILD_JAVA_BINDINGS=$(usex java) + # bug #845369 + -DBUILD_CSHARP_BINDINGS=OFF # Check work/gdal-3.5.0_build/CMakeCache.txt after configure # and https://github.com/OSGeo/gdal/blob/master/cmake/helpers/CheckCompilerMachineOption.cmake#L71