Received: by mail.netbsd.org (Postfix, from userid 605) id E83F484FCB; Sun, 22 Aug 2021 14:49:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 30F0384E6A for ; Sun, 22 Aug 2021 14:49:06 +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 S3XHQ4ExZ4q7 for ; Sun, 22 Aug 2021 14:49:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 835F584E62 for ; Sun, 22 Aug 2021 14:49:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 80ADCFA97; Sun, 22 Aug 2021 14:49:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1629643745157260" MIME-Version: 1.0 Date: Sun, 22 Aug 2021 14:49:05 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/meta-pkgs/ruby-shoulda To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20210822144905.80ADCFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1629643745157260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Aug 22 14:49:05 UTC 2021 Modified Files: pkgsrc/meta-pkgs/ruby-shoulda: Makefile Log Message: meta-pkgs/ruby-shoulda: update dependency Allow depending to newer devel/ruby-shoulda-matchers. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/meta-pkgs/ruby-shoulda/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1629643745157260 Content-Disposition: inline Content-Length: 1062 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/meta-pkgs/ruby-shoulda/Makefile diff -u pkgsrc/meta-pkgs/ruby-shoulda/Makefile:1.10 pkgsrc/meta-pkgs/ruby-shoulda/Makefile:1.11 --- pkgsrc/meta-pkgs/ruby-shoulda/Makefile:1.10 Sun Jun 14 13:32:57 2020 +++ pkgsrc/meta-pkgs/ruby-shoulda/Makefile Sun Aug 22 14:49:05 2021 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.10 2020/06/14 13:32:57 taca Exp $ +# $NetBSD: Makefile,v 1.11 2021/08/22 14:49:05 taca Exp $ DISTNAME= shoulda-4.0.0 PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= devel meta-pkgs ruby MAINTAINER= pkgsrc-users@NetBSD.org @@ -10,9 +11,11 @@ COMMENT= Making tests easy on the finger LICENSE= mit DEPENDS+= ${RUBY_PKGPREFIX}-shoulda-context>=2.0<3:../../devel/ruby-shoulda-context -DEPENDS+= ${RUBY_PKGPREFIX}-shoulda-matchers>=4.0<5:../../devel/ruby-shoulda-matchers +DEPENDS+= ${RUBY_PKGPREFIX}-shoulda-matchers>=4.0:../../devel/ruby-shoulda-matchers USE_LANGUAGES= # none +GEMSPEC_OVERRIDE+= shoulda-matchers>=4.0 + .include "../../lang/ruby/gem.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1629643745157260--