Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 45CC284E66 for ; Sun, 8 Oct 2023 11:52:54 +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 rtSiuWykr5IF for ; Sun, 8 Oct 2023 11:52:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9435184D62 for ; Sun, 8 Oct 2023 11:52:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8D349FADC; Sun, 8 Oct 2023 11:52:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1696765973140960" MIME-Version: 1.0 Date: Sun, 8 Oct 2023 11:52:53 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/www/ruby-actionpack61 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20231008115253.8D349FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1696765973140960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Oct 8 11:52:53 UTC 2023 Modified Files: pkgsrc/www/ruby-actionpack61: Makefile Log Message: www/ruby-actionpack61: change dependency Switch to depend on www/ruby-rack instead of www/ruby-rack2 since there is no need to depend on rack < 3. (It was required for actionpack 6.0.) Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/www/ruby-actionpack61/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1696765973140960 Content-Disposition: inline Content-Length: 1045 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/ruby-actionpack61/Makefile diff -u pkgsrc/www/ruby-actionpack61/Makefile:1.4 pkgsrc/www/ruby-actionpack61/Makefile:1.5 --- pkgsrc/www/ruby-actionpack61/Makefile:1.4 Thu Jan 19 14:31:10 2023 +++ pkgsrc/www/ruby-actionpack61/Makefile Sun Oct 8 11:52:53 2023 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2023/01/19 14:31:10 taca Exp $ +# $NetBSD: Makefile,v 1.5 2023/10/08 11:52:53 taca Exp $ DISTNAME= actionpack-${RAILS_VERSION} PKGNAME= ${RUBY_PKGPREFIX}-actionpack${RUBY_RAILS}-${RAILS_VERSION} +PKGREVISION= 1 CATEGORIES= www MAINTAINER= pkgsrc-users@NetBSD.org @@ -10,7 +11,7 @@ COMMENT= Toolkit for building modeling f LICENSE= mit DEPENDS+= ${RUBY_ACTIONVIEW_DEPENDS} -DEPENDS+= ${RUBY_PKGPREFIX}-rack2>=2.0:../../www/ruby-rack2 +DEPENDS+= ${RUBY_PKGPREFIX}-rack>=2.0:../../www/ruby-rack DEPENDS+= ${RUBY_PKGPREFIX}-rack-test>=0.6.3:../../www/ruby-rack-test # ruby-actionview already depends them. #DEPENDS+= ${RUBY_PKGPREFIX}-rails-dom-testing>=2.0<3:../../textproc/ruby-rails-dom-testing --_----------=_1696765973140960--