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 2679B15806E for ; Wed, 24 May 2023 01:38:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F07EE07E1; Wed, 24 May 2023 01:38:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 24AE3E07E1 for ; Wed, 24 May 2023 01:38:23 +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 2F351340DE5 for ; Wed, 24 May 2023 01:38:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6FD2DA78 for ; Wed, 24 May 2023 01:38:20 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1684892285.dfefe170ab11c31cb400742157676fd03ac87a6d.mattst88@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.76.2.ebuild dev-libs/glib/glib-2.76.3.ebuild X-VCS-Directories: dev-libs/glib/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: dfefe170ab11c31cb400742157676fd03ac87a6d X-VCS-Branch: master Date: Wed, 24 May 2023 01:38: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: b196d3f0-f6c8-4b8a-b034-e3a0af9bab11 X-Archives-Hash: fb5a921288adedc888aec2334315eb64 commit: dfefe170ab11c31cb400742157676fd03ac87a6d Author: Matt Turner gentoo org> AuthorDate: Wed May 24 01:36:19 2023 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed May 24 01:38:05 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfefe170 dev-libs/glib: Fix broken sed Added in commit 68ff644e7e8a ("dev-libs/glib-2.76.2: fix for Prefix, add keywords") Signed-off-by: Matt Turner gentoo.org> dev-libs/glib/glib-2.76.2.ebuild | 2 +- dev-libs/glib/glib-2.76.3.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-libs/glib/glib-2.76.2.ebuild b/dev-libs/glib/glib-2.76.2.ebuild index ce0eb4b28688..f8681add211d 100644 --- a/dev-libs/glib/glib-2.76.2.ebuild +++ b/dev-libs/glib/glib-2.76.2.ebuild @@ -153,7 +153,7 @@ src_prepare() { fi # disable native macOS integrations - sed -i -e '/glib_conf.set(.HAVE_\(CARBON\|COCOA\).)/s/true/false/' \ + sed -i -e '/glib_conf.set(.HAVE_\(CARBON\|COCOA\).,/s/true/false/' \ meson.build || die sed -i \ -e '/AvailabilityMacros.h/d' \ diff --git a/dev-libs/glib/glib-2.76.3.ebuild b/dev-libs/glib/glib-2.76.3.ebuild index 9d8f08d84627..567a483717ea 100644 --- a/dev-libs/glib/glib-2.76.3.ebuild +++ b/dev-libs/glib/glib-2.76.3.ebuild @@ -154,7 +154,7 @@ src_prepare() { fi # disable native macOS integrations - sed -i -e '/glib_conf.set(.HAVE_\(CARBON\|COCOA\).)/s/true/false/' \ + sed -i -e '/glib_conf.set(.HAVE_\(CARBON\|COCOA\).,/s/true/false/' \ meson.build || die sed -i \ -e '/AvailabilityMacros.h/d' \