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 5C91B15939F for ; Fri, 12 Jul 2024 05:55:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BD86E2A65; Fri, 12 Jul 2024 05:55:31 +0000 (UTC) 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 pigeon.gentoo.org (Postfix) with ESMTPS id 7EAFBE2A65 for ; Fri, 12 Jul 2024 05:55:31 +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 8FE09342F65 for ; Fri, 12 Jul 2024 05:55:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0A9E1E19 for ; Fri, 12 Jul 2024 05:55:27 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1720763656.1c346c2eebb3e2fb0da7d9c758938d57cdd23adc.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/tvheadend/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-tv/tvheadend/tvheadend-4.3_p20240618.ebuild media-tv/tvheadend/tvheadend-9999.ebuild X-VCS-Directories: media-tv/tvheadend/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 1c346c2eebb3e2fb0da7d9c758938d57cdd23adc X-VCS-Branch: master Date: Fri, 12 Jul 2024 05:55:27 +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: dc4c0b13-ea4b-445f-85a1-f1c59a848a95 X-Archives-Hash: 9b8ad3b3698e9f70285a3ef5ee7e80db commit: 1c346c2eebb3e2fb0da7d9c758938d57cdd23adc Author: Eli Schwartz gentoo org> AuthorDate: Fri Jul 12 04:51:21 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Fri Jul 12 05:54:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c346c2e media-tv/tvheadend: mark as LTO-unsafe Signed-off-by: Eli Schwartz gentoo.org> media-tv/tvheadend/tvheadend-4.3_p20240618.ebuild | 6 +++++- media-tv/tvheadend/tvheadend-9999.ebuild | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/media-tv/tvheadend/tvheadend-4.3_p20240618.ebuild b/media-tv/tvheadend/tvheadend-4.3_p20240618.ebuild index e9fefcd6df55..733fd0370d43 100644 --- a/media-tv/tvheadend/tvheadend-4.3_p20240618.ebuild +++ b/media-tv/tvheadend/tvheadend-4.3_p20240618.ebuild @@ -6,7 +6,7 @@ EAPI=8 COMMIT="e855f62e6697cf756ad2eed2ed03b8d06ba2019b" PYTHON_COMPAT=( python3_{10..12} ) -inherit linux-info python-single-r1 systemd toolchain-funcs +inherit flag-o-matic linux-info python-single-r1 systemd toolchain-funcs DESCRIPTION="Tvheadend is a TV streaming server and digital video recorder" HOMEPAGE="https://tvheadend.org/" @@ -91,6 +91,10 @@ pkg_setup() { # most of them only take effect when --enable-ffmpeg_static is given. src_configure() { + # -Werror=lto-type-mismatch + # https://github.com/tvheadend/tvheadend/issues/1732 + filter-lto + CC="$(tc-getCC)" \ PKG_CONFIG="$(tc-getPKG_CONFIG)" \ econf \ diff --git a/media-tv/tvheadend/tvheadend-9999.ebuild b/media-tv/tvheadend/tvheadend-9999.ebuild index aa832d625e41..91152498ae00 100644 --- a/media-tv/tvheadend/tvheadend-9999.ebuild +++ b/media-tv/tvheadend/tvheadend-9999.ebuild @@ -5,7 +5,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -inherit git-r3 linux-info python-single-r1 systemd toolchain-funcs +inherit flag-o-matic git-r3 linux-info python-single-r1 systemd toolchain-funcs DESCRIPTION="Tvheadend is a TV streaming server and digital video recorder" HOMEPAGE="https://tvheadend.org/" @@ -88,6 +88,10 @@ pkg_setup() { # most of them only take effect when --enable-ffmpeg_static is given. src_configure() { + # -Werror=lto-type-mismatch + # https://github.com/tvheadend/tvheadend/issues/1732 + filter-lto + CC="$(tc-getCC)" \ PKG_CONFIG="$(tc-getPKG_CONFIG)" \ econf \