From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1605326-garchives=archives.gentoo.org@lists.gentoo.org> 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 EED8C158041 for <garchives@archives.gentoo.org>; Thu, 29 Feb 2024 02:44:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE255E2A1D; Thu, 29 Feb 2024 02:44:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 D5505E2A1D for <gentoo-commits@lists.gentoo.org>; Thu, 29 Feb 2024 02:44:01 +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 16F0A343030 for <gentoo-commits@lists.gentoo.org>; Thu, 29 Feb 2024 02:44:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D48714E7 for <gentoo-commits@lists.gentoo.org>; Thu, 29 Feb 2024 02:43:59 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1709174615.c5ebd5b8de96b966562aeed9cc6d899d8c43c08e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/inkscape/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/inkscape/inkscape-1.2.2-r4.ebuild media-gfx/inkscape/inkscape-1.3.2.ebuild media-gfx/inkscape/inkscape-9999.ebuild X-VCS-Directories: media-gfx/inkscape/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c5ebd5b8de96b966562aeed9cc6d899d8c43c08e X-VCS-Branch: master Date: Thu, 29 Feb 2024 02:43:59 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cb258de3-ce3d-41b8-b2fa-a00569e2d2c2 X-Archives-Hash: 7eadcda7e94aba44016234425d1dea7e commit: c5ebd5b8de96b966562aeed9cc6d899d8c43c08e Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Feb 29 02:43:35 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Feb 29 02:43:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5ebd5b8 media-gfx/inkscape: filter LTO (ODR) Bug: https://gitlab.com/inkscape/lib2geom/-/issues/71 Closes: https://bugs.gentoo.org/859628 Signed-off-by: Sam James <sam <AT> gentoo.org> media-gfx/inkscape/inkscape-1.2.2-r4.ebuild | 4 +++- media-gfx/inkscape/inkscape-1.3.2.ebuild | 4 +++- media-gfx/inkscape/inkscape-9999.ebuild | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/media-gfx/inkscape/inkscape-1.2.2-r4.ebuild b/media-gfx/inkscape/inkscape-1.2.2-r4.ebuild index c3246f097c88..00c5bc63f64e 100644 --- a/media-gfx/inkscape/inkscape-1.2.2-r4.ebuild +++ b/media-gfx/inkscape/inkscape-1.2.2-r4.ebuild @@ -134,7 +134,9 @@ src_prepare() { } src_configure() { - # aliasing unsafe wrt #310393 + # ODR violation (https://gitlab.com/inkscape/lib2geom/-/issues/71, bug #859628) + filter-lto + # Aliasing unsafe (bug #310393) append-flags -fno-strict-aliasing local mycmakeargs=( diff --git a/media-gfx/inkscape/inkscape-1.3.2.ebuild b/media-gfx/inkscape/inkscape-1.3.2.ebuild index a59e5ee19170..5aeb0df4ea69 100644 --- a/media-gfx/inkscape/inkscape-1.3.2.ebuild +++ b/media-gfx/inkscape/inkscape-1.3.2.ebuild @@ -134,7 +134,9 @@ src_prepare() { } src_configure() { - # aliasing unsafe wrt #310393 + # ODR violation (https://gitlab.com/inkscape/lib2geom/-/issues/71, bug #859628) + filter-lto + # Aliasing unsafe (bug #310393) append-flags -fno-strict-aliasing local mycmakeargs=( diff --git a/media-gfx/inkscape/inkscape-9999.ebuild b/media-gfx/inkscape/inkscape-9999.ebuild index 698236284069..e15278a2cad5 100644 --- a/media-gfx/inkscape/inkscape-9999.ebuild +++ b/media-gfx/inkscape/inkscape-9999.ebuild @@ -130,7 +130,9 @@ src_prepare() { } src_configure() { - # aliasing unsafe wrt #310393 + # ODR violation (https://gitlab.com/inkscape/lib2geom/-/issues/71, bug #859628) + filter-lto + # Aliasing unsafe (bug #310393) append-flags -fno-strict-aliasing local mycmakeargs=(