From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1666349-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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 137E1158083 for <garchives@archives.gentoo.org>; Sat, 31 Aug 2024 13:51:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 601EFE29E3; Sat, 31 Aug 2024 13:51:01 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 451A3E29E3 for <gentoo-commits@lists.gentoo.org>; Sat, 31 Aug 2024 13:51:01 +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 562EB3430F3 for <gentoo-commits@lists.gentoo.org>; Sat, 31 Aug 2024 13:51:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA7C11F28 for <gentoo-commits@lists.gentoo.org>; Sat, 31 Aug 2024 13:50:58 +0000 (UTC) From: "Michael Orlitzky" <mjo@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, "Michael Orlitzky" <mjo@gentoo.org> Message-ID: <1725112251.d07b1ed35ee08c4f8d728deadb9a4a7d1517c7eb.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/oath-toolkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/oath-toolkit/oath-toolkit-2.6.11.ebuild X-VCS-Directories: sys-auth/oath-toolkit/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: d07b1ed35ee08c4f8d728deadb9a4a7d1517c7eb X-VCS-Branch: master Date: Sat, 31 Aug 2024 13:50:58 +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: b0774377-4c49-4d50-bb20-d703e47d2c19 X-Archives-Hash: d57985a12c44ebd1c783bd0a40113285 commit: d07b1ed35ee08c4f8d728deadb9a4a7d1517c7eb Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org> AuthorDate: Sat Aug 31 13:45:33 2024 +0000 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org> CommitDate: Sat Aug 31 13:50:51 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d07b1ed3 sys-auth/oath-toolkit: hide another implicit declaration warning I don't completely understand if/when <stdio_ext.h> is needed for fpurge(), but the authors of the gnulib macro are apparently aware of it, so I assume that the macro is doing what it's supposed to. In any case, oath-toolkit doesn't use fpurge(), so it's irrelevant for now. Closes: https://bugs.gentoo.org/925157 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org> sys-auth/oath-toolkit/oath-toolkit-2.6.11.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-auth/oath-toolkit/oath-toolkit-2.6.11.ebuild b/sys-auth/oath-toolkit/oath-toolkit-2.6.11.ebuild index 80f393cfd4d0..b82f773e2a74 100644 --- a/sys-auth/oath-toolkit/oath-toolkit-2.6.11.ebuild +++ b/sys-auth/oath-toolkit/oath-toolkit-2.6.11.ebuild @@ -29,11 +29,13 @@ BDEPEND=" PATCHES=( "${FILESDIR}/${P}-fix-musl-build.patch" ) +# fpurge is from gnulib, and unused as of 2.6.11 QA_CONFIG_IMPL_DECL_SKIP=( MIN # glibc fp - unreachable alignof + fpurge static_assert + unreachable ) src_prepare() {