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 84E5D7A1B1 for ; Wed, 27 Jul 2016 00:28:39 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 2F28D85ED6; Wed, 27 Jul 2016 00:28:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B54A085E78 for ; Wed, 27 Jul 2016 00:28:38 +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 u7fJJS7zgg5E for ; Wed, 27 Jul 2016 00:28:38 +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 2A12A85E24 for ; Wed, 27 Jul 2016 00:28:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 250E4FBB5; Wed, 27 Jul 2016 00:28:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_14695793185140" MIME-Version: 1.0 Date: Wed, 27 Jul 2016 00:28:38 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/devel/R-Rcpp To: pkgsrc-changes@NetBSD.org Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20160727002838.250E4FBB5@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. --_----------=_14695793185140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wen Date: Wed Jul 27 00:28:38 UTC 2016 Modified Files: pkgsrc/devel/R-Rcpp: Makefile distinfo Log Message: Update to 0.12.6 Upstream changes: Changes in Rcpp version 0.12.6 (2016-07-18) Changes in Rcpp API: The long long data type is used only if it is available, to avoid compiler warnings (Kirill Müller in #488). The compiler is made aware that stop() never returns, to improve code path analysis (Kirill Müller in #487 addressing issue #486). String replacement was corrected (Qiang in #479 following mailing list bug report by Masaki Tsuda) Allow for UTF-8 encoding in error messages via RCPP_USING_UTF8_ERROR_STRING macro (Qin Wenfeng in #493) The R function Rf_warningcall is now provided as well (as usual without leading Rf_) (#497 fixing #495) Changes in Rcpp Sugar: Const-ness of min and max functions has been corrected. (Dan Dillon in PR #478 fixing issue #477). Ambiguities for matrix/vector and scalar operations have been fixed (Dan Dillon in PR #476 fixing issue #475). New algorithm header using iterator-based approach for vectorized functions (Dan in PR #481 revisiting PR #428 and addressing issue #426, with futher work by Kirill in PR #488 and Nathan in #503 fixing issue #502). The na_omit() function is now faster for vectors without NA values (Artem Klevtsov in PR #492) Changes in Rcpp Attributes: Add cacheDir argument to sourceCpp() to enable caching of shared libraries across R sessions (JJ in #504). Code generation now deals correctly which packages containing a dot in their name (Qiang in #501 fixing #500). Changes in Rcpp Documentation: A section on default parameters was added to the Rcpp FAQ vignette (James Balamuta in #505 fixing #418). The Rcpp-attributes vignette is now mentioned more prominently in question one of the Rcpp FAQ vignette. The Rcpp Quick Reference vignette received a facelift with new sections on Rcpp attributes and plugins begin added. (James Balamuta in #509 fixing #484). The bib file was updated with respect to the recent JSS publication for RProtoBuf. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/R-Rcpp/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/R-Rcpp/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_14695793185140 Content-Disposition: inline Content-Length: 1668 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/R-Rcpp/Makefile diff -u pkgsrc/devel/R-Rcpp/Makefile:1.4 pkgsrc/devel/R-Rcpp/Makefile:1.5 --- pkgsrc/devel/R-Rcpp/Makefile:1.4 Mon Jul 4 20:44:15 2016 +++ pkgsrc/devel/R-Rcpp/Makefile Wed Jul 27 00:28:37 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2016/07/04 20:44:15 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2016/07/27 00:28:37 wen Exp $ CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_R_CRAN:=contrib/} @@ -9,7 +9,7 @@ COMMENT= Seamless R and C++ Integration LICENSE= gnu-gpl-v2 R_PKGNAME= Rcpp -R_PKGVER= 0.12.5 +R_PKGVER= 0.12.6 USE_LANGUAGES+= c++ Index: pkgsrc/devel/R-Rcpp/distinfo diff -u pkgsrc/devel/R-Rcpp/distinfo:1.5 pkgsrc/devel/R-Rcpp/distinfo:1.6 --- pkgsrc/devel/R-Rcpp/distinfo:1.5 Mon Jul 4 20:44:15 2016 +++ pkgsrc/devel/R-Rcpp/distinfo Wed Jul 27 00:28:37 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2016/07/04 20:44:15 wiz Exp $ +$NetBSD: distinfo,v 1.6 2016/07/27 00:28:37 wen Exp $ -SHA1 (R/Rcpp_0.12.5.tar.gz) = a16d8a1dce5775a8ca0b5b1ff0adb8bfb47783ea -RMD160 (R/Rcpp_0.12.5.tar.gz) = 6f23c5f36ef9bdf1934c8b6e3aee06f9b70a1f79 -SHA512 (R/Rcpp_0.12.5.tar.gz) = a53d9d7694448a97186c20dd9adf859a15beceeef25d6d9d9805070ae6760c1711dec43c14b650075a9b5710a7f961e3f3906d891f585c56b4460ffd49363f38 -Size (R/Rcpp_0.12.5.tar.gz) = 2397088 bytes +SHA1 (R/Rcpp_0.12.6.tar.gz) = e666eb3db6ad2ec6374045161388feaf1b125859 +RMD160 (R/Rcpp_0.12.6.tar.gz) = 56737f28ce849af3653d556440247186a8be5e97 +SHA512 (R/Rcpp_0.12.6.tar.gz) = a0e96a9ab32068a4d0486d579d8306282652b9fb531885e0235cf97b1814b8d32acbbf5ba593c57390bb9d0d6dea5caa9ba4e25914aa25a6532f5448dce0ef39 +Size (R/Rcpp_0.12.6.tar.gz) = 2415707 bytes --_----------=_14695793185140--