[r-cran-vgam] 07/08: Commit README.source

Andreas Tille tille at debian.org
Wed Oct 25 08:03:32 UTC 2017


This is an automated email from the git hooks/post-receive script.

tille pushed a commit to branch master
in repository r-cran-vgam.

commit 940026e128b4775fdf03d35a5a4dbecec2de62bb
Author: Andreas Tille <tille at debian.org>
Date:   Wed Oct 25 09:58:28 2017 +0200

    Commit README.source
---
 debian/README.source        | 141 ++++++++++++++++++++++++++++++++++++++++++++
 debian/create_README.source |  44 ++++++++++++++
 2 files changed, 185 insertions(+)

diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..ab8eed5
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,141 @@
+Explanation for binary files inside source package according to
+  http://lists.debian.org/debian-devel/2013/09/msg00332.html
+
+Files: data/Huggins89.t1.rda
+Documented: man/Huggins89.t1.Rd
+  Table 1 of Huggins (1989)
+
+Files: data/auuc.rda
+Documented: man/auuc.Rd
+  Undergraduate student enrolments
+  at the University of Auckland in 1990.
+
+Files: data/backPain.rda
+Documented: man/backPain.Rd
+  Data from a study of patients suffering from back pain. Prognostic
+  variables were recorded at presentation and progress was categorised
+  three weeks after treatment.
+
+
+Files: data/beggs.rda
+Documented: man/beggs.Rd
+  Purchasing of bacon and eggs.
+
+
+Files: data/cfibrosis.rda
+Documented: man/cfibrosis.Rd
+  %%   ~~ data name/kind ... ~~
+
+
+Files: data/corbet.rda
+Documented: man/corbet.Rd
+  Corbet's Butterfly Data
+
+  %%   ~~ data name/kind ... ~~
+
+Files: data/deermice.rda
+Documented: man/deermice.Rd
+  Captures of Peromyscus maniculatus, also known as deer mice.
+
+
+  %%   ~~ data name/kind ... ~~
+
+Files: data/ducklings.rda
+Documented: man/ducklings.Rd
+  Relative Frequencies of Serum Proteins in White Pekin Ducklings 
+
+  %%   ~~ data name/kind ... ~~
+
+Files: data/finney44.rda
+Documented: man/finney44.Rd
+  %%   ~~ data name/kind ... ~~
+
+Files: data/flourbeetle.rda
+Documented: man/flourbeetle.Rd
+  The \code{flourbeetle} data frame has 8 rows and 4 columns.
+  Two columns are explanatory, the other two are responses.
+
+
+
+Files: data/hspider.rda
+Documented: man/hspider.Rd
+  Abundance of hunting spiders in a Dutch dune area.
+
+Files: data/lakeO.rda
+Documented: man/lakeO.Rd
+  Annual catches on Lake Otamangakau from October 1974 to October 1989
+
+  %%   ~~ data name/kind ... ~~
+
+Files: data/leukemia.rda
+Documented: man/leukemia.Rd
+  \usage{
+  %data(aml)
+  data(leukemia)
+
+Files: data/marital.nz.rda
+Documented: man/marital.nz.Rd
+  New Zealand Marital Data
+
+Files: data/melbmaxtemp.rda
+Documented: man/melbmaxtemp.Rd
+  Melbourne daily maximum temperatures in degrees Celsius
+  over the ten-year period 1981--1990.
+
+
+
+Files: data/pneumo.rda
+Documented: man/pneumo.Rd
+  The \code{pneumo} data frame has 8 rows and 4 columns.
+  Exposure time is explanatory, and there are 3 ordinal response variables.
+
+
+Files: data/prinia.rda
+Documented: man/prinia.Rd
+  %%   ~~ data name/kind ... ~~
+
+
+Files: data/ruge.rda
+Documented: man/ruge.Rd
+  Decay counts of polonium  recorded by Rutherford and Geiger (1910).
+
+
+Files: data/toxop.rda
+Documented: man/toxop.Rd
+  Toxoplasmosis data in 34 cities in El Salvador.
+
+
+Files: data/venice.rda
+Documented: man/venice.Rd
+  Some sea levels data sets recorded at Venice, Italy.
+
+
+Files: data/wine.rda
+Documented: man/wine.Rd
+  %%   ~~ data name/kind ... ~~
+
+
+Files: data/Huggins89table1.rda
+Documented: man/Huggins89.t1.Rd
+  Table 1 of Huggins (1989)
+
+Files: data/alclevels.rda
+       data/alcoff.rda
+       data/crashbc.rda
+       data/crashf.rda
+       data/crashi.rda
+       data/crashmc.rda
+       data/crashp.rda
+       data/crashtr.rda
+Documented: man/crashes.Rd
+  Crashes on New Zealand Roads in 2009
+
+Files: data/car.all.rda
+Documented: man/rrvglm.Rd
+  Fitting Reduced-Rank Vector Generalized Linear Models (RR-VGLMs)
+
+Files: data/venice90.rda
+Documented: man/venice.Rd
+  Venice Maximum Sea Levels Data
+
+ -- Andreas Tille <tille at debian.org>  Wed, 25 Oct 2017 09:54:11 +0200
diff --git a/debian/create_README.source b/debian/create_README.source
new file mode 100755
index 0000000..9bc89b4
--- /dev/null
+++ b/debian/create_README.source
@@ -0,0 +1,44 @@
+#!/bin/sh
+cat <<EOT
+Explanation for binary files inside source package according to
+  http://lists.debian.org/debian-devel/2013/09/msg00332.html
+
+EOT
+
+for rda in ../data/*.rda ; do
+  if [ ! -e ../man/$(basename $rda .rda).Rd ] ; then
+     >&2 echo "Verify documentation for $rda manually"
+  else
+     echo "Files: data/$(basename $rda)"
+     echo "Documented: man/$(basename $rda .rda).Rd"
+     sed -e '0,/^\\title{/d' -e '/^}/,$d' -e '/^\\description{/d' -e 's/^\([^ ]\)/  \1/' ../man/$(basename $rda .rda).Rd
+     echo ""
+  fi
+done
+
+cat <<EOT
+Files: data/Huggins89table1.rda
+Documented: man/Huggins89.t1.Rd
+  Table 1 of Huggins (1989)
+
+Files: data/alclevels.rda
+       data/alcoff.rda
+       data/crashbc.rda
+       data/crashf.rda
+       data/crashi.rda
+       data/crashmc.rda
+       data/crashp.rda
+       data/crashtr.rda
+Documented: man/crashes.Rd
+  Crashes on New Zealand Roads in 2009
+
+Files: data/car.all.rda
+Documented: man/rrvglm.Rd
+  Fitting Reduced-Rank Vector Generalized Linear Models (RR-VGLMs)
+
+Files: data/venice90.rda
+Documented: man/venice.Rd
+  Venice Maximum Sea Levels Data
+
+ -- Andreas Tille <tille at debian.org>  `date -R`
+EOT

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/r-cran-vgam.git



More information about the debian-science-commits mailing list