[Rcpp-commits] r3716 - in pkg/Rcpp: . R inst inst/doc
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Tue Jul 24 03:16:55 CEST 2012
Author: edd
Date: 2012-07-24 03:16:54 +0200 (Tue, 24 Jul 2012)
New Revision: 3716
Modified:
pkg/Rcpp/ChangeLog
pkg/Rcpp/R/bib.R
pkg/Rcpp/inst/NEWS
pkg/Rcpp/inst/doc/Rcpp.bib
Log:
o updated R and CRAN entries in Rcpp.bib
o correction to bib() function: as Windows adds .bib anyway, we need to strip it or we end up with "bibtex Rcpp.bib.bib" which fails
Modified: pkg/Rcpp/ChangeLog
===================================================================
--- pkg/Rcpp/ChangeLog 2012-07-24 00:17:55 UTC (rev 3715)
+++ pkg/Rcpp/ChangeLog 2012-07-24 01:16:54 UTC (rev 3716)
@@ -1,3 +1,8 @@
+2012-07-23 Dirk Eddelbuettel <edd at debian.org>
+
+ * R/bib.R: Trim the trailing ".bib" from the generated bibtex
+ filename as Windows adds one anyway leading to two and an error
+
2012-07-21 Dirk Eddelbuettel <edd at debian.org>
* inst/include/Rcpp/Module.h (Rcpp): Corrected typo / incomplete
Modified: pkg/Rcpp/R/bib.R
===================================================================
--- pkg/Rcpp/R/bib.R 2012-07-24 00:17:55 UTC (rev 3715)
+++ pkg/Rcpp/R/bib.R 2012-07-24 01:16:54 UTC (rev 3716)
@@ -1,4 +1,4 @@
-# Copyright (C) 2010 - 2011 Dirk Eddelbuettel and Romain Francois
+# Copyright (C) 2010 - 2012 Dirk Eddelbuettel and Romain Francois
#
# This file is part of Rcpp.
#
@@ -16,5 +16,5 @@
# along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
bib <- function() {
- system.file( "doc", "Rcpp.bib", package = "Rcpp" )
+ sub("\\.bib$", "", system.file( "doc", "Rcpp.bib", package = "Rcpp" ) )
}
Modified: pkg/Rcpp/inst/NEWS
===================================================================
--- pkg/Rcpp/inst/NEWS 2012-07-24 00:17:55 UTC (rev 3715)
+++ pkg/Rcpp/inst/NEWS 2012-07-24 01:16:54 UTC (rev 3716)
@@ -6,6 +6,9 @@
o Corrected a typo in Module.h who now again permits use of finalizers
+ o Small correction for (unexported) bib() function (which provides a path
+ to the bibtex file that ships with Rcpp)
+
0.9.13 2012-06-28
o Truly corrected Rcpp::Environment class by having default constructor
Modified: pkg/Rcpp/inst/doc/Rcpp.bib
===================================================================
--- pkg/Rcpp/inst/doc/Rcpp.bib 2012-07-24 00:17:55 UTC (rev 3715)
+++ pkg/Rcpp/inst/doc/Rcpp.bib 2012-07-24 01:16:54 UTC (rev 3716)
@@ -72,16 +72,16 @@
@Manual{CRAN:RInside,
title = {RInside: C++ classes to embed R in C++ applications},
author = {Dirk Eddelbuettel and Romain Fran\c{c}ois},
- year = 2011,
- note = {R package version 0.2.5},
+ year = 2012,
+ note = {R package version 0.2.6},
url = CRAN # "package=RInside"
}
@Manual{CRAN:RProtoBuf,
title = {RProtoBuf: R Interface to the Protocol Buffers API},
author = {Romain Fran\c{c}ois and Dirk Eddelbuettel},
- year = 2011,
- note = {R package version 0.2.3},
+ year = 2012,
+ note = {R package version 0.2.4},
url = CRAN # "package=RProtoBuf"
}
@@ -107,8 +107,8 @@
@Manual{CRAN:Rcpp,
title = {{Rcpp}: Seamless {R} and {C++} Integration},
author = {Dirk Eddelbuettel and Romain Fran\c{c}ois},
- year = 2011,
- note = {R package version 0.9.9},
+ year = 2012,
+ note = {R package version 0.9.13},
url = CRAN # "package=Rcpp"
}
@@ -117,16 +117,16 @@
templated linear algebra library},
author = {Romain Fran\c{c}ois and Dirk Eddelbuettel and
Douglas Bates},
- year = 2011,
- note = {R package version 0.2.34},
+ year = 2012,
+ note = {R package version 0.3.2.4},
url = CRAN # "package=RcppArmadillo"
}
@Manual{CRAN:RcppClassic,
title = {RcppClassic: Deprecated 'classic' Rcpp API},
author = {Dirk Eddelbuettel and Romain Fran\c{c}ois},
- year = 2011,
- note = {R package version 0.9.1},
+ year = 2012,
+ note = {R package version 0.9.2},
url = CRAN # "package=RcppClassic"
}
@@ -150,16 +150,16 @@
@Manual{CRAN:RcppGSL,
title = {RcppGSL: Rcpp integration for GNU GSL vectors and matrices},
author = {Romain Fran\c{c}ois and Dirk Eddelbuettel},
- year = 2011,
- note = {R package version 0.1.1},
+ year = 2012,
+ note = {R package version 0.2.0},
url = CRAN # "package=RcppGSL"
}
@Manual{CRAN:Rserve,
title = {Rserve: Binary R server},
author = {Simon Urbanek},
- year = 2011,
- note = {R package version 0.6-6},
+ year = 2012,
+ note = {R package version 0.6-8},
url = CRAN # "package=Rserve"
}
@@ -175,8 +175,8 @@
@Manual{CRAN:highlight,
title = {highlight: Syntax highlighter},
author = {Romain Fran\c{c}ois},
- year = 2010,
- note = {R package version 0.3.1},
+ year = 2012,
+ note = {R package version 0.3.2},
url = CRAN # "package=highlight"
}
@@ -195,8 +195,8 @@
quadratic approximation},
author = {Douglas Bates and Katharine M. Mullen and John
C. Nash and Ravi Varadhan},
- year = 2011,
- note = {R package version 1.1.9},
+ year = 2012,
+ note = {R package version 1.2.1},
url = CRAN # "package=minqa"
}
@@ -315,7 +315,7 @@
author = RCoreTeam,
organization = RFoundation,
address = {Vienna, Austria},
- year = 2011,
+ year = 2012,
title = "R Installation and Administration",
note = {{ISBN} 3-900051-09-7},
url = manuals # "R-admin.html"
@@ -325,7 +325,7 @@
author = RCoreTeam,
organization = RFoundation,
address = {Vienna, Austria},
- year = 2011,
+ year = 2012,
title = "Writing R extensions",
note = {{ISBN} 3-900051-11-9},
url = manuals # "R-exts.html"
@@ -335,7 +335,7 @@
author = RCoreTeam,
organization = RFoundation,
address = {Vienna, Austria},
- year = 2011,
+ year = 2012,
title = "R internals",
note = {{ISBN} 3-900051-14-3},
url = manuals # "R-ints.html"
@@ -347,7 +347,7 @@
author = RCoreTeam,
organization = RFoundation,
address = {Vienna, Austria},
- year = 2011,
+ year = 2012,
note = {{ISBN} 3-900051-07-0},
url = {http://www.R-project.org/},
}
@@ -356,7 +356,7 @@
author = RCoreTeam,
organization = RFoundation,
address = {Vienna, Austria},
- year = 2011,
+ year = 2012,
title = "R language",
note = {{ISBN} 3-900051-13-5},
url = manuals # "R-lang.html"
More information about the Rcpp-commits
mailing list