Received: by mail.netbsd.org (Postfix, from userid 605) id 6976784E6A; Wed, 21 Jul 2021 14:39:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A46F284D54 for ; Wed, 21 Jul 2021 14:39:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id U10t4M0kEKa9 for ; Wed, 21 Jul 2021 14:39:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id E8BEB84CBC for ; Wed, 21 Jul 2021 14:39:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D7B74FA95; Wed, 21 Jul 2021 14:39:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1626878345249420" MIME-Version: 1.0 Date: Wed, 21 Jul 2021 14:39:05 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/lang/ruby To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20210721143905.D7B74FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1626878345249420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Wed Jul 21 14:39:05 UTC 2021 Modified Files: pkgsrc/lang/ruby: rubyversion.mk Log Message: lang/ruby: switch defult Ruby's version to 2.7 Switch default Ruby's version from 2.6 to 2.7. To generate a diff of this commit: cvs rdiff -u -r1.235 -r1.236 pkgsrc/lang/ruby/rubyversion.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1626878345249420 Content-Disposition: inline Content-Length: 1319 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/ruby/rubyversion.mk diff -u pkgsrc/lang/ruby/rubyversion.mk:1.235 pkgsrc/lang/ruby/rubyversion.mk:1.236 --- pkgsrc/lang/ruby/rubyversion.mk:1.235 Wed Jul 7 16:11:57 2021 +++ pkgsrc/lang/ruby/rubyversion.mk Wed Jul 21 14:39:05 2021 @@ -1,4 +1,4 @@ -# $NetBSD: rubyversion.mk,v 1.235 2021/07/07 16:11:57 taca Exp $ +# $NetBSD: rubyversion.mk,v 1.236 2021/07/21 14:39:05 taca Exp $ # # This file determines which Ruby version is used as a dependency for @@ -11,7 +11,7 @@ # The preferered Ruby version to use. # # Possible values: 26 27 30 -# Default: 26 +# Default: 27 # # RUBY_BUILD_DOCUMENT # Build documentation of this package and so that install formated @@ -35,7 +35,7 @@ # The Ruby versions that are acceptable for the package. # # Possible values: 26 27 30 -# Default: 26 27 30 +# Default: 27 30 26 # # RUBY_VERSIONS_INCOMPATIBLE # The Ruby versions that are incompatible for the package. @@ -223,12 +223,12 @@ RUBY27_API_VERSION= 2.7.0 RUBY30_API_VERSION= 3.0.0 # -RUBY_VERSION_DEFAULT?= 26 +RUBY_VERSION_DEFAULT?= 27 # supported Ruby's version RUBY_VERSIONS_SUPPORTED= 26 27 30 -RUBY_VERSIONS_ACCEPTED?= 26 27 30 +RUBY_VERSIONS_ACCEPTED?= 27 30 26 RUBY_VERSIONS_INCOMPATIBLE?= .if empty(RUBY_VERSIONS_SUPPORTED:M${RUBY_VERSION_DEFAULT}) --_----------=_1626878345249420--