diff options
| author | Thomas Bracht Laumann Jespersen <t@laumann.xyz> | 2022-04-17 20:54:37 +0200 |
|---|---|---|
| committer | Sam James <sam@gentoo.org> | 2022-04-17 20:41:02 +0100 |
| commit | a7fa526c972209c588508fb7e9bcc0a36a8fc0ad (patch) | |
| tree | 6ff8eb116043cc98d5eafe8b6082cb0143223988 /app-editors/vim/vim-9999.ebuild | |
| parent | b056b218d64cf00cdc9cd387fce0c4ddfaf1d9da (diff) | |
| download | gentoo-a7fa526c972209c588508fb7e9bcc0a36a8fc0ad.tar.gz gentoo-a7fa526c972209c588508fb7e9bcc0a36a8fc0ad.tar.bz2 gentoo-a7fa526c972209c588508fb7e9bcc0a36a8fc0ad.zip | |
app-editors/vim: fix QA notice "eend called w/o ebegin"
A recent QA notice was added to portage to check that calls to eend $?
have been preceded by a call to ebegin (in the same phase).
This is basically running this line:
sed -i -e 's/einfo "Calling eselect vi update..."/ebegin "Calling eselect vi update"/g' *.ebuild
on all the ebuilds in app-editors/vim. The trailing "..." are also
removed, as ebegin adds these automatically.
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Closes: https://github.com/gentoo/gentoo/pull/25070
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-editors/vim/vim-9999.ebuild')
| -rw-r--r-- | app-editors/vim/vim-9999.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-editors/vim/vim-9999.ebuild b/app-editors/vim/vim-9999.ebuild index 5d9a0aae046a..7d628c709724 100644 --- a/app-editors/vim/vim-9999.ebuild +++ b/app-editors/vim/vim-9999.ebuild @@ -295,7 +295,7 @@ src_test() { # Call eselect vi update with --if-unset # to respect user's choice (bug #187449) eselect_vi_update() { - einfo "Calling eselect vi update..." + ebegin "Calling eselect vi update" eselect vi update --if-unset eend $? } |
