diff options
author | taca <taca@pkgsrc.org> | 2021-07-21 14:39:05 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2021-07-21 14:39:05 +0000 |
commit | a6a33db425b0c35a9d9ce008a8e5c56f733204d9 (patch) | |
tree | ac6ef15b169946fcabda0c042a0b723cc2da9821 /lang | |
parent | 581bfd4aaf5eef97ec6677857141fa60f2f563b1 (diff) | |
download | pkgsrc-a6a33db425b0c35a9d9ce008a8e5c56f733204d9.tar.gz |
lang/ruby: switch defult Ruby's version to 2.7
Switch default Ruby's version from 2.6 to 2.7.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/ruby/rubyversion.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/ruby/rubyversion.mk b/lang/ruby/rubyversion.mk index 494b36d0826..54f1fed5e17 100644 --- a/lang/ruby/rubyversion.mk +++ b/lang/ruby/rubyversion.mk @@ -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}) |