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 9494C158020 for ; Tue, 25 Oct 2022 12:15:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9E4EE0BC6; Tue, 25 Oct 2022 12:15:48 +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 AE96EE0BC6 for ; Tue, 25 Oct 2022 12:15:48 +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 CA8F1340E2F for ; Tue, 25 Oct 2022 12:15:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6654C62A for ; Tue, 25 Oct 2022 12:15:46 +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: <1666700125.57a8a56b1036b3ee654acc97e87f25b8d0478cce.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/tayga/, net-proxy/tayga/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-proxy/tayga/files/tayga-0.9.2-Fix-implicit-function-declaration.patch net-proxy/tayga/tayga-0.9.2-r3.ebuild net-proxy/tayga/tayga-0.9.2-r4.ebuild X-VCS-Directories: net-proxy/tayga/files/ net-proxy/tayga/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 57a8a56b1036b3ee654acc97e87f25b8d0478cce X-VCS-Branch: master Date: Tue, 25 Oct 2022 12:15:46 +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: edaab532-e4ea-4767-aa4f-bf4ad32c3f13 X-Archives-Hash: 1382f554079153b51c4fc2d0fb644fc4 commit: 57a8a56b1036b3ee654acc97e87f25b8d0478cce Author: Sam James gentoo org> AuthorDate: Tue Oct 25 11:55:39 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Oct 25 12:15:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57a8a56b net-proxy/tayga: fix build w/ Clang 16 Bug: https://bugs.gentoo.org/867217 Closes: https://bugs.gentoo.org/871678 Signed-off-by: Sam James gentoo.org> .../tayga-0.9.2-Fix-implicit-function-declaration.patch | 16 ++++++++++++++++ .../{tayga-0.9.2-r3.ebuild => tayga-0.9.2-r4.ebuild} | 9 +++------ 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/net-proxy/tayga/files/tayga-0.9.2-Fix-implicit-function-declaration.patch b/net-proxy/tayga/files/tayga-0.9.2-Fix-implicit-function-declaration.patch new file mode 100644 index 000000000000..581aecc0a53f --- /dev/null +++ b/net-proxy/tayga/files/tayga-0.9.2-Fix-implicit-function-declaration.patch @@ -0,0 +1,16 @@ +From 64b2c3859304c595e7099dd157596951ec21562b Mon Sep 17 00:00:00 2001 +From: Sam James +Date: Tue, 25 Oct 2022 12:54:31 +0100 +Subject: [PATCH] Fix implicit function declaration + +Bug: https://bugs.gentoo.org/871678 +--- a/nat64.c ++++ b/nat64.c +@@ -16,6 +16,7 @@ + */ + + #include ++#include + + extern struct config *gcfg; + diff --git a/net-proxy/tayga/tayga-0.9.2-r3.ebuild b/net-proxy/tayga/tayga-0.9.2-r4.ebuild similarity index 82% rename from net-proxy/tayga/tayga-0.9.2-r3.ebuild rename to net-proxy/tayga/tayga-0.9.2-r4.ebuild index d8b3c48363fc..00f3a03f825b 100644 --- a/net-proxy/tayga/tayga-0.9.2-r3.ebuild +++ b/net-proxy/tayga/tayga-0.9.2-r4.ebuild @@ -1,26 +1,23 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=8 inherit autotools -DESCRIPTION="out-of-kernel stateless NAT64 implementation based on TUN" +DESCRIPTION="Out-of-kernel stateless NAT64 implementation based on TUN" HOMEPAGE="http://www.litech.org/tayga/" SRC_URI="http://www.litech.org/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm64 ~riscv" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}"/${P}-static-EAM.patch "${FILESDIR}"/${P}-manpage-RFC.patch "${FILESDIR}"/${P}-release-reserved-addr.patch + "${FILESDIR}"/${PN}-0.9.2-Fix-implicit-function-declaration.patch ) src_prepare() {