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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 20E9E15808B for ; Wed, 23 Feb 2022 09:18:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07F4AE0970; Wed, 23 Feb 2022 09:18:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E2478E0970 for ; Wed, 23 Feb 2022 09:18:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A345C342F6E for ; Wed, 23 Feb 2022 09:18:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F4D6D0 for ; Wed, 23 Feb 2022 09:18:08 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1645607866.5bd9d4fc7fe0af7ce53545fd234bc329b2e32ebf.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/cglib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/cglib/cglib-3.3.0-r1.ebuild X-VCS-Directories: dev-java/cglib/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 5bd9d4fc7fe0af7ce53545fd234bc329b2e32ebf X-VCS-Branch: master Date: Wed, 23 Feb 2022 09:18:08 +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: 4588390c-2782-4958-81b1-2a482a836491 X-Archives-Hash: 39ebd7c9b5a71f568de19f73a929ac88 commit: 5bd9d4fc7fe0af7ce53545fd234bc329b2e32ebf Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Tue Feb 22 18:04:06 2022 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Wed Feb 23 09:17:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bd9d4fc dev-java/cglib: Fix syntax error Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Miroslav Šulc gentoo.org> dev-java/cglib/cglib-3.3.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-java/cglib/cglib-3.3.0-r1.ebuild b/dev-java/cglib/cglib-3.3.0-r1.ebuild index d82a7f3a7d4a..26ae3e989c16 100644 --- a/dev-java/cglib/cglib-3.3.0-r1.ebuild +++ b/dev-java/cglib/cglib-3.3.0-r1.ebuild @@ -57,7 +57,7 @@ src_test() { # throws java.lang.ClassFormatError accessible: module java.base does not "opens java.lang" to unnamed module @42bb2aee local vm_version="$(java-config -g PROVIDES_VERSION)" - if [[ "${vm_version}" -ge "17" ]] ; then + if ver_test "${vm_version}" -ge "17" ; then JAVA_TEST_EXTRA_ARGS+=( --add-opens=java.base/java.lang=ALL-UNNAMED ) fi