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 0C131158041 for ; Sun, 3 Mar 2024 05:52:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E74F7E29B3; Sun, 3 Mar 2024 05:52:12 +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 BC936E29B3 for ; Sun, 3 Mar 2024 05:52:12 +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 BB375343022 for ; Sun, 3 Mar 2024 05:52:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C01714A2 for ; Sun, 3 Mar 2024 05:52:10 +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: <1709445072.02a35ae88a3b84bf2381ffb4244102bdd86f1418.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/maradns/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/maradns/maradns-3.5.0022.ebuild net-dns/maradns/maradns-3.5.0036.ebuild X-VCS-Directories: net-dns/maradns/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 02a35ae88a3b84bf2381ffb4244102bdd86f1418 X-VCS-Branch: master Date: Sun, 3 Mar 2024 05:52:10 +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: e1eb1159-6ca6-450f-b123-6165dba38f91 X-Archives-Hash: 6ca5aba439bc1bb3514ca5b6b93fc928 commit: 02a35ae88a3b84bf2381ffb4244102bdd86f1418 Author: Eli Schwartz gmail com> AuthorDate: Sun Mar 3 05:03:44 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 3 05:51:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02a35ae8 net-dns/maradns: mark as LTO-unsafe Closes: https://bugs.gentoo.org/861293 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> net-dns/maradns/maradns-3.5.0022.ebuild | 7 ++++++- net-dns/maradns/maradns-3.5.0036.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/net-dns/maradns/maradns-3.5.0022.ebuild b/net-dns/maradns/maradns-3.5.0022.ebuild index 2b29f3c404a5..4492b31c472c 100644 --- a/net-dns/maradns/maradns-3.5.0022.ebuild +++ b/net-dns/maradns/maradns-3.5.0022.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..11} ) -inherit python-any-r1 systemd toolchain-funcs +inherit flag-o-matic python-any-r1 systemd toolchain-funcs DESCRIPTION="A security-aware DNS server" HOMEPAGE="https://maradns.samiam.org" @@ -33,6 +33,11 @@ src_prepare() { } src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/861293 + # https://github.com/samboy/MaraDNS/discussions/124 + filter-lto + tc-export CC ./configure --ipv6 || die "Failed to configure" } diff --git a/net-dns/maradns/maradns-3.5.0036.ebuild b/net-dns/maradns/maradns-3.5.0036.ebuild index 3ae5a00374ac..30df46007db5 100644 --- a/net-dns/maradns/maradns-3.5.0036.ebuild +++ b/net-dns/maradns/maradns-3.5.0036.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -inherit python-any-r1 systemd toolchain-funcs +inherit flag-o-matic python-any-r1 systemd toolchain-funcs DESCRIPTION="A security-aware DNS server" HOMEPAGE="https://maradns.samiam.org" @@ -28,6 +28,11 @@ PATCHES=( ) src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/861293 + # https://github.com/samboy/MaraDNS/discussions/124 + filter-lto + tc-export CC ./configure --ipv6 || die "Failed to configure" }