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 0611A158043 for ; Tue, 5 Mar 2024 04:48:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F266EE2A2A; Tue, 5 Mar 2024 04:48:51 +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 pigeon.gentoo.org (Postfix) with ESMTPS id D79D6E2A2A for ; Tue, 5 Mar 2024 04:48:51 +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 1A3A734302A for ; Tue, 5 Mar 2024 04:48:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B53014F0 for ; Tue, 5 Mar 2024 04:48:48 +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: <1709614070.51f60d956e142d90744bc8d99e99f81ee98221bf.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/xdg-desktop-portal-gnome/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-45.1-r1.ebuild X-VCS-Directories: sys-apps/xdg-desktop-portal-gnome/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 51f60d956e142d90744bc8d99e99f81ee98221bf X-VCS-Branch: master Date: Tue, 5 Mar 2024 04:48:48 +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: cfb2353c-e34c-430b-9be0-78e8f3e95667 X-Archives-Hash: 0083066bcfd372f4629b8a424c121353 commit: 51f60d956e142d90744bc8d99e99f81ee98221bf Author: Eli Schwartz gmail com> AuthorDate: Tue Mar 5 01:26:33 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 5 04:47:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f60d95 sys-apps/xdg-desktop-portal-gnome: mark LTO-unsafe, strict-aliasing unsafe Closes: https://bugs.gentoo.org/919852 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> .../xdg-desktop-portal-gnome-45.1-r1.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-45.1-r1.ebuild b/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-45.1-r1.ebuild index 01563bab5406..f263b44b8b24 100644 --- a/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-45.1-r1.ebuild +++ b/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-45.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit gnome.org meson systemd xdg +inherit flag-o-matic gnome.org meson systemd xdg DESCRIPTION="Backend implementation for xdg-desktop-portal using GNOME" HOMEPAGE="https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome" @@ -41,6 +41,15 @@ PATCHES=( ) src_configure() { + # -Werror=strict-aliasing + # https://bugs.gentoo.org/919852 + # https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome/-/issues/113 + # https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome/-/merge_requests/138 + # + # Recheck this after next version bump! + append-flags -fno-strict-aliasing + filter-lto + local emesonargs=( -Dsystemduserunitdir="$(systemd_get_userunitdir)" )