Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 4CC1D7A2A9 for ; Sat, 19 Nov 2016 15:36:36 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id F394D855AB; Sat, 19 Nov 2016 15:36:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 84DEC85590 for ; Sat, 19 Nov 2016 15:36:35 +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 C5O3j-xTrscI for ; Sat, 19 Nov 2016 15:36:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E9EEC84CBD for ; Sat, 19 Nov 2016 15:36:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E7DF1FBA6; Sat, 19 Nov 2016 15:36:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1479569794108200" MIME-Version: 1.0 Date: Sat, 19 Nov 2016 15:36:34 +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: <20161119153634.E7DF1FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1479569794108200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sat Nov 19 15:36:34 UTC 2016 Modified Files: pkgsrc/lang/ruby: gem-vars.mk Log Message: Extract _RUBYGEMS_MINORS more strictly. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/ruby/gem-vars.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1479569794108200 Content-Disposition: inline Content-Length: 861 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/ruby/gem-vars.mk diff -u pkgsrc/lang/ruby/gem-vars.mk:1.3 pkgsrc/lang/ruby/gem-vars.mk:1.4 --- pkgsrc/lang/ruby/gem-vars.mk:1.3 Wed Nov 25 12:51:17 2015 +++ pkgsrc/lang/ruby/gem-vars.mk Sat Nov 19 15:36:34 2016 @@ -1,4 +1,4 @@ -# $NetBSD: gem-vars.mk,v 1.3 2015/11/25 12:51:17 jperkin Exp $ +# $NetBSD: gem-vars.mk,v 1.4 2016/11/19 15:36:34 taca Exp $ # # This Makefile fragment defines various make(1) variables for Ruby gems # support. @@ -20,7 +20,7 @@ RUBYGEM= ${LOCALBASE}/bin/${RUBYGEM_NAME RUBY_GEMS_VERSION?= ${RUBY_GEMS_PKGSRC_VERS} _RUBYGEMS_MAJOR= ${RUBY_GEMS_VERSION:C/\.[0-9\.]+$//} -_RUBYGEMS_MINORS= ${RUBY_GEMS_VERSION:C/^([0-9]+)\.*//} +_RUBYGEMS_MINORS= ${RUBY_GEMS_VERSION:C/^([0-9]+)\.*//:C/\..*//} .if ${RUBY_VER} == "18" BUILD_DEPENDS+= ${RUBY_PKGPREFIX}-rubygems>=1.1.0:../../misc/rubygems --_----------=_1479569794108200--