[Distr-commits] r1427 - branches/distr-2.9/pkg/distrEx branches/distr-2.9/pkg/distrEx/man pkg/distrEx pkg/distrEx/man pkg/utils www

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Jan 29 19:03:54 CET 2024


Author: ruckdeschel
Date: 2024-01-29 19:03:53 +0100 (Mon, 29 Jan 2024)
New Revision: 1427

Modified:
   branches/distr-2.9/pkg/distrEx/DESCRIPTION
   branches/distr-2.9/pkg/distrEx/man/internals.Rd
   pkg/distrEx/DESCRIPTION
   pkg/distrEx/man/0distrEx-package.Rd
   pkg/distrEx/man/internals.Rd
   pkg/utils/DESCRIPTIONutilsExamples.R
   www/distrEx.html
Log:
[distrEx] trunk and branches/distr-2.9: 
  + incremented versions in DESCRIPTION files,
  + fixed minor issue in internals.Rd

Modified: branches/distr-2.9/pkg/distrEx/DESCRIPTION
===================================================================
--- branches/distr-2.9/pkg/distrEx/DESCRIPTION	2024-01-28 20:35:23 UTC (rev 1426)
+++ branches/distr-2.9/pkg/distrEx/DESCRIPTION	2024-01-29 18:03:53 UTC (rev 1427)
@@ -1,5 +1,5 @@
 Package: distrEx
-Version: 2.9.1
+Version: 2.9.3
 Date: 2023-11-27
 Title: Extensions of Package 'distr'
 Description: Extends package 'distr' by functionals, distances, and conditional distributions.

Modified: branches/distr-2.9/pkg/distrEx/man/internals.Rd
===================================================================
--- branches/distr-2.9/pkg/distrEx/man/internals.Rd	2024-01-28 20:35:23 UTC (rev 1426)
+++ branches/distr-2.9/pkg/distrEx/man/internals.Rd	2024-01-29 18:03:53 UTC (rev 1427)
@@ -54,11 +54,11 @@
   \item{prenames}{ to determine the position in the original tree, the names
      of parent nodes are concatenated, separated by "$" and passed on
      to children nodes by argument \code{prenames}. }
