[Rcpp-commits] r3715 - in pkg/RcppClassic: . vignettes
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Tue Jul 24 02:17:55 CEST 2012
Author: edd
Date: 2012-07-24 02:17:55 +0200 (Tue, 24 Jul 2012)
New Revision: 3715
Modified:
pkg/RcppClassic/ChangeLog
pkg/RcppClassic/DESCRIPTION
pkg/RcppClassic/cleanup
pkg/RcppClassic/vignettes/Makefile
Log:
o Release 0.9.2
o minor updates to cleanup and vignettes/Makefile for renaming of vignette to RcppClassic-intro
Modified: pkg/RcppClassic/ChangeLog
===================================================================
--- pkg/RcppClassic/ChangeLog 2012-07-23 02:54:56 UTC (rev 3714)
+++ pkg/RcppClassic/ChangeLog 2012-07-24 00:17:55 UTC (rev 3715)
@@ -1,3 +1,12 @@
+2012-07-23 Dirk Eddelbuettel <edd at debian.org>
+
+ * DESCRIPTION: Release 0.9.2
+
+ * vignettes/*: moved from inst/doc, Makefile updated accordingly
+ * vignettes/RcppClassic-intro.Rnw: renamed from RcppClassic.Rnw
+
+ * DESCRIPTION: changed Maintainer: to single person per CRAN Policy
+
2011-12-23 Dirk Eddelbuettel <edd at debian.org>
* inst/unitTests/runTests.R: unit tests output 'fallback' directory
Modified: pkg/RcppClassic/DESCRIPTION
===================================================================
--- pkg/RcppClassic/DESCRIPTION 2012-07-23 02:54:56 UTC (rev 3714)
+++ pkg/RcppClassic/DESCRIPTION 2012-07-24 00:17:55 UTC (rev 3715)
@@ -1,10 +1,10 @@
Package: RcppClassic
Title: Deprecated 'classic' Rcpp API
-Version: 0.9.1
+Version: 0.9.2
Date: $Date: 2010-11-04 09:53:59 +0100 (Jeu, 04 nov 2010) $
Author: Dirk Eddelbuettel and Romain Francois, with contributions by David Reiss,
and based on code written during 2005 and 2006 by Dominick Samperi
-Maintainer: Dirk Eddelbuettel and Romain Francois <RomainAndDirk at r-enthusiasts.com>
+Maintainer: Dirk Eddelbuettel <edd at debian.org>
Description: The RcppClassic package provides a deprecated C++ library which
facilitates the integration of R and C++. New projects should use the new
Rcpp API in the Rcpp package.
Modified: pkg/RcppClassic/cleanup
===================================================================
--- pkg/RcppClassic/cleanup 2012-07-23 02:54:56 UTC (rev 3714)
+++ pkg/RcppClassic/cleanup 2012-07-24 00:17:55 UTC (rev 3715)
@@ -1,5 +1,5 @@
-cd inst/doc
+cd vignettes
make clean
cd ../..
Modified: pkg/RcppClassic/vignettes/Makefile
===================================================================
--- pkg/RcppClassic/vignettes/Makefile 2012-07-23 02:54:56 UTC (rev 3714)
+++ pkg/RcppClassic/vignettes/Makefile 2012-07-24 00:17:55 UTC (rev 3715)
@@ -8,10 +8,10 @@
## on Ubuntu so for now Dirk will insist on pdflatex and this helps.
whoami=$(shell whoami)
-all: RcppClassic-unitTests.pdf RcppClassic.pdf
+all: RcppClassic-unitTests.pdf RcppClassic-intro.pdf
pdfclean:
- rm -f RcppClassic.pdf RcppClassic-unitTests.pdf
+ rm -f RcppClassic-intro.pdf RcppClassic-unitTests.pdf
clean:
@rm -f *.tex *.bbl *.blg *.aux *.out *.log
@@ -29,15 +29,15 @@
$(RSCRIPT) --vanilla -e "tools::texi2dvi( 'RcppClassic-unitTests.tex', pdf = TRUE, clean = TRUE )"
rm -fr RcppClassic-unitTests.tex
-RcppClassic.pdf: RcppClassic.Rnw
- $(RPROG) CMD Sweave RcppClassic.Rnw
+RcppClassic-intro.pdf: RcppClassic-intro.Rnw
+ $(RPROG) CMD Sweave RcppClassic-intro.Rnw
ifneq (,$(findstring edd,$(whoami)))
- pdflatex RcppClassic.tex
- bibtex RcppClassic
- pdflatex RcppClassic.tex
- pdflatex RcppClassic.tex
+ pdflatex RcppClassic-intro.tex
+ bibtex RcppClassic-intro
+ pdflatex RcppClassic-intro.tex
+ pdflatex RcppClassic-intro.tex
else
- $(RSCRIPT) --vanilla -e "tools::texi2dvi( 'RcppClassic.tex', pdf = TRUE, clean = FALSE )"
+ $(RSCRIPT) --vanilla -e "tools::texi2dvi( 'RcppClassic-intro.tex', pdf = TRUE, clean = FALSE )"
endif
- rm -fr RcppClassic.tex
+ rm -fr RcppClassic-intro.tex
More information about the Rcpp-commits
mailing list