[Rcpp-commits] r865 - in pkg/Rcpp: . debian inst inst/examples/functionCallback

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Mar 9 20:09:51 CET 2010


Author: edd
Date: 2010-03-09 20:09:50 +0100 (Tue, 09 Mar 2010)
New Revision: 865

Modified:
   pkg/Rcpp/DESCRIPTION
   pkg/Rcpp/INDEX
   pkg/Rcpp/NEWS
   pkg/Rcpp/debian/changelog
   pkg/Rcpp/debian/r-cran-rcpp.lintian-overrides
   pkg/Rcpp/inst/ChangeLog
   pkg/Rcpp/inst/examples/functionCallback/buildAndRun.sh
Log:
Rcpp release 0.7.8


Modified: pkg/Rcpp/DESCRIPTION
===================================================================
--- pkg/Rcpp/DESCRIPTION	2010-03-09 19:08:56 UTC (rev 864)
+++ pkg/Rcpp/DESCRIPTION	2010-03-09 19:09:50 UTC (rev 865)
@@ -1,6 +1,6 @@
 Package: Rcpp
 Title: Rcpp R/C++ interface package
-Version: 0.7.7.15
+Version: 0.7.8
 Date: $Date$
 Author: Dirk Eddelbuettel and Romain Francois, with contributions 
  by Simon Urbanek and David Reiss; based on code written during 

Modified: pkg/Rcpp/INDEX
===================================================================
--- pkg/Rcpp/INDEX	2010-03-09 19:08:56 UTC (rev 864)
+++ pkg/Rcpp/INDEX	2010-03-09 19:09:50 UTC (rev 865)
@@ -1,11 +1,4 @@
-RcppDate                C++ classes for receiving date and datetime R
-                        objects in C++
-RcppExample             Rcpp R / C++ interface example
 Rcpp-package            R / C++ interface
 Rcpp.package.skeleton   Create a skeleton for a new package depending
                         on Rcpp
-RcppParams              C++ class for receiving (scalar) parameters
-                        from R
-RcppResultSet           C++ class for sending C++ objects back to R
 RcppUnitTests           Rcpp : unit tests results
-RcppVector              C++ classes for receiving R object in C++

Modified: pkg/Rcpp/NEWS
===================================================================
--- pkg/Rcpp/NEWS	2010-03-09 19:08:56 UTC (rev 864)
+++ pkg/Rcpp/NEWS	2010-03-09 19:09:50 UTC (rev 865)
@@ -1,4 +1,4 @@
-0.7.8   (under development)
+0.7.8   2010-03-09
 
     o	All vector classes are now generated from the same template class
     	Rcpp::Vector<int RTYPE> where RTYPE is one of LGLSXP, RAWSXP, STRSXP,
@@ -49,8 +49,9 @@
         - using Armadillo (http://arma.sf.net) and a C++ interface
         Armadillo is seen as faster for lack of extra copying
 
-    o	A new package RcppArmadillo serves as a concrete example on how to
-        extend Rcpp to work with a modern C++ library
+    o	A new package RcppArmadillo (to be released shortly) now serves 
+        as a concrete example on how to extend Rcpp to work with a modern 
+	C++ library such as the heavily-templated Armadillo library
 
     o	Added a new vignette 'Rcpp-introduction' based on a just-submitted 
         overview article on Rcpp

Modified: pkg/Rcpp/debian/changelog
===================================================================
--- pkg/Rcpp/debian/changelog	2010-03-09 19:08:56 UTC (rev 864)
+++ pkg/Rcpp/debian/changelog	2010-03-09 19:09:50 UTC (rev 865)
@@ -1,3 +1,9 @@
+rcpp (0.7.8-1) unstable; urgency=low
+
+  * New release
+
+ -- Dirk Eddelbuettel <edd at debian.org>  Tue, 09 Mar 2010 11:39:12 -0600
+
 rcpp (0.7.7-1) unstable; urgency=low
 
   * New release

Modified: pkg/Rcpp/debian/r-cran-rcpp.lintian-overrides
===================================================================
--- pkg/Rcpp/debian/r-cran-rcpp.lintian-overrides	2010-03-09 19:08:56 UTC (rev 864)
+++ pkg/Rcpp/debian/r-cran-rcpp.lintian-overrides	2010-03-09 19:09:50 UTC (rev 865)
@@ -36,3 +36,8 @@
 r-cran-rcpp: script-not-executable ./usr/lib/R/site-library/Rcpp/unitTests/runit.clone.R
 r-cran-rcpp: script-not-executable ./usr/lib/R/site-library/Rcpp/unitTests/runit.traits.R
 r-cran-rcpp: script-uses-bin-env ./usr/lib/R/site-library/Rcpp/discovery/cxx0x.R
+r-cran-rcpp: binary-or-shlib-defines-rpath ./usr/lib/R/site-library/Rcpp/examples/functionCallback/RcppFunctionCallExample.so /usr/local/lib/R/site-library/Rcpp/lib
+r-cran-rcpp: script-not-executable ./usr/lib/R/site-library/Rcpp/unitTests/runit.Column.R
+r-cran-rcpp: script-not-executable ./usr/lib/R/site-library/Rcpp/unitTests/runit.Matrix.R
+r-cran-rcpp: script-not-executable ./usr/lib/R/site-library/Rcpp/unitTests/runit.Row.R
+r-cran-rcpp: script-not-executable ./usr/lib/R/site-library/Rcpp/unitTests/runit.macros.R

Modified: pkg/Rcpp/inst/ChangeLog
===================================================================
--- pkg/Rcpp/inst/ChangeLog	2010-03-09 19:08:56 UTC (rev 864)
+++ pkg/Rcpp/inst/ChangeLog	2010-03-09 19:09:50 UTC (rev 865)
@@ -39,10 +39,10 @@
 
 2010-02-28  Romain Francois <romain at r-enthusiasts.com>
 
-    * src/Rcpp/Vector.h : more generic code for vectors. All vector
-    types are now generated from the template Rcpp::Vector<int RTYPE>
-    where RTYPE is one of INTSXP, LGLSXP, REALSXP, RAWSXP, STRSXP,
-    VECSXP or EXPRSXP.
+	* src/Rcpp/Vector.h : more generic code for vectors. All vector
+	types are now generated from the template Rcpp::Vector<int RTYPE>
+	where RTYPE is one of INTSXP, LGLSXP, REALSXP, RAWSXP, STRSXP,
+	VECSXP or EXPRSXP.
 
 2010-02-24  Romain Francois <romain at r-enthusiasts.com>
 

Modified: pkg/Rcpp/inst/examples/functionCallback/buildAndRun.sh
===================================================================
--- pkg/Rcpp/inst/examples/functionCallback/buildAndRun.sh	2010-03-09 19:08:56 UTC (rev 864)
+++ pkg/Rcpp/inst/examples/functionCallback/buildAndRun.sh	2010-03-09 19:09:50 UTC (rev 865)
@@ -8,4 +8,4 @@
 R CMD SHLIB RcppFunctionCallExample.cpp 
 
 # call R so that we get an interactive session
-cat ExampleRCode.r | R --slave --vanilla
\ No newline at end of file
+cat ExampleRCode.r | R --slave --vanilla



More information about the Rcpp-commits mailing list