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 5D52215800F for ; Wed, 1 Feb 2023 05:03:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FB67E0BEA; Wed, 1 Feb 2023 05:03:33 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 75D8AE0BE9 for ; Wed, 1 Feb 2023 05:03:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 86B8C340C74 for ; Wed, 1 Feb 2023 05:03:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB1B3896 for ; Wed, 1 Feb 2023 05:03:30 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1675227665.6133a482f1d932e00343affdd47f8051d2662a44.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: plugin/ X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: plugin/newebuild.vim X-VCS-Directories: plugin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6133a482f1d932e00343affdd47f8051d2662a44 X-VCS-Branch: master Date: Wed, 1 Feb 2023 05:03:30 +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: e80fbee6-cf34-4424-93b5-7a8cc3d74a1d X-Archives-Hash: 1aeddf72aaf12c1ce957f079e5e6bf80 commit: 6133a482f1d932e00343affdd47f8051d2662a44 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Tue Aug 2 12:18:53 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Feb 1 05:01:05 2023 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=6133a482 plugin/newebuild.vim: adjust dev-java template Add missing slot operators in >=virtual/jdk-1.8:* and >=virtual/jre-1.8:* Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo-syntax/pull/49 Signed-off-by: Michał Górny gentoo.org> plugin/newebuild.vim | 8 ++++---- 1 file 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! 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=\"\"'