-  \item{namestoGather}{ we have two kind of diagnostic list items, ones which
+  \item{nmstoGather}{ we have two kind of diagnostic list items, ones which
     are easily grouped (numeric, character, logical) and ones which are calls,
-    lists or functions. \code{namestoGather} takes the names of items
+    lists or functions. \code{nmstoGather} takes the names of items
     to be regrouped which are of the first kind. }
-  \item{namestoGatherNS}{ the names of items to be regrouped which are of the
+  \item{nmstoGatherNS}{ the names of items to be regrouped which are of the
     second kind (NS standing for "non-shown"). }
   \item{.GatherList}{ the list of new regrouped sublists (of first kind).
           This argument is not filled by the user but rather passed on within the

Modified: pkg/distrEx/DESCRIPTION
===================================================================
--- pkg/distrEx/DESCRIPTION	2024-01-28 20:35:23 UTC (rev 1426)
+++ pkg/distrEx/DESCRIPTION	2024-01-29 18:03:53 UTC (rev 1427)
@@ -1,6 +1,6 @@
 Package: distrEx
-Version: 2.9.1
-Date: 2023-11-27
+Version: 2.9.2
+Date: 2024-01-29
 Title: Extensions of Package 'distr'
 Description: Extends package 'distr' by functionals, distances, and conditional distributions.
 Depends: R(>= 3.4), methods, distr(>= 2.8.0)
@@ -15,4 +15,4 @@
 URL: http://distr.r-forge.r-project.org/
 LastChangedDate: {$LastChangedDate$}
 LastChangedRevision: {$LastChangedRevision$}
-VCS/SVNRevision: 1380
+VCS/SVNRevision: 1426

Modified: pkg/distrEx/man/0distrEx-package.Rd
===================================================================
--- pkg/distrEx/man/0distrEx-package.Rd	2024-01-28 20:35:23 UTC (rev 1426)
+++ pkg/distrEx/man/0distrEx-package.Rd	2024-01-29 18:03:53 UTC (rev 1427)
@@ -26,8 +26,8 @@
 \details{
 \tabular{ll}{
 Package: \tab distrEx \cr
-Version: \tab 2.9.0 \cr
-Date: \tab 2022-11-12 \cr
+Version: \tab 2.9.2 \cr
+Date: \tab 2024-01-29 \cr
 Depends: \tab R(>= 3.4), methods, distr(>= 2.8.0) \cr
 Imports: \tab startupmsg, utils, stats \cr
 Suggests:  \tab tcltk \cr
@@ -34,7 +34,7 @@
 LazyLoad: \tab yes \cr
 License: \tab LGPL-3 \cr
 URL: \tab https://distr.r-forge.r-project.org/\cr
-VCS/SVNRevision: \tab 1380 \cr
+VCS/SVNRevision: \tab 1426 \cr
 }
 }
 \section{Classes}{

Modified: pkg/distrEx/man/internals.Rd
===================================================================
--- pkg/distrEx/man/internals.Rd	2024-01-28 20:35:23 UTC (rev 1426)
+++ pkg/distrEx/man/internals.Rd	2024-01-29 18:03:53 UTC (rev 1427)
@@ -54,11 +54,11 @@
   \item{prenames}{ to determine the position in the original tree, the names
      of parent nodes are concatenated, separated by "$" and passed on
      to children nodes by argument \code{prenames}. }
-  \item{namestoGather}{ we have two kind of diagnostic list items, ones which
+  \item{nmstoGather}{ we have two kind of diagnostic list items, ones which
     are easily grouped (numeric, character, logical) and ones which are calls,
-    lists or functions. \code{namestoGather} takes the names of items
+    lists or functions. \code{nmstoGather} takes the names of items
     to be regrouped which are of the first kind. }
-  \item{namestoGatherNS}{ the names of items to be regrouped which are of the
+  \item{nmstoGatherNS}{ the names of items to be regrouped which are of the
     second kind (NS standing for "non-shown"). }
   \item{.GatherList}{ the list of new regrouped sublists (of first kind).
           This argument is not filled by the user but rather passed on within the

Modified: pkg/utils/DESCRIPTIONutilsExamples.R
===================================================================
--- pkg/utils/DESCRIPTIONutilsExamples.R	2024-01-28 20:35:23 UTC (rev 1426)
+++ pkg/utils/DESCRIPTIONutilsExamples.R	2024-01-29 18:03:53 UTC (rev 1427)
@@ -428,3 +428,22 @@
 updateHTMLpages(pkgNames ="distrMod", pkgVersions = "2.8.4")
 }
 
+if(FALSE){## nur distr Version 2.9.3 in trunk
+Pkgs <- c("distr")
+Names <- c("Version")    ## 20240127
+Values <- matrix(c("2.9.3"),1,length(Pkgs))
+colnames(Values) <- Pkgs
+rownames(Values)  <- Names
+changeDescription(startDir = "C:/rtest/distr",names=Names,
+                  pkgs=Pkgs, values=Values)
+updateHTMLpages(pkgNames ="distrMod", pkgVersions = "2.9.3")
+
+Pkgs <- c("RobAStRDA")
+Names <- c("Version")    ## 20240127
+Values <- matrix(c("1.2.1"),1,length(Pkgs))
+colnames(Values) <- Pkgs
+rownames(Values)  <- Names
+changeDescription(startDir = "C:/rtest/robast",names=Names,
+                  pkgs=Pkgs, values=Values)
+}
+

Modified: www/distrEx.html
===================================================================
--- www/distrEx.html	2024-01-28 20:35:23 UTC (rev 1426)
+++ www/distrEx.html	2024-01-29 18:03:53 UTC (rev 1427)
@@ -1,4 +1,4 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html><head>
 
 
@@ -43,12 +43,12 @@
 
 
 <hr style="width: 100%; height: 2px;">
-<div style="text-align: justify;"> Version: 2.9.0<br>
+<div style="text-align: justify;"> Version: 2.9.2 <br>
 
 
 
 
-Release Date: 2022-11-14 <br>
+Release Date: 2024-01-29 <br>
 
 
 
@@ -1859,7 +1859,7 @@
 <hr style="width: 100%; height: 2px; color: rgb(0, 0, 0);">This page is
 maintained by <a href="mailto:peter.ruckdeschel at uni-oldenburg.de?subject=distr-package">Peter
 Ruckdeschel</a>
-and last updated on 2019-03-12.<br>
+and last updated on 2024-01-29. <br>
 
 
 
@@ -1869,4 +1869,4 @@
 
 
 
-</body></html>
\ No newline at end of file
+</body></html>



More information about the Distr-commits mailing list