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 EEF80158009 for ; Sat, 17 Jun 2023 16:09:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32148E08D4; Sat, 17 Jun 2023 16:09:52 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 CC759E07E2 for ; Sat, 17 Jun 2023 16:09: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 F38CD340F20 for ; Sat, 17 Jun 2023 16:09:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90673A66 for ; Sat, 17 Jun 2023 16:09: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: <1687018143.a2494b77d21f70b6e1fef71496e23740b550116e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/wireshark/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/wireshark/wireshark-3.6.13.ebuild net-analyzer/wireshark/wireshark-3.6.14.ebuild net-analyzer/wireshark/wireshark-4.0.5.ebuild net-analyzer/wireshark/wireshark-4.0.6.ebuild net-analyzer/wireshark/wireshark-9999.ebuild X-VCS-Directories: net-analyzer/wireshark/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a2494b77d21f70b6e1fef71496e23740b550116e X-VCS-Branch: master Date: Sat, 17 Jun 2023 16:09: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: 9aabfd54-bd67-4838-942e-0f791a6da41f X-Archives-Hash: 0dc0eb7857c987246ed6ffb2a69ff576 commit: a2494b77d21f70b6e1fef71496e23740b550116e Author: Sam James gentoo org> AuthorDate: Sat Jun 17 16:09:03 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 17 16:09:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2494b77 net-analyzer/wireshark: add missing filter-lto for USE=-lto Note that USE=lto is masked right now too. Bug: https://bugs.gentoo.org/754021 Signed-off-by: Sam James gentoo.org> net-analyzer/wireshark/wireshark-3.6.13.ebuild | 2 ++ net-analyzer/wireshark/wireshark-3.6.14.ebuild | 2 ++ net-analyzer/wireshark/wireshark-4.0.5.ebuild | 2 ++ net-analyzer/wireshark/wireshark-4.0.6.ebuild | 2 ++ net-analyzer/wireshark/wireshark-9999.ebuild | 2 ++ 5 files changed, 10 insertions(+) diff --git a/net-analyzer/wireshark/wireshark-3.6.13.ebuild b/net-analyzer/wireshark/wireshark-3.6.13.ebuild index 0079012cf99c..5bcc3eef297d 100644 --- a/net-analyzer/wireshark/wireshark-3.6.13.ebuild +++ b/net-analyzer/wireshark/wireshark-3.6.13.ebuild @@ -136,6 +136,8 @@ src_configure() { append-cxxflags -fPIC -DPIC fi + ! use lto && filter-lto + python_setup mycmakeargs+=( diff --git a/net-analyzer/wireshark/wireshark-3.6.14.ebuild b/net-analyzer/wireshark/wireshark-3.6.14.ebuild index 1aa6426c7849..883f96d5450c 100644 --- a/net-analyzer/wireshark/wireshark-3.6.14.ebuild +++ b/net-analyzer/wireshark/wireshark-3.6.14.ebuild @@ -136,6 +136,8 @@ src_configure() { append-cxxflags -fPIC -DPIC fi + ! use lto && filter-lto + python_setup mycmakeargs+=( diff --git a/net-analyzer/wireshark/wireshark-4.0.5.ebuild b/net-analyzer/wireshark/wireshark-4.0.5.ebuild index 6039d7e9573b..cd157e078c5f 100644 --- a/net-analyzer/wireshark/wireshark-4.0.5.ebuild +++ b/net-analyzer/wireshark/wireshark-4.0.5.ebuild @@ -170,6 +170,8 @@ src_configure() { append-cxxflags -fPIC -DPIC fi + ! use lto && filter-lto + mycmakeargs+=( -DPython3_EXECUTABLE="${PYTHON}" -DCMAKE_DISABLE_FIND_PACKAGE_{Asciidoctor,DOXYGEN}=$(usex !doc) diff --git a/net-analyzer/wireshark/wireshark-4.0.6.ebuild b/net-analyzer/wireshark/wireshark-4.0.6.ebuild index bda06a2c3b77..2a642376f5e0 100644 --- a/net-analyzer/wireshark/wireshark-4.0.6.ebuild +++ b/net-analyzer/wireshark/wireshark-4.0.6.ebuild @@ -170,6 +170,8 @@ src_configure() { append-cxxflags -fPIC -DPIC fi + ! use lto && filter-lto + mycmakeargs+=( -DPython3_EXECUTABLE="${PYTHON}" -DCMAKE_DISABLE_FIND_PACKAGE_{Asciidoctor,DOXYGEN}=$(usex !doc) diff --git a/net-analyzer/wireshark/wireshark-9999.ebuild b/net-analyzer/wireshark/wireshark-9999.ebuild index 88ddb144b999..e6c490a67458 100644 --- a/net-analyzer/wireshark/wireshark-9999.ebuild +++ b/net-analyzer/wireshark/wireshark-9999.ebuild @@ -171,6 +171,8 @@ src_configure() { append-cxxflags -fPIC -DPIC fi + ! use lto && filter-lto + mycmakeargs+=( -DPython3_EXECUTABLE="${PYTHON}" -DCMAKE_DISABLE_FIND_PACKAGE_{Asciidoctor,DOXYGEN}=$(usex !doc)