Received: by mail.netbsd.org (Postfix, from userid 605) id 6874C84EA0; Mon, 25 Feb 2019 14:53:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E381884DA0 for ; Mon, 25 Feb 2019 14:53:05 +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 E55IKd0Ee2wD for ; Mon, 25 Feb 2019 14:53:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6804184C82 for ; Mon, 25 Feb 2019 14:53:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 62A6EFB16; Mon, 25 Feb 2019 14:53:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155110638547180" MIME-Version: 1.0 Date: Mon, 25 Feb 2019 14:53:05 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-mustache To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20190225145305.62A6EFB16@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. --_----------=_155110638547180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Mon Feb 25 14:53:05 UTC 2019 Modified Files: pkgsrc/devel/ruby-mustache: Makefile distinfo Added Files: pkgsrc/devel/ruby-mustache: ALTERNATIVES Log Message: devel/ruby-mustache: update to 1.1.0 1.1.0 (2018-10-13) * [feat] Introduces Mustache#escape. * This method receives a non-stringified value to allow for more flexibility in the escaping, like JSON. (#245) * [bug] Raise correct error when closing unopened section (#240) * [bug] Fix use of deprecated File.exists? (#241) * [bug] Fix variable shadowing warning (#241) To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/ruby-mustache/ALTERNATIVES cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/ruby-mustache/Makefile \ pkgsrc/devel/ruby-mustache/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155110638547180 Content-Disposition: inline Content-Length: 1910 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-mustache/Makefile diff -u pkgsrc/devel/ruby-mustache/Makefile:1.1 pkgsrc/devel/ruby-mustache/Makefile:1.2 --- pkgsrc/devel/ruby-mustache/Makefile:1.1 Mon Aug 21 11:49:31 2017 +++ pkgsrc/devel/ruby-mustache/Makefile Mon Feb 25 14:53:05 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.1 2017/08/21 11:49:31 nils Exp $ +# $NetBSD: Makefile,v 1.2 2019/02/25 14:53:05 taca Exp $ -DISTNAME= mustache-1.0.5 +DISTNAME= mustache-1.1.0 PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME} CATEGORIES= devel Index: pkgsrc/devel/ruby-mustache/distinfo diff -u pkgsrc/devel/ruby-mustache/distinfo:1.1 pkgsrc/devel/ruby-mustache/distinfo:1.2 --- pkgsrc/devel/ruby-mustache/distinfo:1.1 Mon Aug 21 11:49:31 2017 +++ pkgsrc/devel/ruby-mustache/distinfo Mon Feb 25 14:53:05 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2017/08/21 11:49:31 nils Exp $ +$NetBSD: distinfo,v 1.2 2019/02/25 14:53:05 taca Exp $ -SHA1 (mustache-1.0.5.gem) = ea169a2b7d3be2cf5e9ed210e3ffcb557f355303 -RMD160 (mustache-1.0.5.gem) = ee84d2d0349176915c71aca56ad460a41371c9a2 -SHA512 (mustache-1.0.5.gem) = d9b2c55d758bd4e317732307b513e2a079b04ec7a1203233834fd08a3a32f7b1bf8283d207af2f7082a8c4847f9c5955a557f19bad9b08a1dee2f32417eca190 -Size (mustache-1.0.5.gem) = 41984 bytes +SHA1 (mustache-1.1.0.gem) = 4cc9936d64f115193c9021257f928c9b566ab419 +RMD160 (mustache-1.1.0.gem) = 36626a07282c67d781282ed35ffa71bc5cf634f2 +SHA512 (mustache-1.1.0.gem) = 5e8daa7cfb6151e86e5d2223a026538194e03331bcd74f15704404795eb8c6c28899f29fa9fe421fe38e026b38ad734fe5574d2a6d4aa1e53ed5a566a8061c61 +Size (mustache-1.1.0.gem) = 42496 bytes Added files: Index: pkgsrc/devel/ruby-mustache/ALTERNATIVES diff -u /dev/null pkgsrc/devel/ruby-mustache/ALTERNATIVES:1.1 --- /dev/null Mon Feb 25 14:53:05 2019 +++ pkgsrc/devel/ruby-mustache/ALTERNATIVES Mon Feb 25 14:53:05 2019 @@ -0,0 +1 @@ +bin/mustache @PREFIX@/bin/mustache@RUBY_SUFFIX@ --_----------=_155110638547180--