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 90BC31580FD for ; Sat, 21 Dec 2024 01:04:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7329E08B1; Sat, 21 Dec 2024 01:04:12 +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 30461E08B1 for ; Sat, 21 Dec 2024 01:04:11 +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 4320A335DCD for ; Sat, 21 Dec 2024 01:04:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 715F1EB9 for ; Sat, 21 Dec 2024 01:04:08 +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: <1734742947.318cef1e679d0546067b91e95f9af4c1b4f4e411.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-r1.ebuild X-VCS-Directories: dev-libs/glib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 318cef1e679d0546067b91e95f9af4c1b4f4e411 X-VCS-Branch: master Date: Sat, 21 Dec 2024 01:04:08 +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: 2d5cd8ba-c89c-41cf-a302-0b1e024a0603 X-Archives-Hash: dd940b0cc67b42ae53d9ca7d733ccf4d commit: 318cef1e679d0546067b91e95f9af4c1b4f4e411 Author: Sam James gentoo org> AuthorDate: Sat Dec 21 01:01:55 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 21 01:02:27 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=318cef1e dev-libs/glib: don't try to patch non-existent sources w/ USE=-introspection Closes: https://bugs.gentoo.org/946725 Signed-off-by: Sam James gentoo.org> dev-libs/glib/glib-2.80.5-r1.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-libs/glib/glib-2.80.5-r1.ebuild b/dev-libs/glib/glib-2.80.5-r1.ebuild index 6e54c9da6114..66d75184be4f 100644 --- a/dev-libs/glib/glib-2.80.5-r1.ebuild +++ b/dev-libs/glib/glib-2.80.5-r1.ebuild @@ -191,12 +191,12 @@ src_prepare() { # Link the glib source to the introspection subproject directory so it can be built there first if use introspection ; then ln -s "${S}" "${INTROSPECTION_SOURCE_DIR}/subprojects/glib" - fi - # bug #946578 - cd "${INTROSPECTION_SOURCE_DIR}" || die - eapply "${FILESDIR}"/glib-2.80.5-gobject-introspection-1.80.patch - cd "${S}" || die + # bug #946578 + cd "${INTROSPECTION_SOURCE_DIR}" || die + eapply "${FILESDIR}"/glib-2.80.5-gobject-introspection-1.80.patch + cd "${S}" || die + fi default gnome2_environment_reset