diff options
author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2022-08-02 14:18:53 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-02-01 06:01:05 +0100 |
commit | 6133a482f1d932e00343affdd47f8051d2662a44 (patch) | |
tree | 85d8c66c03964bfe71fda2200c3b69365e0fbfc4 | |
parent | syntax/gentoo-make-conf: Awareness of a few more variables (diff) | |
download | gentoo-syntax-6133a482f1d932e00343affdd47f8051d2662a44.tar.gz gentoo-syntax-6133a482f1d932e00343affdd47f8051d2662a44.tar.bz2 gentoo-syntax-6133a482f1d932e00343affdd47f8051d2662a44.zip |
plugin/newebuild.vim: adjust dev-java templatev5
Add missing slot operators in >=virtual/jdk-1.8:*
and >=virtual/jre-1.8:*
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo-syntax/pull/49
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | plugin/newebuild.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugin/newebuild.vim b/plugin/newebuild.vim index fd3eb4f..cd3f44f 100644 --- a/plugin/newebuild.vim +++ b/plugin/newebuild.vim @@ -135,10 +135,10 @@ fun! <SID>MakeNewEbuild() put ='' put ='CP_DEPEND=\"\"' put ='' - put ='RDEPEND=\">=virtual/jre-1.8' - put =' ${CP_DEPEND}\"' - put ='DEPEND=\">=virtual/jdk-1.8' - put =' ${CP_DEPEND}\"' + put ='RDEPEND=\">=virtual/jre-1.8:*' + put =' ${CP_DEPEND}\"' + put ='DEPEND=\">=virtual/jdk-1.8:*' + put =' ${CP_DEPEND}\"' elseif l:category ==# "dev-perl" || l:category ==# "perl-core" " {{{ perl modules default setup put ='DIST_AUTHOR=\"\"' |