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 69246158086 for ; Wed, 1 Dec 2021 17:07:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B51092BC042; Wed, 1 Dec 2021 17:07:11 +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 934152BC042 for ; Wed, 1 Dec 2021 17:07:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C12E2342E70 for ; Wed, 1 Dec 2021 17:07:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E52AC132 for ; Wed, 1 Dec 2021 17:07:05 +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: <1638378415.fc72192754c8a1ff9014fd739a2d07056b25ed1e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/vim/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/vim/vim-8.2.0814-r100.ebuild app-editors/vim/vim-8.2.3428-r1.ebuild app-editors/vim/vim-8.2.3567.ebuild app-editors/vim/vim-8.2.3582.ebuild app-editors/vim/vim-9999.ebuild X-VCS-Directories: app-editors/vim/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fc72192754c8a1ff9014fd739a2d07056b25ed1e X-VCS-Branch: master Date: Wed, 1 Dec 2021 17:07:05 +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: 2279e2e1-28f8-4f07-baa7-b2feaaf5fcda X-Archives-Hash: 5a40958d06667a645515830c1d5cee90 commit: fc72192754c8a1ff9014fd739a2d07056b25ed1e Author: Dongsu Park linux microsoft com> AuthorDate: Mon Nov 29 15:59:03 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Dec 1 17:06:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc721927 app-editors/vim: remove warning due to missing defaults.vim vim >= 8.2.3428 prints out a warning on missing file, when it is built with USE="minimal" and `app-editors/vim-core` is not installed. ``` $ vim E1187: Failed to source defaults.vim Press ENTER or type command to continue ``` To remove warning, explicitly install /usr/share/vim/vim82/defaults.vim. Closes: https://bugs.gentoo.org/820356 Signed-off-by: Dongsu Park linux.microsoft.com> Signed-off-by: Sam James gentoo.org> app-editors/vim/vim-8.2.0814-r100.ebuild | 6 ++++++ app-editors/vim/vim-8.2.3428-r1.ebuild | 6 ++++++ app-editors/vim/vim-8.2.3567.ebuild | 6 ++++++ app-editors/vim/vim-8.2.3582.ebuild | 6 ++++++ app-editors/vim/vim-9999.ebuild | 6 ++++++ 5 files changed, 30 insertions(+) diff --git a/app-editors/vim/vim-8.2.0814-r100.ebuild b/app-editors/vim/vim-8.2.0814-r100.ebuild index edd131772b0f..0f20c926a800 100644 --- a/app-editors/vim/vim-8.2.0814-r100.ebuild +++ b/app-editors/vim/vim-8.2.0814-r100.ebuild @@ -304,6 +304,12 @@ src_install() { fperms a+x ${vimfiles}/macros/manpager.sh fi + # Fix an issue of missing defaults.vim when USE=minimal. + if use minimal ; then + insinto ${vimfiles} + doins runtime/defaults.vim + fi + domenu runtime/vim.desktop newbashcomp "${FILESDIR}"/${PN}-completion ${PN} diff --git a/app-editors/vim/vim-8.2.3428-r1.ebuild b/app-editors/vim/vim-8.2.3428-r1.ebuild index d38b89a8bb5a..6a4b59f53ef1 100644 --- a/app-editors/vim/vim-8.2.3428-r1.ebuild +++ b/app-editors/vim/vim-8.2.3428-r1.ebuild @@ -316,6 +316,12 @@ src_install() { fperms a+x ${vimfiles}/macros/manpager.sh fi + # Fix an issue of missing defaults.vim when USE=minimal. + if use minimal ; then + insinto ${vimfiles} + doins runtime/defaults.vim + fi + domenu runtime/vim.desktop newbashcomp "${FILESDIR}"/${PN}-completion ${PN} diff --git a/app-editors/vim/vim-8.2.3567.ebuild b/app-editors/vim/vim-8.2.3567.ebuild index bdfd543c08a4..3ce917bf8851 100644 --- a/app-editors/vim/vim-8.2.3567.ebuild +++ b/app-editors/vim/vim-8.2.3567.ebuild @@ -318,6 +318,12 @@ src_install() { fperms a+x ${vimfiles}/macros/manpager.sh fi + # Fix an issue of missing defaults.vim when USE=minimal. + if use minimal ; then + insinto ${vimfiles} + doins runtime/defaults.vim + fi + domenu runtime/vim.desktop newbashcomp "${FILESDIR}"/${PN}-completion ${PN} diff --git a/app-editors/vim/vim-8.2.3582.ebuild b/app-editors/vim/vim-8.2.3582.ebuild index 84b805495f27..cf406ca4b069 100644 --- a/app-editors/vim/vim-8.2.3582.ebuild +++ b/app-editors/vim/vim-8.2.3582.ebuild @@ -318,6 +318,12 @@ src_install() { fperms a+x ${vimfiles}/macros/manpager.sh fi + # Fix an issue of missing defaults.vim when USE=minimal. + if use minimal ; then + insinto ${vimfiles} + doins runtime/defaults.vim + fi + domenu runtime/vim.desktop newbashcomp "${FILESDIR}"/${PN}-completion ${PN} diff --git a/app-editors/vim/vim-9999.ebuild b/app-editors/vim/vim-9999.ebuild index bdfd543c08a4..3ce917bf8851 100644 --- a/app-editors/vim/vim-9999.ebuild +++ b/app-editors/vim/vim-9999.ebuild @@ -318,6 +318,12 @@ src_install() { fperms a+x ${vimfiles}/macros/manpager.sh fi + # Fix an issue of missing defaults.vim when USE=minimal. + if use minimal ; then + insinto ${vimfiles} + doins runtime/defaults.vim + fi + domenu runtime/vim.desktop newbashcomp "${FILESDIR}"/${PN}-completion ${PN}