From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 037441582EF for ; Wed, 19 Feb 2025 18:26:24 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id DB3603430D9 for ; Wed, 19 Feb 2025 18:26:23 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id D6E301102A2; Wed, 19 Feb 2025 18:26:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id CE2FF1102A2 for ; Wed, 19 Feb 2025 18:26:22 +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 7FDB23430DB for ; Wed, 19 Feb 2025 18:26:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 124F326C6 for ; Wed, 19 Feb 2025 18:26:21 +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: <1739989529.abafcded6b538a32c608eeeae45b541a42f6e671.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/gimp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/gimp/gimp-3.0.0_rc1.ebuild media-gfx/gimp/gimp-3.0.0_rc2.ebuild media-gfx/gimp/gimp-9999.ebuild X-VCS-Directories: media-gfx/gimp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: abafcded6b538a32c608eeeae45b541a42f6e671 X-VCS-Branch: master Date: Wed, 19 Feb 2025 18:26:21 +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: 2ab4699c-c6f2-408c-9213-9d23dd75443d X-Archives-Hash: cc9342a646c885d44577fecf6a339ffa commit: abafcded6b538a32c608eeeae45b541a42f6e671 Author: Sam James gentoo org> AuthorDate: Wed Feb 19 18:25:29 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed Feb 19 18:25:29 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abafcded media-gfx/gimp: forward-port -std=gnu17 to 3.x too In d3d83c6a06a57241395a389970cf2fb8495a36ba, I said I wasn't going to do this, but it hasn't been merged upstream yet still, so whatever. Let's avoid an unnecessary build failure for people. Closes: https://bugs.gentoo.org/944284 Signed-off-by: Sam James gentoo.org> media-gfx/gimp/gimp-3.0.0_rc1.ebuild | 7 +++++-- media-gfx/gimp/gimp-3.0.0_rc2.ebuild | 7 +++++-- media-gfx/gimp/gimp-9999.ebuild | 5 ++++- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/media-gfx/gimp/gimp-3.0.0_rc1.ebuild b/media-gfx/gimp/gimp-3.0.0_rc1.ebuild index 00639d92cbe4..88005560e5f9 100644 --- a/media-gfx/gimp/gimp-3.0.0_rc1.ebuild +++ b/media-gfx/gimp/gimp-3.0.0_rc1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -7,7 +7,7 @@ LUA_COMPAT=( luajit ) PYTHON_COMPAT=( python3_{10..13} ) VALA_USE_DEPEND=vapigen -inherit lua-single meson python-single-r1 toolchain-funcs vala xdg +inherit lua-single flag-o-matic meson python-single-r1 toolchain-funcs vala xdg DESCRIPTION="GNU Image Manipulation Program" HOMEPAGE="https://www.gimp.org/" @@ -162,6 +162,9 @@ _adjust_sandbox() { src_configure() { _adjust_sandbox + # bug #944284 (https://gitlab.gnome.org/GNOME/gimp/-/issues/12843) + append-cflags -std=gnu17 + use vala && vala_setup local emesonargs=( diff --git a/media-gfx/gimp/gimp-3.0.0_rc2.ebuild b/media-gfx/gimp/gimp-3.0.0_rc2.ebuild index 1f159711d6dd..4fb8488213ef 100644 --- a/media-gfx/gimp/gimp-3.0.0_rc2.ebuild +++ b/media-gfx/gimp/gimp-3.0.0_rc2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -7,7 +7,7 @@ LUA_COMPAT=( luajit ) PYTHON_COMPAT=( python3_{10..13} ) VALA_USE_DEPEND=vapigen -inherit lua-single meson python-single-r1 toolchain-funcs vala xdg +inherit lua-single flag-o-matic meson python-single-r1 toolchain-funcs vala xdg DESCRIPTION="GNU Image Manipulation Program" HOMEPAGE="https://www.gimp.org/" @@ -162,6 +162,9 @@ _adjust_sandbox() { src_configure() { _adjust_sandbox + # bug #944284 (https://gitlab.gnome.org/GNOME/gimp/-/issues/12843) + append-cflags -std=gnu17 + use vala && vala_setup local emesonargs=( diff --git a/media-gfx/gimp/gimp-9999.ebuild b/media-gfx/gimp/gimp-9999.ebuild index 8c2e550fc140..31b624a374d0 100644 --- a/media-gfx/gimp/gimp-9999.ebuild +++ b/media-gfx/gimp/gimp-9999.ebuild @@ -7,7 +7,7 @@ LUA_COMPAT=( luajit ) PYTHON_COMPAT=( python3_{10..13} ) VALA_USE_DEPEND=vapigen -inherit git-r3 lua-single meson python-single-r1 toolchain-funcs vala xdg +inherit git-r3 lua-single flag-o-matic meson python-single-r1 toolchain-funcs vala xdg DESCRIPTION="GNU Image Manipulation Program" HOMEPAGE="https://www.gimp.org/" @@ -164,6 +164,9 @@ _adjust_sandbox() { src_configure() { _adjust_sandbox + # bug #944284 (https://gitlab.gnome.org/GNOME/gimp/-/issues/12843) + append-cflags -std=gnu17 + use vala && vala_setup local emesonargs=(