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 D78C1158041 for ; Thu, 7 Mar 2024 23:51:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DC1EE29B8; 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 F3E9CE29B8 for ; Thu, 7 Mar 2024 23:51: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 219EF335DCC 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 6E79310B0 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: <1709855366.995947d9e5787552d849b6754c8c5aa22823354c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/vte/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/vte/vte-0.68.0.ebuild x11-libs/vte/vte-0.74.2.ebuild X-VCS-Directories: x11-libs/vte/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 995947d9e5787552d849b6754c8c5aa22823354c 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: 3edbcc45-cc42-4b57-bdd8-485a1cc2a92e X-Archives-Hash: 15d849fe2785c650446570b7ef79200d commit: 995947d9e5787552d849b6754c8c5aa22823354c Author: Sam James gentoo org> AuthorDate: Thu Mar 7 23:49:26 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 7 23:49:26 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=995947d9 x11-libs/vte: filter LTO Upstream don't support LTO & error out on it in meson.build. Closes: https://bugs.gentoo.org/926156 Signed-off-by: Sam James gentoo.org> x11-libs/vte/vte-0.68.0.ebuild | 7 +++++-- x11-libs/vte/vte-0.74.2.ebuild | 5 ++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/x11-libs/vte/vte-0.68.0.ebuild b/x11-libs/vte/vte-0.68.0.ebuild index 1fec0100cb79..31a008153e99 100644 --- a/x11-libs/vte/vte-0.68.0.ebuild +++ b/x11-libs/vte/vte-0.68.0.ebuild @@ -1,11 +1,11 @@ -# 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..10} ) -inherit gnome.org meson python-any-r1 vala xdg +inherit flag-o-matic gnome.org meson python-any-r1 vala xdg DESCRIPTION="Library providing a virtual terminal emulator widget" HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/VTE https://gitlab.gnome.org/GNOME/vte" @@ -69,6 +69,9 @@ src_prepare() { } src_configure() { + # Upstream don't support LTO & error out on it in meson.build (bug #926156) + filter-lto + local emesonargs=( -Da11y=true $(meson_use debug debugg) diff --git a/x11-libs/vte/vte-0.74.2.ebuild b/x11-libs/vte/vte-0.74.2.ebuild index 30b7a48f852b..65965005d79e 100644 --- a/x11-libs/vte/vte-0.74.2.ebuild +++ b/x11-libs/vte/vte-0.74.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -inherit gnome.org meson python-any-r1 vala xdg +inherit flag-o-matic gnome.org meson python-any-r1 vala xdg DESCRIPTION="Library providing a virtual terminal emulator widget" HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/VTE" @@ -69,6 +69,9 @@ src_prepare() { } src_configure() { + # Upstream don't support LTO & error out on it in meson.build (bug #926156) + filter-lto + local emesonargs=( -Da11y=true $(meson_use debug debugg)