Received: by mail.netbsd.org (Postfix, from userid 605) id 4C6CD84DD5; Sun, 3 Mar 2019 15:26:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C792E84DD4 for ; Sun, 3 Mar 2019 15:26:30 +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 4qce_J2TnD8J for ; Sun, 3 Mar 2019 15:26:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2C72F84DD3 for ; Sun, 3 Mar 2019 15:26:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 26EA0FB16; Sun, 3 Mar 2019 15:26:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155162679051570" MIME-Version: 1.0 Date: Sun, 3 Mar 2019 15:26:30 +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: <20190303152630.26EA0FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_155162679051570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Mar 3 15:26:30 UTC 2019 Modified Files: pkgsrc/lang/ruby: rails.mk Log Message: lang/ruby/rails.mk: switch default rails to 4.2 Switch default Ruby on Rails version to 4.2. To generate a diff of this commit: cvs rdiff -u -r1.70 -r1.71 pkgsrc/lang/ruby/rails.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155162679051570 Content-Disposition: inline Content-Length: 1009 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/ruby/rails.mk diff -u pkgsrc/lang/ruby/rails.mk:1.70 pkgsrc/lang/ruby/rails.mk:1.71 --- pkgsrc/lang/ruby/rails.mk:1.70 Sun Mar 3 14:41:21 2019 +++ pkgsrc/lang/ruby/rails.mk Sun Mar 3 15:26:29 2019 @@ -1,4 +1,4 @@ -# $NetBSD: rails.mk,v 1.70 2019/03/03 14:41:21 taca Exp $ +# $NetBSD: rails.mk,v 1.71 2019/03/03 15:26:29 taca Exp $ .if !defined(_RUBY_RAILS_MK) _RUBY_RAILS_MK= # defined @@ -10,7 +10,7 @@ _RUBY_RAILS_MK= # defined # Select default Ruby on Rails version. # # Possible values: 32 42 51 52 -# Default: 32 +# Default: 42 # # # === Infrastructure variables === @@ -53,11 +53,11 @@ RUBY_RAILS51_VERSION?= 5.1.6.1 RUBY_RAILS52_VERSION?= 5.2.2 RUBY_RAILS_ACCEPTED?= # defined -RUBY_RAILS_DEFAULT?= 32 +RUBY_RAILS_DEFAULT?= 42 RUBY_RAILS_STRICT_DEP?= no -RUBY_RAILS_SUPPORTED= 32 42 51 52 +RUBY_RAILS_SUPPORTED= 42 51 52 32 .if empty(RUBY_RAILS_SUPPORTED:M${RUBY_RAILS_DEFAULT}) .error Unsupported RUBY_RAILS_DEFAULT: ${RUBY_RAILS_DEFAULT} --_----------=_155162679051570--