From 1d4c8dd11eaf466cfd5d5bdb633573b12b48153d Mon Sep 17 00:00:00 2001 From: Oskari Pirhonen Date: Fri, 3 Mar 2023 00:49:35 -0600 Subject: app-editors/vim: 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/898452 Signed-off-by: Oskari Pirhonen Signed-off-by: Sam James --- app-editors/vim/vim-9.0.1000.ebuild | 8 ++++++++ app-editors/vim/vim-9.0.1157.ebuild | 8 ++++++++ app-editors/vim/vim-9.0.1363.ebuild | 8 ++++++++ app-editors/vim/vim-9999.ebuild | 8 ++++++++ 4 files changed, 32 insertions(+) (limited to 'app-editors/vim') diff --git a/app-editors/vim/vim-9.0.1000.ebuild b/app-editors/vim/vim-9.0.1000.ebuild index c3de4d218ee4..556785a2b235 100644 --- a/app-editors/vim/vim-9.0.1000.ebuild +++ b/app-editors/vim/vim-9.0.1000.ebuild @@ -75,6 +75,14 @@ if [[ ${PV} != 9999* ]]; then ) fi +# platform-specific checks (bug #898452): +# - 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/vim/vim-9.0.1157.ebuild b/app-editors/vim/vim-9.0.1157.ebuild index ebd71300ee4c..c4bd8dd86b3b 100644 --- a/app-editors/vim/vim-9.0.1157.ebuild +++ b/app-editors/vim/vim-9.0.1157.ebuild @@ -75,6 +75,14 @@ if [[ ${PV} != 9999* ]]; then ) fi +# platform-specific checks (bug #898452): +# - 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/vim/vim-9.0.1363.ebuild b/app-editors/vim/vim-9.0.1363.ebuild index 40a78fc412a4..0e985e6afed2 100644 --- a/app-editors/vim/vim-9.0.1363.ebuild +++ b/app-editors/vim/vim-9.0.1363.ebuild @@ -75,6 +75,14 @@ if [[ ${PV} != 9999* ]]; then ) fi +# platform-specific checks (bug #898452): +# - 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/vim/vim-9999.ebuild b/app-editors/vim/vim-9999.ebuild index 40a78fc412a4..0e985e6afed2 100644 --- a/app-editors/vim/vim-9999.ebuild +++ b/app-editors/vim/vim-9999.ebuild @@ -75,6 +75,14 @@ if [[ ${PV} != 9999* ]]; then ) fi +# platform-specific checks (bug #898452): +# - 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 -- cgit v1.2.3-65-gdbad