Received: by mail.netbsd.org (Postfix, from userid 605) id 8FE5884F4F; Thu, 4 Jan 2018 13:15:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 18B0784F4C for ; Thu, 4 Jan 2018 13:15:20 +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 sWYCXyIft4wM for ; Thu, 4 Jan 2018 13:15:19 +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 6DA0184D99 for ; Thu, 4 Jan 2018 13:15:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 606CAFBDE; Thu, 4 Jan 2018 13:15:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1515071719254540" MIME-Version: 1.0 Date: Thu, 4 Jan 2018 13:15:19 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-activesupport42 To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20180104131519.606CAFBDE@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. --_----------=_1515071719254540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Thu Jan 4 13:15:19 UTC 2018 Modified Files: pkgsrc/devel/ruby-activesupport42: Makefile Log Message: devel/ruby-activesupport42: improve dependency No need to depends on ruby-minitest since minimum version of minitest is bundled with Ruby 2.2 and later. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ruby-activesupport42/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1515071719254540 Content-Disposition: inline Content-Length: 1162 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-activesupport42/Makefile diff -u pkgsrc/devel/ruby-activesupport42/Makefile:1.2 pkgsrc/devel/ruby-activesupport42/Makefile:1.3 --- pkgsrc/devel/ruby-activesupport42/Makefile:1.2 Wed Jun 21 13:12:20 2017 +++ pkgsrc/devel/ruby-activesupport42/Makefile Thu Jan 4 13:15:19 2018 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2017/06/21 13:12:20 taca Exp $ +# $NetBSD: Makefile,v 1.3 2018/01/04 13:15:19 taca Exp $ DISTNAME= activesupport-${RAILS_VERSION} PKGNAME= ${RUBY_PKGPREFIX}-activesupport${RUBY_RAILS}-${RAILS_VERSION} +PKGREVISION= 1 CATEGORIES= devel MAINTAINER= minskim@NetBSD.org @@ -10,9 +11,10 @@ COMMENT= Toolkit of support libraries (p LICENSE= mit DEPENDS+= ${RUBY_PKGPREFIX}-i18n>=0.7:../../devel/ruby-i18n -DEPENDS+= ${RUBY_PKGPREFIX}-minitest>=5.1:../../devel/ruby-minitest DEPENDS+= ${RUBY_PKGPREFIX}-thread_safe>=0.3.4:../../misc/ruby-thread_safe DEPENDS+= ${RUBY_PKGPREFIX}-tzinfo>=1.1:../../time/ruby-tzinfo +# minitest 5.4.3 is bundlerd with Ruby 2.2 and later. +#DEPENDS+= ${RUBY_PKGPREFIX}-minitest>=5.1:../../devel/ruby-minitest RUBY_RAILS_SUPPORTED= 42 RUBY_RAILS_STRICT_DEP= yes --_----------=_1515071719254540--