This is an automated email from the git hooks/post-receive script. tille pushed a commit to branch master in repository r-cran-irlba.
commit 302146ef65da80efc60cc33e9ba149a3030972a9 Author: Andreas Tille <[email protected]> Date: Thu Jul 7 12:48:42 2016 +0000 Inject r-cran-irlba --- debian/README.test | 8 ++++++++ debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 23 +++++++++++++++++++++++ debian/copyright | 29 +++++++++++++++++++++++++++++ debian/docs | 3 +++ debian/examples | 1 + debian/rules | 3 +++ debian/source/format | 1 + debian/tests/control | 3 +++ debian/tests/run-unit-test | 22 ++++++++++++++++++++++ debian/watch | 2 ++ 12 files changed, 101 insertions(+) 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..fab6ee4 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +r-cran-irlba (2.0.0-1) unstable; urgency=low + + * Initial release (closes: #830217) + + -- Andreas Tille <[email protected]> Thu, 07 Jul 2016 14:41:08 +0200 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..eb79b18 --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: r-cran-irlba +Maintainer: Debian Med Packaging Team <[email protected]> +Uploaders: Andreas Tille <[email protected]> +Section: gnu-r +Priority: optional +Build-Depends: debhelper (>= 9), + cdbs, + r-base-dev, + r-cran-matrix +Standards-Version: 3.9.8 +Vcs-Browser: https://anonscm.debian.org/viewvc/debian-med/trunk/packages/R/r-cran-irlba/trunk/ +Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/R/r-cran-irlba/trunk/ +Homepage: https://cran.r-project.org/web/packages/irlba + +Package: r-cran-irlba +Architecture: all +Depends: ${misc:Depends}, + ${R:Depends}, + r-cran-matrix +Description: GNU R fast truncated SVD, PCA and symmetric eigendecomposition + This GNU R package provides Fast and memory efficient methods for + truncated singular and eigenvalue decompositions and principal component + analysis of large sparse or dense matrices. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..25f2ed0 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,29 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: irlba +Upstream-Contact: Bryan W. Lewis <[email protected]> +Source: https://cran.r-project.org/web/packages/irlba + +Files: * +Copyright: 2010-2015 Bryan W. Lewis <[email protected]>, + Lothar Reichel +License: GPL-2+ +Comment: The download page specifies + GPL-2 | GPL-3 [expanded from: GPL] and links to a GPL-2+ text + +Files: debian/* +Copyright: 2016 Andreas Tille <[email protected]> +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..3adf0d6 --- /dev/null +++ b/debian/docs @@ -0,0 +1,3 @@ +debian/README.test +debian/tests/run-unit-test +tests diff --git a/debian/examples b/debian/examples new file mode 100644 index 0000000..18244c8 --- /dev/null +++ b/debian/examples @@ -0,0 +1 @@ +vignettes diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2fbba2d --- /dev/null +++ b/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f + +include /usr/share/R/debian/r-cran.mk 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..9612b89 --- /dev/null +++ b/debian/tests/run-unit-test @@ -0,0 +1,22 @@ +#!/bin/sh -e +oname=irlba +pkg=r-cran-`echo $oname | tr '[A-Z]' '[a-z]'` + +if [ "$ADTTMP" = "" ] ; then + ADTTMP=`mktemp -d /tmp/${pkg}-test.XXXXXX` + trap "rm -rf $ADTTMP" 0 INT QUIT ABRT PIPE TERM +fi +cd $ADTTMP +cp /usr/share/doc/$pkg/examples/vignettes/* $ADTTMP +cp /usr/share/doc/$pkg/tests/* $ADTTMP +find . -name "*.gz" -exec gunzip \{\} \; +for rnw in `ls *.[rRS]nw` ; do +rfile=`echo $rnw | sed 's/\.[rRS]nw/.R/'` +R --no-save <<EOT + Stangle("$rnw") + source("$rfile", echo=TRUE) +EOT + echo "$rnw passed" +done + +LC_ALL=C R --no-save < test.R diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..377e921 --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://cran.r-project.org/src/contrib/irlba_([-\d.]*)\.tar\.gz -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/r-cran-irlba.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
