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 05C6D15ACFB for ; Tue, 25 Apr 2023 11:48:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11880E09A7; Tue, 25 Apr 2023 11:48:45 +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 D88ECE09A7 for ; Tue, 25 Apr 2023 11:48:44 +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 00458335DAF for ; Tue, 25 Apr 2023 11:48:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C89F29 for ; Tue, 25 Apr 2023 11:48:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1682423280.24a9db84673db6e5a91956b5c7d6c280832c8877.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/subversion/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/subversion/subversion-1.14.2-r1.ebuild X-VCS-Directories: dev-vcs/subversion/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 24a9db84673db6e5a91956b5c7d6c280832c8877 X-VCS-Branch: master Date: Tue, 25 Apr 2023 11:48:42 +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: b8c3f3f7-e397-4357-97c1-6aec481fcf15 X-Archives-Hash: bdcba478a33650dd7905d9e789103914 commit: 24a9db84673db6e5a91956b5c7d6c280832c8877 Author: Sam James gentoo org> AuthorDate: Tue Apr 25 11:47:55 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Apr 25 11:48:00 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24a9db84 dev-vcs/subversion: fix rubygems USE Fixes: 03a57709708195c17c54966634cdfd51acc905b7 Closes: https://bugs.gentoo.org/905006 Signed-off-by: Sam James gentoo.org> dev-vcs/subversion/subversion-1.14.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-vcs/subversion/subversion-1.14.2-r1.ebuild b/dev-vcs/subversion/subversion-1.14.2-r1.ebuild index 2a9b803e1b87..f08666b88da4 100644 --- a/dev-vcs/subversion/subversion-1.14.2-r1.ebuild +++ b/dev-vcs/subversion/subversion-1.14.2-r1.ebuild @@ -135,7 +135,7 @@ pkg_setup() { RB_VER="" for rbslot in $(sed 's@\([[:digit:]]\+\)\([[:digit:]]\)@\1.\2@g' <<< ${USE_RUBY//ruby}) ; do # No break here as we want to pick the best (latest) - if has_version "dev-lang/ruby:${rbslot}" && has_version "virtual/rubygems[ruby_targets_ruby${rbslot}(-)]" ; then + if has_version "dev-lang/ruby:${rbslot}" && has_version "virtual/rubygems[ruby_targets_ruby${rbslot/.}(-)]" ; then RB_VER="${rbslot/.}" fi done