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 32A64158015 for ; Wed, 27 Dec 2023 15:58:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C8D52BC016; Wed, 27 Dec 2023 15:58:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 025512BC016 for ; Wed, 27 Dec 2023 15:58:07 +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 33D7B3406C2 for ; Wed, 27 Dec 2023 15:58:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F1E513A0 for ; Wed, 27 Dec 2023 15:58:05 +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: <1703692678.382826e8b6fa99a700df9ae23f1fa0f9bff1c53c.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: 382826e8b6fa99a700df9ae23f1fa0f9bff1c53c X-VCS-Branch: master Date: Wed, 27 Dec 2023 15:58: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: 9d6338f6-d48d-41be-ace9-c02c10699a6a X-Archives-Hash: 452238921cbf1efc48608b8b6b4aed77 commit: 382826e8b6fa99a700df9ae23f1fa0f9bff1c53c Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Wed Dec 27 10:23:02 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Dec 27 15:57:58 2023 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=382826e8 newebuild: default jdk and jre values for DEPEND and RDEPEND We partly revert commit #0938bf9012 which would have caused unnecessary work whenever ::gentoo gets a new Java version. Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo-syntax/pull/64 Signed-off-by: Michał Górny gentoo.org> plugin/newebuild.vim | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/plugin/newebuild.vim b/plugin/newebuild.vim index 4138e28..747758f 100644 --- a/plugin/newebuild.vim +++ b/plugin/newebuild.vim @@ -140,19 +140,9 @@ fun! MakeNewEbuild() put ='CP_DEPEND=\"\"' put ='' put ='DEPEND=\"${CP_DEPEND}' - put =' \|\| (' - put =' virtual/jdk:21' - put =' virtual/jdk:17' - put =' virtual/jdk:11' - put =' virtual/jdk:1.8' - put =' )\"' + put =' >=virtual/jdk-1.8:*\"' put ='RDEPEND=\"${CP_DEPEND}' - put =' \|\| (' - put =' virtual/jre:21' - put =' virtual/jre:17' - put =' virtual/jre:11' - put =' virtual/jre:1.8' - put =' )\"' + put =' >=virtual/jre-1.8:*\"' elseif l:category ==# "dev-perl" || l:category ==# "perl-core" " {{{ perl modules default setup put ='DIST_AUTHOR=\"\"'