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 125C415817D for ; Sat, 8 Jun 2024 17:34:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A8B2E29EE; Sat, 8 Jun 2024 17:34:14 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 407F6E29EE for ; Sat, 8 Jun 2024 17:34:14 +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 4DA28340815 for ; Sat, 8 Jun 2024 17:34:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A255E1A32 for ; Sat, 8 Jun 2024 17:34:11 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1717868048.b3613ab440c7f0cee9ee0a8f3f230085a3dc65b2.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/systemd-utils/systemd-utils-255.7-r1.ebuild X-VCS-Directories: sys-apps/systemd-utils/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: b3613ab440c7f0cee9ee0a8f3f230085a3dc65b2 X-VCS-Branch: master Date: Sat, 8 Jun 2024 17:34:11 +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: 1360a188-0911-4d1c-a79d-abad26824369 X-Archives-Hash: 8ae8c4047ddf6b551d2dd1ca074f692a commit: b3613ab440c7f0cee9ee0a8f3f230085a3dc65b2 Author: Mike Gilbert gentoo org> AuthorDate: Sat Jun 8 17:32:38 2024 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Jun 8 17:34:08 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3613ab4 sys-apps/systemd-utils: exclude mips64 in have_dmi Bug: https://bugs.gentoo.org/933834 Signed-off-by: Mike Gilbert gentoo.org> sys-apps/systemd-utils/systemd-utils-255.7-r1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys-apps/systemd-utils/systemd-utils-255.7-r1.ebuild b/sys-apps/systemd-utils/systemd-utils-255.7-r1.ebuild index ce13e54935e2..0d6be4c5b60d 100644 --- a/sys-apps/systemd-utils/systemd-utils-255.7-r1.ebuild +++ b/sys-apps/systemd-utils/systemd-utils-255.7-r1.ebuild @@ -257,6 +257,8 @@ multilib_src_configure() { have_dmi() { # see dmi_arches in meson.build case ${CHOST} in + mips64*) + return 1 ;; aarch64*|arm*|ia64*|i?86*|loongarch64*|mips*|x86_64*) return 0 ;; esac