[r-cran-lmertest] 01/01: Import Debian changes 2.0-33-1
Sébastien Villemot
sebastien at debian.org
Mon Oct 2 08:48:23 UTC 2017
This is an automated email from the git hooks/post-receive script.
sebastien pushed a commit to branch master
in repository r-cran-lmertest.
commit f417bec1b3a8e0f7d8a9a6b0a4e0245573cca82d
Author: Andreas Tille <tille at debian.org>
Date: Sun Aug 27 15:14:03 2017 +0200
Import Debian changes 2.0-33-1
r-cran-lmertest (2.0-33-1) unstable; urgency=medium
* Initial release (closes: #873396)
---
debian/README.source | 17 +++++++++++++++++
debian/README.test | 8 ++++++++
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 35 +++++++++++++++++++++++++++++++++++
debian/copyright | 29 +++++++++++++++++++++++++++++
debian/docs | 3 +++
debian/rules | 5 +++++
debian/source/format | 1 +
debian/tests/control | 9 +++++++++
debian/tests/generic | 7 +++++++
debian/tests/run-unit-test | 17 +++++++++++++++++
debian/watch | 2 ++
13 files changed, 139 insertions(+)
diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..6d76bc1
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,17 @@
+Explanation for binary files inside source package according to
+ http://lists.debian.org/debian-devel/2013/09/msg00332.html
+
+Files: data/carrots.rda
+Documentation: man/carrots.Rd
+ data from consumer study 103 consumers scored their preference of 12
+ danish carrot types on a scale from 1 to 7
+
+Files: data/ham.rda
+Documentation: man/ham.Rd
+ Conjoint study of dry cured ham
+
+Files: data/TVbo.rda
+Documentation: man/TVbo.Rd
+ Study about TV sets
+
+ -- Andreas Tille <tille at debian.org> Sun, 27 Aug 2017 14:44:49 +0200
diff --git a/debian/README.test b/debian/README.test
new file mode 100644
index 0000000..55a9142
--- /dev/null
+++ b/debian/README.test
@@ -0,0 +1,8 @@
+Notes on how this package can be tested.
+────────────────────────────────────────
+
+To run the unit tests provided by the package you can do
+
+ sh run-unit-test
+
+in this directory.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..81bcae0
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+r-cran-lmertest (2.0-33-1) unstable; urgency=medium
+
+ * Initial release (closes: #873396)
+
+ -- Andreas Tille <tille at debian.org> Sun, 27 Aug 2017 15:14:03 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..aa058aa
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,35 @@
+Source: r-cran-lmertest
+Maintainer: Debian Science Team <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Andreas Tille <tille at debian.org>
+Section: gnu-r
+Priority: optional
+Build-Depends: debhelper (>= 10),
+ dh-r,
+ r-base-dev,
+ r-cran-matrix,
+ r-cran-lme4 (>= 1.0),
+ r-cran-plyr,
+ r-cran-mass,
+ r-cran-hmisc,
+ r-cran-ggplot2,
+ r-cran-foreign,
+ r-cran-nnet
+Standards-Version: 4.1.0
+Vcs-Browser: https://anonscm.debian.org/viewvc/debian-science/packages/R/r-cran-lmertest/trunk/
+Vcs-Svn: svn://anonscm.debian.org/debian-science/packages/R/r-cran-lmertest/trunk/
+Homepage: https://cran.r-project.org/package=lmerTest
+
+Package: r-cran-lmertest
+Architecture: all
+Depends: ${R:Depends},
+ ${shlibs:Depends},
+ ${misc:Depends}
+Recommends: ${R:Recommends}
+Suggests: ${R:Suggests}
+Description: GNU R tests in Linear Mixed Effects Models
+ Different kinds of tests for linear mixed effects models as implemented
+ in 'lme4' package are provided. The tests comprise types I - III F tests
+ for fixed effects, LR tests for random effects.
+ The package also provides the calculation of population means for fixed factors
+ with confidence intervals and corresponding plots. Finally the backward
+ elimination of non-significant effects is implemented.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..8acf76e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: lmerTest
+Upstream-Contact: Per Bruun Brockhoff <perbb at dtu.dk>
+Source: https://cran.r-project.org/package=lmerTest
+
+Files: *
+Copyright: Alexandra Kuznetsova, Per Bruun Brockhoff, Rune Haubo Bojesen Christensen
+License: GPL-2+
+
+Files: debian/*
+Copyright: 2017 Andreas Tille <tille at debian.org>
+License: GPL-2+
+
+License: GPL-2+
+ This program is free software; you can redistribute it
+ and/or modify it under the terms of the GNU General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later
+ version.
+ .
+ This program is distributed in the hope that it will be
+ useful, but WITHOUT ANY WARRANTY; without even the implied
+ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ PURPOSE. See the GNU General Public License for more
+ details.
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..6466d39
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,3 @@
+debian/tests/run-unit-test
+debian/README.test
+tests
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..529c38a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --buildsystem R
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/tests/control b/debian/tests/control
new file mode 100644
index 0000000..34d2dff
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,9 @@
+Tests: generic
+Depends: @,
+Restrictions: allow-stderr
+
+Tests: run-unit-test
+Depends: @,
+Restrictions: allow-stderr
+
+
diff --git a/debian/tests/generic b/debian/tests/generic
new file mode 100644
index 0000000..eb39c8e
--- /dev/null
+++ b/debian/tests/generic
@@ -0,0 +1,7 @@
+#!/bin/sh -e
+
+for testfile in tests/*.R; do
+ echo "BEGIN TEST $testfile"
+ LC_ALL=C R --no-save < $testfile
+done
+
diff --git a/debian/tests/run-unit-test b/debian/tests/run-unit-test
new file mode 100644
index 0000000..38c5557
--- /dev/null
+++ b/debian/tests/run-unit-test
@@ -0,0 +1,17 @@
+#!/bin/sh -e
+
+pkgname=lmerTest
+debname=r-cran-lmertest
+
+if [ "$ADTTMP" = "" ] ; then
+ ADTTMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
+ trap "rm -rf $ADTTMP" 0 INT QUIT ABRT PIPE TERM
+fi
+cd $ADTTMP
+cp -a /usr/share/doc/$debname/tests/* $ADTTMP
+gunzip -r *
+for testfile in *.R; do
+ echo "BEGIN TEST $testfile"
+ LC_ALL=C R --no-save < $testfile
+done
+
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..029c0bf
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=4
+https://cran.r-project.org/src/contrib/lmerTest_([-\d.]*)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/r-cran-lmertest.git
More information about the debian-science-commits
mailing list