From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1444311-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 D23D5158094
	for <garchives@archives.gentoo.org>; Fri,  7 Oct 2022 12:39:21 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D0391E086E;
	Fri,  7 Oct 2022 12:39:20 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.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 pigeon.gentoo.org (Postfix) with ESMTPS id BC7AFE086E
	for <gentoo-commits@lists.gentoo.org>; Fri,  7 Oct 2022 12:39:20 +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 9BD6D3410BD
	for <gentoo-commits@lists.gentoo.org>; Fri,  7 Oct 2022 12:39:19 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B0645DD
	for <gentoo-commits@lists.gentoo.org>; Fri,  7 Oct 2022 12:39:18 +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: <1665146330.3670f06a1fae8b4cf51223a540837a34cc286e07.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-libs/libsmbios/libsmbios-2.4.3.ebuild
X-VCS-Directories: sys-libs/libsmbios/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 3670f06a1fae8b4cf51223a540837a34cc286e07
X-VCS-Branch: master
Date: Fri,  7 Oct 2022 12:39:18 +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: a9ab07c5-c2e4-4f18-96fb-0005e7a4d8f5
X-Archives-Hash: 7459b4521c5777d6cf295b325e1bd305

commit:     3670f06a1fae8b4cf51223a540837a34cc286e07
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  7 12:28:27 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct  7 12:38:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3670f06a

sys-libs/libsmbios: fix incorrect KEYWORDS

Mark as -* until upstream is properly fixed to not require <sys/io.h>
unconditionally. The ~arm64 and ~riscv keywords were added by mistake;
they both fail to build due to absence of said header.

Based on glibc availability of <sys/io.h>, alpha is the only other
architecture that can build the package in any case, but SMBIOS is not
relevant on alpha anyway so ~alpha is not tested or included.

Closes: https://bugs.gentoo.org/875830
Closes: https://github.com/gentoo/gentoo/pull/27672
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 15ae620a9e16..c0eabb98e876 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="|| ( GPL-2+ OSL-2.1 ) BSD Boost-1.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 ~riscv x86"
+KEYWORDS="-* amd64 ~ia64 x86"
 IUSE="doc graphviz nls +python static-libs test"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
 	test? ( ${PYTHON_REQUIRED_USE} )"