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 2FE6B7A1B7 for ; Thu, 28 Jul 2016 14:16:41 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D72B685E93; Thu, 28 Jul 2016 14:16:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 693D885E77 for ; Thu, 28 Jul 2016 14:16:40 +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 TgVTwAMBP6Ec for ; Thu, 28 Jul 2016 14:16:40 +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 ECFF185E61 for ; Thu, 28 Jul 2016 14:16:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E7B13FBB5; Thu, 28 Jul 2016 14:16:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1469715399250080" MIME-Version: 1.0 Date: Thu, 28 Jul 2016 14:16:39 +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: <20160728141639.E7B13FBB5@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. --_----------=_1469715399250080 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Thu Jul 28 14:16:39 UTC 2016 Modified Files: pkgsrc/devel/R-evaluate: Makefile distinfo Log Message: Update to 0.9 Upstream changes: Version 0.9 ------------------------------------------------------------------------------ * Added an argument `allow_error` to `parse_all()` to allow syntactical errors in R source code when `allow_error = TRUE`; this means `evaluate(stop_on_error = 0 or 1)` will no longer stop on syntactical errors but returns a list of source code and the error object instead. This can be useful to show syntactical errors for pedagogical purposes. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/R-evaluate/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/R-evaluate/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1469715399250080 Content-Disposition: inline Content-Length: 1751 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.2 pkgsrc/devel/R-evaluate/Makefile:1.3 --- pkgsrc/devel/R-evaluate/Makefile:1.2 Sat Apr 16 14:15:19 2016 +++ pkgsrc/devel/R-evaluate/Makefile Thu Jul 28 14:16:39 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2016/04/16 14:15:19 wen Exp $ +# $NetBSD: Makefile,v 1.3 2016/07/28 14:16:39 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.8.3 +R_PKGVER= 0.9 DEPENDS+= R-stringr>=0.6.2:../../textproc/R-stringr Index: pkgsrc/devel/R-evaluate/distinfo diff -u pkgsrc/devel/R-evaluate/distinfo:1.3 pkgsrc/devel/R-evaluate/distinfo:1.4 --- pkgsrc/devel/R-evaluate/distinfo:1.3 Sat Apr 16 14:15:19 2016 +++ pkgsrc/devel/R-evaluate/distinfo Thu Jul 28 14:16:39 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2016/04/16 14:15:19 wen Exp $ +$NetBSD: distinfo,v 1.4 2016/07/28 14:16:39 wen Exp $ -SHA1 (R/evaluate_0.8.3.tar.gz) = 443ca923c120ec4dd52b7390ebe27f9ca75a7699 -RMD160 (R/evaluate_0.8.3.tar.gz) = 10ac2408b97d35f62f9e5e8b0c7596fd51865217 -SHA512 (R/evaluate_0.8.3.tar.gz) = 7d3060a9612def46b8c88d76e7c0e684dd09d708a429b681189c4014e863c394e7eb9af8f95989eb22d3d905f9011a061456fcb2d065599d9239448ef17594fd -Size (R/evaluate_0.8.3.tar.gz) = 18622 bytes +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 --_----------=_1469715399250080--