From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1704245-garchives=archives.gentoo.org@lists.gentoo.org>
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 (4096 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id F268215812D
	for <garchives@archives.gentoo.org>; Mon, 30 Dec 2024 14:04:10 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 478C1E0794;
	Mon, 30 Dec 2024 14:04:10 +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 28898E0794
	for <gentoo-commits@lists.gentoo.org>; Mon, 30 Dec 2024 14:04:10 +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 4320A33BF41
	for <gentoo-commits@lists.gentoo.org>; Mon, 30 Dec 2024 14:04:09 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id C80AF191A
	for <gentoo-commits@lists.gentoo.org>; Mon, 30 Dec 2024 14:04:05 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
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" <sam@gentoo.org>
Message-ID: <1735567418.1ed28d5657a40a219fd6d30d9129046d90d2bfce.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/socat/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-misc/socat/socat-1.7.4.4-r1.ebuild net-misc/socat/socat-1.8.0.0.ebuild net-misc/socat/socat-1.8.0.1.ebuild net-misc/socat/socat-1.8.0.2.ebuild
X-VCS-Directories: net-misc/socat/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 1ed28d5657a40a219fd6d30d9129046d90d2bfce
X-VCS-Branch: master
Date: Mon, 30 Dec 2024 14:04:05 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 36d4e86e-c94d-4cee-9751-920a5e2ecc55
X-Archives-Hash: 697fccb312020eddfc9de5d592bd2a0f

commit:     1ed28d5657a40a219fd6d30d9129046d90d2bfce
Author:     Z. Liu <zhixu.liu <AT> gmail <DOT> com>
AuthorDate: Mon Dec 30 09:03:32 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 30 14:03:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ed28d56

net-misc/socat: set QA_CONFIG_IMPL_DECL_SKIP

musl doesn't has getprotobynumber_r

Closes: https://bugs.gentoo.org/924495
Signed-off-by: Z. Liu <zhixu.liu <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/39902
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/socat/socat-1.7.4.4-r1.ebuild | 4 ++++
 net-misc/socat/socat-1.8.0.0.ebuild    | 4 ++++
 net-misc/socat/socat-1.8.0.1.ebuild    | 4 ++++
 net-misc/socat/socat-1.8.0.2.ebuild    | 4 ++++
 4 files changed, 16 insertions(+)

diff --git a/net-misc/socat/socat-1.7.4.4-r1.ebuild b/net-misc/socat/socat-1.7.4.4-r1.ebuild
index a4f9e4264807..f759ca5072f4 100644
--- a/net-misc/socat/socat-1.7.4.4-r1.ebuild
+++ b/net-misc/socat/socat-1.7.4.4-r1.ebuild
@@ -46,4 +46,8 @@ src_install() {
 
 	docinto html
 	dodoc doc/*.html doc/*.css
+
+	if use elibc_musl; then
+		QA_CONFIG_IMPL_DECL_SKIP=( getprotobynumber_r )
+	fi
 }

diff --git a/net-misc/socat/socat-1.8.0.0.ebuild b/net-misc/socat/socat-1.8.0.0.ebuild
index e058ec5fe1dc..6f3eb9e0cf57 100644
--- a/net-misc/socat/socat-1.8.0.0.ebuild
+++ b/net-misc/socat/socat-1.8.0.0.ebuild
@@ -57,4 +57,8 @@ src_install() {
 
 	docinto html
 	dodoc doc/*.html doc/*.css
+
+	if use elibc_musl; then
+		QA_CONFIG_IMPL_DECL_SKIP=( getprotobynumber_r )
+	fi
 }

diff --git a/net-misc/socat/socat-1.8.0.1.ebuild b/net-misc/socat/socat-1.8.0.1.ebuild
index 74a3393d7dbb..956b49fe571c 100644
--- a/net-misc/socat/socat-1.8.0.1.ebuild
+++ b/net-misc/socat/socat-1.8.0.1.ebuild
@@ -52,4 +52,8 @@ src_install() {
 
 	docinto html
 	dodoc doc/*.html doc/*.css
+
+	if use elibc_musl; then
+		QA_CONFIG_IMPL_DECL_SKIP=( getprotobynumber_r )
+	fi
 }

diff --git a/net-misc/socat/socat-1.8.0.2.ebuild b/net-misc/socat/socat-1.8.0.2.ebuild
index 52cfbb352af3..2448aa66a86d 100644
--- a/net-misc/socat/socat-1.8.0.2.ebuild
+++ b/net-misc/socat/socat-1.8.0.2.ebuild
@@ -53,4 +53,8 @@ src_install() {
 
 	docinto html
 	dodoc doc/*.html doc/*.css
+
+	if use elibc_musl; then
+		QA_CONFIG_IMPL_DECL_SKIP=( getprotobynumber_r )
+	fi
 }