[Rprotobuf-commits] r483 - in pkg: . man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Wed Sep 26 05:07:34 CEST 2012


Author: edd
Date: 2012-09-26 05:07:34 +0200 (Wed, 26 Sep 2012)
New Revision: 483

Modified:
   pkg/ChangeLog
   pkg/man/is_extension.Rd
   pkg/man/label.Rd
   pkg/man/number.Rd
   pkg/man/type.Rd
Log:
disable a few more examples so that R CMD check survives


Modified: pkg/ChangeLog
===================================================================
--- pkg/ChangeLog	2012-09-26 02:36:22 UTC (rev 482)
+++ pkg/ChangeLog	2012-09-26 03:07:34 UTC (rev 483)
@@ -1,3 +1,11 @@
+2012-09-25  Dirk Eddelbuettel  <edd at debian.org>
+
+	* man/is_extension.Rd: Use \dontrun on examples as we cannot reload
+	the same proto file twice
+	* man/label.Rd: Idem
+	* man/number.Rd: Idem
+	* man/type.Rd: Idem
+
 2012-09-24  Murray Stokely  <murray at FreeBSD.org>
 
 	* R/has.R: Distinguish between non-existant and not-set fields in

Modified: pkg/man/is_extension.Rd
===================================================================
--- pkg/man/is_extension.Rd	2012-09-26 02:36:22 UTC (rev 482)
+++ pkg/man/is_extension.Rd	2012-09-26 03:07:34 UTC (rev 483)
@@ -3,14 +3,16 @@
 \alias{is_extension-methods}
 \title{Indicates if a field descriptor is an extension}
 \description{
-Indicates if a field descriptor is an extension
+  Indicates if a field descriptor is an extension
 }
 \seealso{
-The method is implemented for the \linkS4class{FieldDescriptor} class
+  The method is implemented for the \linkS4class{FieldDescriptor} class
 }
 \keyword{methods}
 \examples{
+\dontrun{
 proto.file <- system.file( "proto", "addressbook.proto", package = "RProtoBuf" )
 Person <- P( "tutorial.Person", file = proto.file )
 is_extension(Person$id)
 }
+}
\ No newline at end of file

Modified: pkg/man/label.Rd
===================================================================
--- pkg/man/label.Rd	2012-09-26 02:36:22 UTC (rev 482)
+++ pkg/man/label.Rd	2012-09-26 03:07:34 UTC (rev 483)
@@ -20,6 +20,7 @@
 }
 \keyword{methods}
 \examples{
+\dontrun{
 proto.file <- system.file( "proto", "addressbook.proto", package = "RProtoBuf" )
 Person <- P( "tutorial.Person", file = proto.file )
 label(Person$id)
@@ -32,3 +33,4 @@
 LABEL_REQUIRED
 LABEL_REPEATED
 }
+}
\ No newline at end of file

Modified: pkg/man/number.Rd
===================================================================
--- pkg/man/number.Rd	2012-09-26 02:36:22 UTC (rev 482)
+++ pkg/man/number.Rd	2012-09-26 03:07:34 UTC (rev 483)
@@ -10,9 +10,11 @@
 }
 \keyword{methods}
 \examples{
+\dontrun{
 proto.file <- system.file( "proto", "addressbook.proto", package = "RProtoBuf" )
 Person <- P( "tutorial.Person", file = proto.file )
 number(Person$id)
 number(Person$email)
 as.character(Person)
 }
+}
\ No newline at end of file

Modified: pkg/man/type.Rd
===================================================================
--- pkg/man/type.Rd	2012-09-26 02:36:22 UTC (rev 482)
+++ pkg/man/type.Rd	2012-09-26 03:07:34 UTC (rev 483)
@@ -49,6 +49,7 @@
 }
 \keyword{methods}
 \examples{
+\dontrun{
 proto.file <- system.file( "proto", "addressbook.proto", package = "RProtoBuf" )
 Person <- P( "tutorial.Person", file = proto.file )
 type(Person$id)
@@ -56,3 +57,4 @@
 cpp_type(Person$email)
 cpp_type(Person$email, TRUE)
 }
+}
\ No newline at end of file



More information about the Rprotobuf-commits mailing list