From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id E40611580EB for ; Wed, 28 May 2025 17:28:07 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id C994C343069 for ; Wed, 28 May 2025 17:28:07 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id C40AE110287; Wed, 28 May 2025 17:28:06 +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 bobolink.gentoo.org (Postfix) with ESMTPS id B57DC110287 for ; Wed, 28 May 2025 17:28:06 +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 650AE3430E6 for ; Wed, 28 May 2025 17:28:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA1C8254C for ; Wed, 28 May 2025 17:28:04 +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: <1748453211.a0cd6ca9506ce5259f8e473840a18ee326d30196.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.0036.ebuild X-VCS-Directories: net-dns/maradns/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a0cd6ca9506ce5259f8e473840a18ee326d30196 X-VCS-Branch: master Date: Wed, 28 May 2025 17:28:04 +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: 7fa9af11-7fa8-4eb6-982a-1e9839f30521 X-Archives-Hash: caf0ca7990ecb65affc8c15b2d146e1c commit: a0cd6ca9506ce5259f8e473840a18ee326d30196 Author: Sam James gentoo org> AuthorDate: Wed May 28 17:26:51 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 28 17:26:51 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0cd6ca9 net-dns/maradns: enable py3.13, py3.14; use edo; gnu17 * Enable py3.13, py3.14 * Use edo for homebrew configure * Use -std=gnu17 (fixed upstream in master, though) Closes: https://bugs.gentoo.org/952579 Closes: https://bugs.gentoo.org/945182 Signed-off-by: Sam James gentoo.org> net-dns/maradns/maradns-3.5.0036.ebuild | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/net-dns/maradns/maradns-3.5.0036.ebuild b/net-dns/maradns/maradns-3.5.0036.ebuild index 1df50eeb4595..27d75d73b359 100644 --- a/net-dns/maradns/maradns-3.5.0036.ebuild +++ b/net-dns/maradns/maradns-3.5.0036.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) -inherit flag-o-matic python-any-r1 systemd toolchain-funcs +PYTHON_COMPAT=( python3_{11..14} ) +inherit edo flag-o-matic python-any-r1 systemd toolchain-funcs DESCRIPTION="A security-aware DNS server" HOMEPAGE="https://maradns.samiam.org" @@ -29,14 +29,19 @@ PATCHES=( src_configure() { # -Werror=lto-type-mismatch - # https://bugs.gentoo.org/861293 + # bug #861293 # https://github.com/samboy/MaraDNS/discussions/124 # # should be fixed in git master; try removing this on the next bump filter-lto + # bug #945182 + # https://github.com/samboy/MaraDNS/commit/1cbc02668ee88788e6fb75c774c7e9210d6d52ee + append-flags -std=gnu17 + tc-export CC - ./configure --ipv6 || die "Failed to configure" + + edo ./configure --ipv6 } src_install() {