[med-svn] [r-cran-backports] 01/12: Inject r-cran-backports

Andreas Tille tille at debian.org
Thu Sep 28 15:47:23 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-backports.

commit 8b0baa30ac0c86d76141ec093f98b3ce6ec23495
Author: Andreas Tille <tille at debian.org>
Date:   Sun Oct 30 12:00:17 2016 +0000

    Inject r-cran-backports
---
 debian/README.test         | 10 ++++++++++
 debian/changelog           |  5 +++++
 debian/compat              |  1 +
 debian/control             | 26 ++++++++++++++++++++++++++
 debian/copyright           | 25 +++++++++++++++++++++++++
 debian/docs                |  3 +++
 debian/rules               |  5 +++++
 debian/source/format       |  1 +
 debian/tests/control       |  3 +++
 debian/tests/run-unit-test | 22 ++++++++++++++++++++++
 debian/watch               |  2 ++
 11 files changed, 103 insertions(+)

diff --git a/debian/README.test b/debian/README.test
new file mode 100644
index 0000000..e330aad
--- /dev/null
+++ b/debian/README.test
@@ -0,0 +1,10 @@
+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.
+
+ -- Andreas Tille <tille at debian.org>  Fri, 27 Jun 2014 19:02:17 +0200
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..4bb7922
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+r-cran-backports (1.0.4-1) UNRELEASED; urgency=medium
+
+  * Initial release (closes: #xxxxxx)
+
+ -- Andreas Tille <tille at debian.org>  Sun, 30 Oct 2016 12:38:59 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..4d4dab3
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,26 @@
+Source: r-cran-backports
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Andreas Tille <tille at debian.org>
+Section: gnu-r
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-r,
+               r-base-dev
+Standards-Version: 3.9.8
+Vcs-Browser: https://anonscm.debian.org/viewvc/debian-med/packages/trunk/R/r-cran-backports/trunk/
+Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/R/r-cran-backports/trunk/
+Homepage: https://cran.r-project.org/package=backports
+
+Package: r-cran-backports
+Architecture: all
+Depends: ${R:Depends},
+         ${misc:Depends}
+Recommends: ${R:Recommends}
+Suggests: ${R:Suggests}
+Description: Reimplementations of Functions Introduced Since R-3.0.0
+ Implementations of functions which have been introduced in
+ R since version 3.0.0. The backports are conditionally exported which
+ results in R resolving the function names to the version shipped with R (if
+ available) and uses the implemented backports as fallback. This way package
+ developers can make use of the new functions without worrying about the
+ minimum required R version.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..11c1d43
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,25 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: backports
+
+Files: *
+Copyright: Michel Lang <michellang at gmail.com>
+License: GPL-2
+
+Files: debian/*
+Copyright: 2016 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 complete text of the GNU General Public
+ License can be found in `/usr/share/common-licenses/GPL-2'.
+
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..960011c
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,3 @@
+tests
+debian/README.test
+debian/tests/run-unit-test
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..d2aa55a
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,3 @@
+Tests: run-unit-test
+Depends: @
+Restrictions: allow-stderr
diff --git a/debian/tests/run-unit-test b/debian/tests/run-unit-test
new file mode 100644
index 0000000..28c7e98
--- /dev/null
+++ b/debian/tests/run-unit-test
@@ -0,0 +1,22 @@
+#!/bin/sh -e
+
+pkg=r-cran-backports
+if [ "$ADTTMP" = "" ] ; then
+  ADTTMP=`mktemp -d /tmp/${pkg}-test.XXXXXX`
+  trap "rm -rf $ADTTMP" 0 INT QUIT ABRT PIPE TERM
+fi
+cd $ADTTMP
+cp -a /usr/share/doc/${pkg}/tests/* $ADTTMP
+# gunzip *.gz
+export LC_ALL=C
+for test in *R
+do
+  R CMD BATCH ${test}
+  if [ ! $? ] ; then
+    echo "Test ${test} failed"
+    exit 1
+  else
+    echo "Test ${test} passed"
+  fi
+  rm -f ${test}out .RData
+done
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..ac86d4f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=4
+https://cran.r-project.org/src/contrib/backports_([-\d.]*)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/r-cran-backports.git



More information about the debian-med-commit mailing list