[Rcpp-commits] r4214 - in pkg/RcppExamples: . inst man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Jan 15 18:25:09 CET 2013


Author: edd
Date: 2013-01-15 18:25:09 +0100 (Tue, 15 Jan 2013)
New Revision: 4214

Added:
   pkg/RcppExamples/inst/
   pkg/RcppExamples/inst/NEWS.Rd
Removed:
   pkg/RcppExamples/NEWS.Rd
Modified:
   pkg/RcppExamples/ChangeLog
   pkg/RcppExamples/DESCRIPTION
   pkg/RcppExamples/man/RcppExamples-package.Rd
Log:
New version 0.1.6 with NEWS.Rd moved to inst/ per CRAN request (following our very own bug report...)
Mention Gallery.Rcpp.org in DESCRIPTION and main help page


Modified: pkg/RcppExamples/ChangeLog
===================================================================
--- pkg/RcppExamples/ChangeLog	2013-01-15 14:05:12 UTC (rev 4213)
+++ pkg/RcppExamples/ChangeLog	2013-01-15 17:25:09 UTC (rev 4214)
@@ -1,3 +1,12 @@
+2013-01-15  Dirk Eddelbuettel  <edd at debian.org>
+
+	* DESCRIPTION (Version): New version 0.1.6
+
+	* DESCRIPTION (Description): Mention http://gallery.rcpp.org
+	* man/RcppExamples-package.Rd: Idem
+
+	* inst/NEWS.Rd: Moved from directory above per CRAN request
+
 2012-12-27  Dirk Eddelbuettel  <edd at debian.org>
 
 	* DESCRIPTION (Version): New version 0.1.5

Modified: pkg/RcppExamples/DESCRIPTION
===================================================================
--- pkg/RcppExamples/DESCRIPTION	2013-01-15 14:05:12 UTC (rev 4213)
+++ pkg/RcppExamples/DESCRIPTION	2013-01-15 17:25:09 UTC (rev 4214)
@@ -1,6 +1,6 @@
 Package: RcppExamples
 Title: Examples using Rcpp to interface R and C++ 
-Version: 0.1.5
+Version: 0.1.6
 Date: $Date$
 Author: Dirk Eddelbuettel and Romain Francois
 Maintainer: Dirk Eddelbuettel <edd at debian.org>
@@ -9,7 +9,8 @@
  R and C++ in various ways. This package provides some usage examples.
  .
  Note that the documentation in this package currently does not cover all the
- features in the package. It is not even close. 
+ features in the package. It is not even close. On the other hand, the site
+ http://gallery.rcpp.org is regrouping a number of examples for Rcpp.
 Depends: R (>= 2.11.0), Rcpp (>= 0.9.9)
 LinkingTo: Rcpp
 Suggests: RUnit 

