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 AC8A87A2C2 for ; Sun, 18 Dec 2016 02:28:51 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 58B84855E1; Sun, 18 Dec 2016 02:28:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DCCDC855DC for ; Sun, 18 Dec 2016 02:28:50 +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 Nl5aPEvt5Svr for ; Sun, 18 Dec 2016 02:28:50 +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 6AB3584CBD for ; Sun, 18 Dec 2016 02:28:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 61879FBA6; Sun, 18 Dec 2016 02:28:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1482028130288570" MIME-Version: 1.0 Date: Sun, 18 Dec 2016 02:28:50 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/devel/R-evaluate To: pkgsrc-changes@NetBSD.org Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20161218022850.61879FBA6@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. --_----------=_1482028130288570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Sun Dec 18 02:28:50 UTC 2016 Modified Files: pkgsrc/devel/R-evaluate: Makefile distinfo Log Message: Update to 0.10 Upstream changes: Version 0.10 ------------------------------------------------------------------------------ * Added option for the evaluate function to include timing information of ran commands. This information will be subsequently rendered by the replay. Example usage: evaluate::replay(evaluate::evaluate('Sys.sleep(1)', include_timing = TRUE)) * Added a new function `flush_console()` to emulate `flush.console()` in `evaluate()` (#61). * Added a `inject_funs()` function to create functions in the environment passed to the `envir` argument of `evaluate()`. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/R-evaluate/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/R-evaluate/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1482028130288570 Content-Disposition: inline Content-Length: 1746 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/R-evaluate/Makefile diff -u pkgsrc/devel/R-evaluate/Makefile:1.3 pkgsrc/devel/R-evaluate/Makefile:1.4 --- pkgsrc/devel/R-evaluate/Makefile:1.3 Thu Jul 28 14:16:39 2016 +++ pkgsrc/devel/R-evaluate/Makefile Sun Dec 18 02:28:50 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2016/07/28 14:16:39 wen Exp $ +# $NetBSD: Makefile,v 1.4 2016/12/18 02:28:50 wen Exp $ CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_R_CRAN:=contrib/} @@ -9,7 +9,7 @@ COMMENT= Parsing and evaluation tools # TODO: LICENSE= GPL R_PKGNAME= evaluate -R_PKGVER= 0.9 +R_PKGVER= 0.10 DEPENDS+= R-stringr>=0.6.2:../../textproc/R-stringr Index: pkgsrc/devel/R-evaluate/distinfo diff -u pkgsrc/devel/R-evaluate/distinfo:1.4 pkgsrc/devel/R-evaluate/distinfo:1.5 --- pkgsrc/devel/R-evaluate/distinfo:1.4 Thu Jul 28 14:16:39 2016 +++ pkgsrc/devel/R-evaluate/distinfo Sun Dec 18 02:28:50 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2016/07/28 14:16:39 wen Exp $ +$NetBSD: distinfo,v 1.5 2016/12/18 02:28:50 wen Exp $ -SHA1 (R/evaluate_0.9.tar.gz) = e76782b7b0aa38e8a3e54321fe0fbb9b2a161b52 -RMD160 (R/evaluate_0.9.tar.gz) = c4e77a1770431330ddee64e27294bd43fdaf9829 -SHA512 (R/evaluate_0.9.tar.gz) = 1ca91a744c9889040e22593849ff44aeee7844d7f7c993d7f65fc34932bb26f88ef098f3ce18a4735deb49615aba98234c6087d940d59627015ab54c82324b83 -Size (R/evaluate_0.9.tar.gz) = 19165 bytes +SHA1 (R/evaluate_0.10.tar.gz) = bb50790641bf430c197f0f2df4463bfa4df8df3e +RMD160 (R/evaluate_0.10.tar.gz) = 665d13cd10f8fd69fecc1bc88401f4c25d30e59d +SHA512 (R/evaluate_0.10.tar.gz) = 8aeaaae96e87e81ff32cd23a663c6620c1ada7ec633957420ce9b6446437afd92e1ab7abdaab0c4968c9afef8e3d615db719b5a733c4b67c807f7dbd18346b4b +Size (R/evaluate_0.10.tar.gz) = 21914 bytes --_----------=_1482028130288570--