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 051137A16D for ; Sun, 9 Oct 2016 14:08:20 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 71F6B85E8A; Sun, 9 Oct 2016 14:08:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0407185E7E for ; Sun, 9 Oct 2016 14:08:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id XsLigBruTbot for ; Sun, 9 Oct 2016 14:08:19 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 857B385E74 for ; Sun, 9 Oct 2016 14:08:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8057EFBD2; Sun, 9 Oct 2016 14:08:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1476022099251950" MIME-Version: 1.0 Date: Sun, 9 Oct 2016 14:08:19 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-flexmock To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20161009140819.8057EFBD2@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. --_----------=_1476022099251950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Oct 9 14:08:19 UTC 2016 Modified Files: pkgsrc/devel/ruby-flexmock: Makefile distinfo Log Message: Update ruby-flexmock to 2.2.1. 2.2.0: - #new_instances now mocks the #initialize method instead of mocking after the allocation was done. This allows to do mock methods called by #initialize itself. Behaviour when the allocator is explicitely provided is left unchanged, which means that the old behaviour is still available by passing :new to new_instances. 2.1.0: - added `#and_iterates` to fix some shortcomings of `#and_yield` without breaking backward compatibility - strict partial mocks (and "based mocks" if `FlexMock.partials_are_based` is set to true) are now based on the object's singleton class, instead of its class. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/ruby-flexmock/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/ruby-flexmock/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1476022099251950 Content-Disposition: inline Content-Length: 1624 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-flexmock/Makefile diff -u pkgsrc/devel/ruby-flexmock/Makefile:1.19 pkgsrc/devel/ruby-flexmock/Makefile:1.20 --- pkgsrc/devel/ruby-flexmock/Makefile:1.19 Thu Mar 3 19:42:29 2016 +++ pkgsrc/devel/ruby-flexmock/Makefile Sun Oct 9 14:08:19 2016 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2016/03/03 19:42:29 shattered Exp $ +# $NetBSD: Makefile,v 1.20 2016/10/09 14:08:19 taca Exp $ -DISTNAME= flexmock-2.0.4 +DISTNAME= flexmock-2.2.1 CATEGORIES= devel MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/devel/ruby-flexmock/distinfo diff -u pkgsrc/devel/ruby-flexmock/distinfo:1.18 pkgsrc/devel/ruby-flexmock/distinfo:1.19 --- pkgsrc/devel/ruby-flexmock/distinfo:1.18 Tue Feb 16 15:02:45 2016 +++ pkgsrc/devel/ruby-flexmock/distinfo Sun Oct 9 14:08:19 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.18 2016/02/16 15:02:45 taca Exp $ +$NetBSD: distinfo,v 1.19 2016/10/09 14:08:19 taca Exp $ -SHA1 (flexmock-2.0.4.gem) = 62cf08c0021539800126de5438b567d5595da733 -RMD160 (flexmock-2.0.4.gem) = ae812556109520a24645acdd8dafe35b3810f559 -SHA512 (flexmock-2.0.4.gem) = 8840bd2bd04ae182b173e8ce314e6e0995a2dbbd24bd5e7575f4ab2541e004e442ae37de712655fdafb506a68ef090b13d36a8066a3102cc9044db815a561404 -Size (flexmock-2.0.4.gem) = 63488 bytes +SHA1 (flexmock-2.2.1.gem) = 6a7db7440f995086b2d7af6ba1b66609131bce33 +RMD160 (flexmock-2.2.1.gem) = 4df268d8c0ec1fd2dc6bd230fa4bd21125dbb82e +SHA512 (flexmock-2.2.1.gem) = 65dbc6e0c3019bbaaade0219e84bad5e27250ae05262f4f6922bfb6c6bca809d8d4e2d9c11510b109a7419010071c0e4ec06aa5233b0da3128d263a5dda82179 +Size (flexmock-2.2.1.gem) = 64512 bytes --_----------=_1476022099251950--