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 93CC315802F for ; Sat, 4 Mar 2023 07:18:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C67FE0961; Sat, 4 Mar 2023 07:18:57 +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 F266BE0957 for ; Sat, 4 Mar 2023 07:18:56 +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 ADDE8341240 for ; Sat, 4 Mar 2023 07:18:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C6E88D6 for ; Sat, 4 Mar 2023 07:18:53 +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: <1677914288.9726595239c9c464b1b8cd9e052beb7bfa5d8add.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/gvim/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/gvim/gvim-9.0.1000.ebuild app-editors/gvim/gvim-9.0.1157.ebuild app-editors/gvim/gvim-9.0.1363.ebuild app-editors/gvim/gvim-9999.ebuild X-VCS-Directories: app-editors/gvim/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9726595239c9c464b1b8cd9e052beb7bfa5d8add X-VCS-Branch: master Date: Sat, 4 Mar 2023 07:18:53 +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: 52571f72-5dce-4abf-9ccc-80a81fe67c3e X-Archives-Hash: e879c3bed3b819c4c6ff87cb98d0810d commit: 9726595239c9c464b1b8cd9e052beb7bfa5d8add Author: Oskari Pirhonen gmail com> AuthorDate: Fri Mar 3 06:46:42 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 4 07:18:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97265952 app-editors/gvim: configure implicit function declarations Ignore implicit function declarations for platform-specific functions, `acl()` is for Solaris and `statacl()` is for AIX. Closes: https://bugs.gentoo.org/898450 Signed-off-by: Oskari Pirhonen gmail.com> Signed-off-by: Sam James gentoo.org> app-editors/gvim/gvim-9.0.1000.ebuild | 8 ++++++++ app-editors/gvim/gvim-9.0.1157.ebuild | 8 ++++++++ app-editors/gvim/gvim-9.0.1363.ebuild | 8 ++++++++ app-editors/gvim/gvim-9999.ebuild | 8 ++++++++ 4 files changed, 32 insertions(+) diff --git a/app-editors/gvim/gvim-9.0.1000.ebuild b/app-editors/gvim/gvim-9.0.1000.ebuild index 708d13e40470..5685854ed305 100644 --- a/app-editors/gvim/gvim-9.0.1000.ebuild +++ b/app-editors/gvim/gvim-9.0.1000.ebuild @@ -90,6 +90,14 @@ fi # various failures (bugs #630042 and #682320) RESTRICT="test" +# platform-specific checks (bug #898450): +# - acl() -- Solaris +# - statacl() -- AIX +QA_CONFIG_IMPL_DECL_SKIP=( + 'acl' + 'statacl' +) + pkg_setup() { # people with broken alphabets run into trouble. bug 82186. unset LANG LC_ALL diff --git a/app-editors/gvim/gvim-9.0.1157.ebuild b/app-editors/gvim/gvim-9.0.1157.ebuild index 708d13e40470..5685854ed305 100644 --- a/app-editors/gvim/gvim-9.0.1157.ebuild +++ b/app-editors/gvim/gvim-9.0.1157.ebuild @@ -90,6 +90,14 @@ fi # various failures (bugs #630042 and #682320) RESTRICT="test" +# platform-specific checks (bug #898450): +# - acl() -- Solaris +# - statacl() -- AIX +QA_CONFIG_IMPL_DECL_SKIP=( + 'acl' + 'statacl' +) + pkg_setup() { # people with broken alphabets run into trouble. bug 82186. unset LANG LC_ALL diff --git a/app-editors/gvim/gvim-9.0.1363.ebuild b/app-editors/gvim/gvim-9.0.1363.ebuild index cba104363a07..c6e8ca77a51c 100644 --- a/app-editors/gvim/gvim-9.0.1363.ebuild +++ b/app-editors/gvim/gvim-9.0.1363.ebuild @@ -91,6 +91,14 @@ fi # various failures (bugs #630042 and #682320) RESTRICT="test" +# platform-specific checks (bug #898450): +# - acl() -- Solaris +# - statacl() -- AIX +QA_CONFIG_IMPL_DECL_SKIP=( + 'acl' + 'statacl' +) + pkg_setup() { # people with broken alphabets run into trouble. bug 82186. unset LANG LC_ALL diff --git a/app-editors/gvim/gvim-9999.ebuild b/app-editors/gvim/gvim-9999.ebuild index 01f283c88448..63a3e37a2a0d 100644 --- a/app-editors/gvim/gvim-9999.ebuild +++ b/app-editors/gvim/gvim-9999.ebuild @@ -90,6 +90,14 @@ fi # various failures (bugs #630042 and #682320) RESTRICT="test" +# platform-specific checks (bug #898450): +# - acl() -- Solaris +# - statacl() -- AIX +QA_CONFIG_IMPL_DECL_SKIP=( + 'acl' + 'statacl' +) + pkg_setup() { # people with broken alphabets run into trouble. bug 82186. unset LANG LC_ALL