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 0C1A9158649 for ; Thu, 11 May 2023 01:24:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56144E0BF5; Thu, 11 May 2023 01:24:51 +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 2D8F7E0BF3 for ; Thu, 11 May 2023 01:24:51 +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 EF1E3340D1B for ; Thu, 11 May 2023 01:24:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A760A6B for ; Thu, 11 May 2023 01:24:48 +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: <1683768282.4f02695138a577e162e731f34cdc3eb9e9391e21.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/ X-VCS-Repository: proj/portage X-VCS-Files: bin/install-qa-check.d/90config-impl-decl X-VCS-Directories: bin/install-qa-check.d/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4f02695138a577e162e731f34cdc3eb9e9391e21 X-VCS-Branch: master Date: Thu, 11 May 2023 01:24:48 +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: 74ee1419-eac6-4336-939c-0f43ac036fbc X-Archives-Hash: aa9f4fd53c2de8feac670132256f64d1 commit: 4f02695138a577e162e731f34cdc3eb9e9391e21 Author: Matt Turner gentoo org> AuthorDate: Wed May 10 01:44:04 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu May 11 01:24:42 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=4f026951 install-qa-check.d/90config-impl-decl: Skip acl & statacl on Linux Seen in app-editors/vim. Bug: https://bugs.gentoo.org/898450 Signed-off-by: Matt Turner gentoo.org> Signed-off-by: Sam James gentoo.org> bin/install-qa-check.d/90config-impl-decl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/install-qa-check.d/90config-impl-decl b/bin/install-qa-check.d/90config-impl-decl index 9950ac934..068a7186f 100644 --- a/bin/install-qa-check.d/90config-impl-decl +++ b/bin/install-qa-check.d/90config-impl-decl @@ -43,8 +43,10 @@ add_default_skips() { # Functions not available on Linux [[ ${CHOST} == *linux* ]] && QA_CONFIG_IMPL_DECL_SKIP+=( + acl res_getservers res_ndestroy + statacl ) }