Received: by mail.netbsd.org (Postfix, from userid 605) id F15AF84D5D; Tue, 18 Jul 2017 14:44:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8240184D55 for ; Tue, 18 Jul 2017 14:44:09 +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 3ZUSjg40pnjU for ; Tue, 18 Jul 2017 14:44:09 +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 E45B284D4B for ; Tue, 18 Jul 2017 14:44:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E22D7FACD; Tue, 18 Jul 2017 14:44:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150038904862360" MIME-Version: 1.0 Date: Tue, 18 Jul 2017 14:44:08 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/www/ruby-rails42 To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20170718144408.E22D7FACD@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. --_----------=_150038904862360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Tue Jul 18 14:44:08 UTC 2017 Modified Files: pkgsrc/www/ruby-rails42: Makefile Log Message: Fix dependency. Require depends on misc/ruby-sprockets-rails not misc/ruby-sprockets. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/ruby-rails42/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150038904862360 Content-Disposition: inline Content-Length: 972 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/ruby-rails42/Makefile diff -u pkgsrc/www/ruby-rails42/Makefile:1.2 pkgsrc/www/ruby-rails42/Makefile:1.3 --- pkgsrc/www/ruby-rails42/Makefile:1.2 Wed Jun 21 13:12:21 2017 +++ pkgsrc/www/ruby-rails42/Makefile Tue Jul 18 14:44:08 2017 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2017/06/21 13:12:21 taca Exp $ +# $NetBSD: Makefile,v 1.3 2017/07/18 14:44:08 taca Exp $ DISTNAME= rails-${RAILS_VERSION} PKGNAME= ${RUBY_PKGPREFIX}-rails${RUBY_RAILS}-${RAILS_VERSION} +PKGREVISION= 1 CATEGORIES= www MAINTAINER= minskim@NetBSD.org @@ -18,7 +19,7 @@ DEPENDS+= ${RUBY_ACTIVERECORD_DEPENDS} DEPENDS+= ${RUBY_ACTIVESUPPORT_DEPENDS} DEPENDS+= ${RUBY_RAILTIES_DEPENDS} DEPENDS+= ${RUBY_PKGPREFIX}-bundler>=1.3.0<2:../../misc/ruby-bundler -DEPENDS+= ${RUBY_PKGPREFIX}-sprockets-[0-9]*:../../misc/ruby-sprockets +DEPENDS+= ${RUBY_PKGPREFIX}-sprockets-rails-[0-9]*:../../misc/ruby-sprockets-rails CONFLICTS+= ruby[1-9][0-9]-rails-[0-9]* --_----------=_150038904862360--