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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 578811581F3 for ; Tue, 3 Dec 2024 08:02:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E581E07EA; Tue, 3 Dec 2024 08:02:08 +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 80744E07EA for ; Tue, 3 Dec 2024 08:02:08 +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 7F378340906 for ; Tue, 3 Dec 2024 08:02:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC28513F5 for ; Tue, 3 Dec 2024 08:02:05 +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: <1733212895.ca803bef78ff27b3f3fa6a92097bf72c9e707da2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/glib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/glib/glib-2.80.5.ebuild dev-libs/glib/glib-2.82.2.ebuild X-VCS-Directories: dev-libs/glib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ca803bef78ff27b3f3fa6a92097bf72c9e707da2 X-VCS-Branch: master Date: Tue, 3 Dec 2024 08:02:05 +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: 2b472a4a-7c90-47ea-b75d-2c8af18393e6 X-Archives-Hash: eba389c056cb5ef226a4fe2ab2900003 commit: ca803bef78ff27b3f3fa6a92097bf72c9e707da2 Author: Sam James gentoo org> AuthorDate: Tue Dec 3 07:53:38 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Dec 3 08:01:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca803bef dev-libs/glib: build minimal glib for bootstrapping introspection Pass various options down to the glib subproject for the bootstrapping gobject-introspection part. This fixes an automagic build failure with DTrace at least as well as speeding up the build a bit. But overall, it should make it more robust as it's affected by fewer components. Signed-off-by: Sam James gentoo.org> dev-libs/glib/glib-2.80.5.ebuild | 17 +++++++++++++++++ dev-libs/glib/glib-2.82.2.ebuild | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/dev-libs/glib/glib-2.80.5.ebuild b/dev-libs/glib/glib-2.80.5.ebuild index 22a8e5f6665b..89ca28c092cd 100644 --- a/dev-libs/glib/glib-2.80.5.ebuild +++ b/dev-libs/glib/glib-2.80.5.ebuild @@ -224,6 +224,23 @@ multilib_src_configure() { --force-fallback-for=glib # Tell meson to make paths in pkgconfig files relative, because we arent doing an actual install -Dpkgconfig.relocatable=true + + # We want as minimal a build as possible here to speed things up + # and reduce the risk of failures. + -Dglib:selinux=disabled + -Dglib:xattr=false + -Dglib:libmount=disabled + -Dglib:man-pages=disabled + -Dglib:dtrace=false + -Dglib:systemtap=false + -Dglib:sysprof=disabled + -Dglib:documentation=false + -Dglib:tests=false + -Dglib:installed_tests=false + -Dglib:nls=disabled + -Dglib:oss_fuzz=disabled + -Dglib:libelf=disabled + -Dglib:multiarch=false ) ORIG_SOURCE_DIR=${EMESON_SOURCE} diff --git a/dev-libs/glib/glib-2.82.2.ebuild b/dev-libs/glib/glib-2.82.2.ebuild index 0f09238ad661..a088dd47af25 100644 --- a/dev-libs/glib/glib-2.82.2.ebuild +++ b/dev-libs/glib/glib-2.82.2.ebuild @@ -224,6 +224,23 @@ multilib_src_configure() { --force-fallback-for=glib # Tell meson to make paths in pkgconfig files relative, because we arent doing an actual install -Dpkgconfig.relocatable=true + + # We want as minimal a build as possible here to speed things up + # and reduce the risk of failures. + -Dglib:selinux=disabled + -Dglib:xattr=false + -Dglib:libmount=disabled + -Dglib:man-pages=disabled + -Dglib:dtrace=false + -Dglib:systemtap=false + -Dglib:sysprof=disabled + -Dglib:documentation=false + -Dglib:tests=false + -Dglib:installed_tests=false + -Dglib:nls=disabled + -Dglib:oss_fuzz=disabled + -Dglib:libelf=disabled + -Dglib:multiarch=false ) ORIG_SOURCE_DIR=${EMESON_SOURCE}