[Distr-commits] r699 - in branches: distr-2.3/pkg/utils distr-2.4/pkg/utils

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Thu Dec 2 19:47:43 CET 2010


Author: ruckdeschel
Date: 2010-12-02 19:47:43 +0100 (Thu, 02 Dec 2010)
New Revision: 699

Added:
   branches/distr-2.4/pkg/utils/updateTo2_4.R
Modified:
   branches/distr-2.3/pkg/utils/showsvnlog.R
   branches/distr-2.4/pkg/utils/showsvnlog.R
Log:
minor changes in utils 

Modified: branches/distr-2.3/pkg/utils/showsvnlog.R
===================================================================
--- branches/distr-2.3/pkg/utils/showsvnlog.R	2010-12-02 17:38:43 UTC (rev 698)
+++ branches/distr-2.3/pkg/utils/showsvnlog.R	2010-12-02 18:47:43 UTC (rev 699)
@@ -65,7 +65,7 @@
 showsvnlog(from=300,to=Inf,limit=1000)
 showsvnlog(from=1,to=Inf,limit=1000,con="C:/rtest/svnlog-distr.txt")
 showsvnlog("robast",from=1,to=Inf,limit=1000,con="C:/rtest/svnlog-robast.txt")
-showsvnlog(from=680,to=Inf,limit=1000,con="C:/rtest/svnlog-distr-ex.txt")
-showsvnlog("robast",from=420,to=Inf,limit=1000,con="C:/rtest/svnlog-robast-ex.txt")
+showsvnlog(from=580,to=Inf,limit=1000)
+showsvnlog("robast",from=220,to=Inf,limit=1000,con="C:/rtest/svnlog-robast-ex.txt")
 }
 

Modified: branches/distr-2.4/pkg/utils/showsvnlog.R
===================================================================
--- branches/distr-2.4/pkg/utils/showsvnlog.R	2010-12-02 17:38:43 UTC (rev 698)
+++ branches/distr-2.4/pkg/utils/showsvnlog.R	2010-12-02 18:47:43 UTC (rev 699)
@@ -65,7 +65,7 @@
 showsvnlog(from=300,to=Inf,limit=1000)
 showsvnlog(from=1,to=Inf,limit=1000,con="C:/rtest/svnlog-distr.txt")
 showsvnlog("robast",from=1,to=Inf,limit=1000,con="C:/rtest/svnlog-robast.txt")
-showsvnlog(from=680,to=Inf,limit=1000,con="C:/rtest/svnlog-distr-ex.txt")
-showsvnlog("robast",from=420,to=Inf,limit=1000,con="C:/rtest/svnlog-robast-ex.txt")
+showsvnlog(from=580,to=Inf,limit=1000)
+showsvnlog("robast",from=220,to=Inf,limit=1000,con="C:/rtest/svnlog-robast-ex.txt")
 }
 

Added: branches/distr-2.4/pkg/utils/updateTo2_4.R
===================================================================
--- branches/distr-2.4/pkg/utils/updateTo2_4.R	                        (rev 0)
+++ branches/distr-2.4/pkg/utils/updateTo2_4.R	2010-12-02 18:47:43 UTC (rev 699)
@@ -0,0 +1,50 @@
+####distr:
+### for uptodate:
+Pkgs <- c("SweaveListingUtils", "distr", "distrEx", "distrDoc",
+                      "distrMod", "distrTeach", "distrSim", "distrTEst",
+                      "distrEllipse")
+Names <- c("Version","Date","SVNRevision")
+Values <- matrix(c(format(Sys.time(), format="%Y-%m-%d"),1),3,length(Pkgs))
+colnames(Values) <- Pkgs
+rownames(Values) <- Names
+Values["Version",] <- c("0.5", rep("2.3", 8))
+changeDescription(startDir = "C:/rtest/tmp/distr/",names=Names,
+                  pkgs=Pkgs, values=Values)
+
+### for 2.4
+Pkgs <- c("SweaveListingUtils", "distr", "distrEx", "distrDoc",
+                      "distrMod", "distrTeach", "distrSim", "distrTEst",
+                      "distrEllipse")
+Names <- c("Version",  "Date", "SVNRevision")
+Values <- matrix(c("2.0.2", format(Sys.time(), format="%Y-%m-%d"),1),3,length(Pkgs))
+colnames(Values) <- Pkgs
+rownames(Values) <- Names
+Values["Version",] <- c("0.6", rep("2.4", 8))
+changeDescription(startDir = "C:/rtest/tmp/distr/branches/distr-2.4",names=Names,
+                  pkgs=Pkgs, values=Values)
+
+#### robast:
+### for uptodate:
+Pkgs <- c("RandVar", "RobAStBase", "ROptEst", "RobLox"
+          ,"ROptEstOld", "ROptRegTS", "RobRex", "RobLoxBioC"
+          )
+Names <- c("Version",  "Date", "SVNRevision")
+Values <- matrix(c(0.8,format(Sys.time(), format="%Y-%m-%d"),1),3,length(Pkgs))
+colnames(Values) <- Pkgs
+rownames(Values) <- Names
+Values["Version",] <- c(rep("0.8",8))
+changeDescription(startDir = "C:/rtest/tmp/robast",names=Names,
+                  pkgs=Pkgs, values=Values)
+
+### for 0.9
+Pkgs <- c("RandVar", "RobAStBase", "ROptEst", "ROptEstOld", "RobLox",
+          "ROptRegTS", "RobRex", "RobLoxBioC")
+
+Names <- c("Version","Date","SVNRevision")
+Values <- matrix(c("0.8", format(Sys.time(), format="%Y-%m-%d"),1),3,length(Pkgs))
+colnames(Values) <- Pkgs
+rownames(Values) <- Names
+Values["Version",] <- c(rep("0.9",8))
+changeDescription(startDir = "C:/rtest/tmp/robast/branches/robast-0.9",names=Names,
+                  pkgs=Pkgs, values=Values)
+  
\ No newline at end of file



More information about the Distr-commits mailing list