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 8B88215808B for ; Sun, 13 Mar 2022 07:11:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0F92E08CE; Sun, 13 Mar 2022 07:11:24 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B5F1DE08CE for ; Sun, 13 Mar 2022 07:11:24 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EE277343234 for ; Sun, 13 Mar 2022 07:11:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B54F31A for ; Sun, 13 Mar 2022 07:11:20 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1647155465.b855ce0214905386ad7a54d8f3e3796d7069f75c.graaff@gentoo> Subject: [gentoo-commits] proj/ruby-scripts:master commit in: eselect-ruby/ X-VCS-Repository: proj/ruby-scripts X-VCS-Files: eselect-ruby/ruby.eselect X-VCS-Directories: eselect-ruby/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: b855ce0214905386ad7a54d8f3e3796d7069f75c X-VCS-Branch: master Date: Sun, 13 Mar 2022 07:11:20 +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: a9d1a455-7012-45aa-b850-15fb12a7ed59 X-Archives-Hash: 014d072f207efa507a1b5db9e3377135 commit: b855ce0214905386ad7a54d8f3e3796d7069f75c Author: Hans de Graaff degraaff org> AuthorDate: Sun Mar 13 07:07:07 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Mar 13 07:11:05 2022 +0000 URL: https://gitweb.gentoo.org/proj/ruby-scripts.git/commit/?id=b855ce02 Add support for ruby 3.1 Signed-off-by: Hans de Graaff degraaff.org> eselect-ruby/ruby.eselect | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eselect-ruby/ruby.eselect b/eselect-ruby/ruby.eselect index 4bc0fab..5041627 100644 --- a/eselect-ruby/ruby.eselect +++ b/eselect-ruby/ruby.eselect @@ -4,14 +4,14 @@ DESCRIPTION="Manage Ruby symlinks" MAINTAINER="ruby@gentoo.org" -VERSION="20201225" +VERSION="20220313" bindir=/usr/bin libdir=/usr/lib man1dir=/usr/share/man/man1 find_targets() { - for t in ${EROOT}${bindir}/${1:-ruby}{18,19,20,21,22,23,24,25,26,27,30} ; do + for t in ${EROOT}${bindir}/${1:-ruby}{18,19,20,21,22,23,24,25,26,27,30,31} ; do [[ -e $t ]] || continue echo ${t} done