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 CF380158041 for ; Thu, 7 Mar 2024 23:51:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47465E29C0; Thu, 7 Mar 2024 23:51:52 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2F36FE29BF for ; Thu, 7 Mar 2024 23:51:52 +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 5B90B340C33 for ; Thu, 7 Mar 2024 23:51:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8F4314EF for ; Thu, 7 Mar 2024 23:51:49 +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: <1709855483.543b29a483d45bc5f7a48608ee40665a96ad1b12.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gucharmap/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/gucharmap/gucharmap-15.0.4.ebuild gnome-extra/gucharmap/gucharmap-15.1.1.ebuild gnome-extra/gucharmap/gucharmap-15.1.2.ebuild X-VCS-Directories: gnome-extra/gucharmap/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 543b29a483d45bc5f7a48608ee40665a96ad1b12 X-VCS-Branch: master Date: Thu, 7 Mar 2024 23:51:49 +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: 92eea7c0-3b98-4004-b90e-fb3293795098 X-Archives-Hash: 419aac0f3de797d91079b66eddf2ec9d commit: 543b29a483d45bc5f7a48608ee40665a96ad1b12 Author: Sam James gentoo org> AuthorDate: Thu Mar 7 23:51:23 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 7 23:51:23 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=543b29a4 gnome-extra/gucharmap: filter LTO Upstream don't support LTO & error out on it in meson.build. Closes: https://bugs.gentoo.org/926250 Signed-off-by: Sam James gentoo.org> gnome-extra/gucharmap/gucharmap-15.0.4.ebuild | 7 +++++-- gnome-extra/gucharmap/gucharmap-15.1.1.ebuild | 7 +++++-- gnome-extra/gucharmap/gucharmap-15.1.2.ebuild | 7 +++++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/gnome-extra/gucharmap/gucharmap-15.0.4.ebuild b/gnome-extra/gucharmap/gucharmap-15.0.4.ebuild index d5cda00d943f..b788ccd08f8a 100644 --- a/gnome-extra/gucharmap/gucharmap-15.0.4.ebuild +++ b/gnome-extra/gucharmap/gucharmap-15.0.4.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{9..11} ) -inherit gnome2-utils meson python-any-r1 vala xdg +inherit flag-o-matic gnome2-utils meson python-any-r1 vala xdg DESCRIPTION="Unicode character map viewer and library" HOMEPAGE="https://wiki.gnome.org/Apps/Gucharmap" @@ -50,6 +50,9 @@ src_prepare() { } src_configure() { + # Upstream don't support LTO & error out on it in meson.build (bug #926250) + filter-lto + local emesonargs=( -Dcharmap=true -Ddbg=false # in 14.0.1 all this does is pass -ggdb3 diff --git a/gnome-extra/gucharmap/gucharmap-15.1.1.ebuild b/gnome-extra/gucharmap/gucharmap-15.1.1.ebuild index 5eaba63f4112..74d609904765 100644 --- a/gnome-extra/gucharmap/gucharmap-15.1.1.ebuild +++ b/gnome-extra/gucharmap/gucharmap-15.1.1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -inherit gnome2-utils meson python-any-r1 vala xdg +inherit flag-o-matic gnome2-utils meson python-any-r1 vala xdg DESCRIPTION="Unicode character map viewer and library" HOMEPAGE="https://wiki.gnome.org/Apps/Gucharmap" @@ -52,6 +52,9 @@ src_prepare() { } src_configure() { + # Upstream don't support LTO & error out on it in meson.build (bug #926250) + filter-lto + local emesonargs=( -Dcharmap=true -Ddbg=false # in 14.0.1 all this does is pass -ggdb3 diff --git a/gnome-extra/gucharmap/gucharmap-15.1.2.ebuild b/gnome-extra/gucharmap/gucharmap-15.1.2.ebuild index 5eaba63f4112..74d609904765 100644 --- a/gnome-extra/gucharmap/gucharmap-15.1.2.ebuild +++ b/gnome-extra/gucharmap/gucharmap-15.1.2.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -inherit gnome2-utils meson python-any-r1 vala xdg +inherit flag-o-matic gnome2-utils meson python-any-r1 vala xdg DESCRIPTION="Unicode character map viewer and library" HOMEPAGE="https://wiki.gnome.org/Apps/Gucharmap" @@ -52,6 +52,9 @@ src_prepare() { } src_configure() { + # Upstream don't support LTO & error out on it in meson.build (bug #926250) + filter-lto + local emesonargs=( -Dcharmap=true -Ddbg=false # in 14.0.1 all this does is pass -ggdb3