Received: by mail.netbsd.org (Postfix, from userid 605) id AB8FF84D3D; Tue, 7 Jun 2022 14:49:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C9D3A84E58 for ; Tue, 7 Jun 2022 14:43:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id PS-muEjRDPss for ; Tue, 7 Jun 2022 14:43:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 288E184D3D for ; Tue, 7 Jun 2022 14:43:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4B3A8FB19; Tue, 7 Jun 2022 14:44:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165461309092730" MIME-Version: 1.0 Date: Tue, 7 Jun 2022 14:44:50 +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: <20220607144450.4B3A8FB19@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165461309092730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Tue Jun 7 14:44:50 UTC 2022 Modified Files: pkgsrc/lang/ruby: rails.mk Log Message: lang/ruby/rails.mk: pass building RAILS version * Set RUBY_RAILS_REQD with decided RUBY_RAILS. * Remove trivial pkglint warning. To generate a diff of this commit: cvs rdiff -u -r1.123 -r1.124 pkgsrc/lang/ruby/rails.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165461309092730 Content-Disposition: inline Content-Length: 873 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.123 pkgsrc/lang/ruby/rails.mk:1.124 --- pkgsrc/lang/ruby/rails.mk:1.123 Tue May 17 00:42:33 2022 +++ pkgsrc/lang/ruby/rails.mk Tue Jun 7 14:44:50 2022 @@ -1,4 +1,4 @@ -# $NetBSD: rails.mk,v 1.123 2022/05/17 00:42:33 gutteridge Exp $ +# $NetBSD: rails.mk,v 1.124 2022/06/07 14:44:50 taca Exp $ .if !defined(_RUBY_RAILS_MK) _RUBY_RAILS_MK= # defined @@ -52,7 +52,7 @@ RUBY_RAILS60_VERSION?= 6.0.4.8 RUBY_RAILS61_VERSION?= 6.1.5.1 RUBY_RAILS70_VERSION?= 7.0.2.4 -RUBY_RAILS_ACCEPTED?= # defined +RUBY_RAILS_ACCEPTED?= # empty RUBY_RAILS_DEFAULT?= 52 RUBY_RAILS_STRICT_DEP?= no @@ -88,7 +88,7 @@ RUBY_RAILS?= ${rr} . endfor .endif -RUBY_RAILS?= ${RUBY_RAILS_SUPPORTED} +RUBY_RAILS_REQD?= ${RUBY_RAILS} .if ${RUBY_RAILS} == "70" RAILS_VERSION:= ${RUBY_RAILS70_VERSION} --_----------=_165461309092730--