[Rprotobuf-commits] r871 - in pkg: . inst
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sat Feb 22 01:24:18 CET 2014
Author: murray
Date: 2014-02-22 01:24:18 +0100 (Sat, 22 Feb 2014)
New Revision: 871
Added:
pkg/inst/CITATION
Modified:
pkg/ChangeLog
pkg/DESCRIPTION
Log:
Add a CITATION file pointing to our JSS preprint on arxiv.org in
addition to the normal auto-generated R package citation(). Also add
a link to the arxiv.org paper in the DESCRIPTION file.
Modified: pkg/ChangeLog
===================================================================
--- pkg/ChangeLog 2014-02-21 23:51:21 UTC (rev 870)
+++ pkg/ChangeLog 2014-02-22 00:24:18 UTC (rev 871)
@@ -5,6 +5,9 @@
The type is converted to lower case, which users often forget.
* vignettes/RProtoBuf-intro.Rnw (subsection{Deprecated Feature:
Protocol Buffer Groups}): document groups.
+ * inst/CITATION: Add a manual CITATION file pointing to the JSS
+ preprint on arxiv.org in addition to the normal auto-generated
+ citation().
2014-01-19 Dirk Eddelbuettel <edd at debian.org>
Modified: pkg/DESCRIPTION
===================================================================
--- pkg/DESCRIPTION 2014-02-21 23:51:21 UTC (rev 870)
+++ pkg/DESCRIPTION 2014-02-22 00:24:18 UTC (rev 871)
@@ -6,7 +6,10 @@
Title: R Interface to the Protocol Buffers API
Description: Protocol Buffers are a way of encoding structured data in an
efficient yet extensible format. Google uses Protocol Buffers for almost all
- of its internal RPC protocols and file formats.
+ of its internal RPC protocols and file formats. Additional
+ documentation is available in the arXiv.org preprint "RProtoBuf:
+ Efficient Cross-Language Data Serialization in R" by Eddelbuettel,
+ Stokely, and Ooms (2014) http://arxiv.org/abs/1401.7372
Depends: R (>= 3.0.0), methods
Imports: utils, stats, tools, Rcpp, RCurl
LinkingTo: Rcpp
@@ -15,5 +18,5 @@
SystemRequirements: Protocol Buffer compiler (to create C++ header and source files
from .proto descriptions) and library (version 2.2.0 or later)
License: GPL-2
-URL: http://r-forge.r-project.org/projects/rprotobuf/, http://romainfrancois.blog.free.fr/index.php?category/R-package/RProtoBuf, http://dirk.eddelbuettel.com/blog/code/rprotobuf/
+URL: http://r-forge.r-project.org/projects/rprotobuf/, http://romainfrancois.blog.free.fr/index.php?category/R-package/RProtoBuf, http://dirk.eddelbuettel.com/blog/code/rprotobuf/, http://arxiv.org/abs/1401.7372
BugReports: http://r-forge.r-project.org/tracker/index.php?group_id=576&atid=2338
Added: pkg/inst/CITATION
===================================================================
--- pkg/inst/CITATION (rev 0)
+++ pkg/inst/CITATION 2014-02-22 00:24:18 UTC (rev 871)
@@ -0,0 +1,19 @@
+citHeader("To cite RProtoBuf in publications use:")
+
+# Preprint of our JSS submission
+citEntry(entry = "Article",
+ title = "{RProtoBuf}: Efficient Cross-Language Data Serialization in {R}",
+ author = personList(as.person("Dirk Eddelbuettel"),
+ as.person("Murray Stokely"), as.person("Jeroen Ooms")),
+ journal = "arXiv preprint arXiv:1401.7372",
+ year = "2014",
+ url = "http://arxiv.org/abs/1401.7372",
+ textVersion =
+ paste("Dirk Eddelbuettel, Murray Stokely, and Jeroen Ooms (2014).",
+ "RProtoBuf: Efficient Cross-Language Data Serialization in R.",
+ "arXiv preprint, arXiv:1401.7372",
+ "URL http://arxiv.org/abs/1401.7372")
+)
+
+# Also include the normal auto-generated RProtoBuf citation()
+citation(auto=meta)
More information about the Rprotobuf-commits
mailing list