Deleted: pkg/RcppExamples/NEWS.Rd
===================================================================
--- pkg/RcppExamples/NEWS.Rd	2013-01-15 14:05:12 UTC (rev 4213)
+++ pkg/RcppExamples/NEWS.Rd	2013-01-15 17:25:09 UTC (rev 4214)
@@ -1,44 +0,0 @@
-\name{NEWS}
-\title{News for Package 'RcppExamples'}
-\newcommand{\cpkg}{\href{http://CRAN.R-project.org/package=#1}{\pkg{#1}}}
-
-\section{Changes in RcppExamples version 0.1.5 (2012-12-27)}{
-  \itemize{
-    \item Moved all examples using \cpkg{RcppClassic} to a new package
-      \cpkg{RcppClassicExamples}
-    \item Various minor small updates
-  }
-}
-
-\section{Changes in RcppExamples version 0.1.4 (2012-08-09)}{
-  \itemize{
-    \item Added new example for Rcpp sugar and vectorised draws of RNGs
-    \item Minor updates to reflect newer CRAN Policy
-  }
-}
-\section{Changes in RcppExamples version 0.1.3 (2011-12-28)}{
-  \itemize{
-    \item Added new example for Rcpp::DataFrame
-    \item Switched two examples from using std::cout (which 'Writing R
-      Extensions' recommends agains) to the new Rcpp::Rcout device
-    \item Minor .Rd correction, suppressing one warning
-  }
-}
-\section{Changes in RcppExamples version 0.1.2 (2010-12-20)}{
-  \itemize{
-    \item Updated src/Makevars
-    \item Now depends also on RcppClassic so that we can keep continue to show
-      examples using the classic API
-    \item Added examples for Rcpp::Date, Rcpp::Datetime and Rcpp::List
-  }
-}
-\section{Changes in RcppExamples version 0.1.1 (2010-07-29)}{
-  \itemize{
-    \item Minor update, no new examples or documentation added yet
-  }
-}
-\section{Changes in RcppExamples version 0.1.0 (2010-03-10)}{
-  \itemize{
-    \item Initial release as a package, carved out of Rcpp 0.7.7
-  }
-}

Copied: pkg/RcppExamples/inst/NEWS.Rd (from rev 4210, pkg/RcppExamples/NEWS.Rd)
===================================================================
--- pkg/RcppExamples/inst/NEWS.Rd	                        (rev 0)
+++ pkg/RcppExamples/inst/NEWS.Rd	2013-01-15 17:25:09 UTC (rev 4214)
@@ -0,0 +1,51 @@
+\name{NEWS}
+\title{News for Package 'RcppExamples'}
+\newcommand{\cpkg}{\href{http://CRAN.R-project.org/package=#1}{\pkg{#1}}}
+
+\section{Changes in RcppExamples version 0.1.6 (2013-01-15)}{
+  \itemize{
+    \item Moved \code{NEWS.Rd} from top-level directory to correct
+    location \code{inst/} per CRAN maintainer suggestion
+  }
+}
+
+\section{Changes in RcppExamples version 0.1.5 (2012-12-27)}{
+  \itemize{
+    \item Moved all examples using \cpkg{RcppClassic} to a new package
+      \cpkg{RcppClassicExamples}
+    \item Various minor small updates
+  }
+}
+
+\section{Changes in RcppExamples version 0.1.4 (2012-08-09)}{
+  \itemize{
+    \item Added new example for Rcpp sugar and vectorised draws of RNGs
+    \item Minor updates to reflect newer CRAN Policy
+  }
+}
+\section{Changes in RcppExamples version 0.1.3 (2011-12-28)}{
+  \itemize{
+    \item Added new example for Rcpp::DataFrame
+    \item Switched two examples from using std::cout (which 'Writing R
+      Extensions' recommends agains) to the new Rcpp::Rcout device
+    \item Minor .Rd correction, suppressing one warning
+  }
+}
+\section{Changes in RcppExamples version 0.1.2 (2010-12-20)}{
+  \itemize{
+    \item Updated src/Makevars
+    \item Now depends also on RcppClassic so that we can keep continue to show
+      examples using the classic API
+    \item Added examples for Rcpp::Date, Rcpp::Datetime and Rcpp::List
+  }
+}
+\section{Changes in RcppExamples version 0.1.1 (2010-07-29)}{
+  \itemize{
+    \item Minor update, no new examples or documentation added yet
+  }
+}
+\section{Changes in RcppExamples version 0.1.0 (2010-03-10)}{
+  \itemize{
+    \item Initial release as a package, carved out of Rcpp 0.7.7
+  }
+}

Modified: pkg/RcppExamples/man/RcppExamples-package.Rd
===================================================================
--- pkg/RcppExamples/man/RcppExamples-package.Rd	2013-01-15 14:05:12 UTC (rev 4213)
+++ pkg/RcppExamples/man/RcppExamples-package.Rd	2013-01-15 17:25:09 UTC (rev 4214)
@@ -37,5 +37,8 @@
   additions, and became maintainer in 2008. Dirk Eddelbuettel and Romain
   Francois have been extending Rcpp since 2009.
 }
+\seealso{
+  The \url{http://gallery.rcpp.org} site regroups a number of examples.
+}
 \keyword{package}
 



More information about the Rcpp-commits mailing list