commit: 274500850d527ce80ef4c014d3973edfbb3fd6c7 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue Aug 14 14:13:17 2018 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue Aug 14 14:13:17 2018 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=27450085
newebuild: Use EAPI 7 Closes: https://github.com/gentoo/gentoo-syntax/issues/18 plugin/newebuild.vim | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugin/newebuild.vim b/plugin/newebuild.vim index 1422f3b..7000fde 100644 --- a/plugin/newebuild.vim +++ b/plugin/newebuild.vim @@ -56,7 +56,7 @@ fun! <SID>MakeNewEbuild() nohls " }}} else - put ='EAPI=6' + put ='EAPI=7' put ='' if l:category ==# "app-vim" " {{{ app-vim special setup @@ -161,8 +161,9 @@ fun! <SID>MakeNewEbuild() put ='' " {{{ extra deps for some categories - put ='RDEPEND=\"\"' - put ='DEPEND=\"${RDEPEND}\"' + put ='DEPEND=\"\"' + put ='RDEPEND=\"${DEPEND}\"' + put ='BDEPEND=\"\"' " }}} endif
