This is an automated email from the git hooks/post-receive script. tille pushed a commit to branch master in repository r-cran-adephylo.
commit 2d0a752997df1bf6c77dfde222d5d4e8091b50ea Author: Andreas Tille <[email protected]> Date: Wed Mar 23 14:10:17 2016 +0000 INject r-cran-adephylo --- debian/README.test | 9 +++++++++ debian/changelog | 7 +++++++ debian/compat | 1 + debian/control | 27 +++++++++++++++++++++++++++ debian/copyright | 30 ++++++++++++++++++++++++++++++ debian/docs | 3 +++ debian/rules | 3 +++ debian/source/format | 1 + debian/tests/control | 3 +++ debian/tests/run-unit-test | 12 ++++++++++++ debian/upstream/metadata | 12 ++++++++++++ debian/watch | 3 +++ 12 files changed, 111 insertions(+) diff --git a/debian/README.test b/debian/README.test new file mode 100644 index 0000000..8d70ca3 --- /dev/null +++ b/debian/README.test @@ -0,0 +1,9 @@ +Notes on how this package can be tested. +──────────────────────────────────────── + +This package can be tested by running the provided test: + +cd tests +LC_ALL=C R --no-save < testthat.R + +in order to confirm its integrity. diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..fa75dc0 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,7 @@ +r-cran-adephylo (1.1-6-1) UNRELEASED; urgency=low + + * Initial release (Closes: #???) + TODO: svn://anonscm.debian.org/debian-med/trunk/packages/R/r-cran-phylobase/trunk/ + svn://anonscm.debian.org/debian-med/trunk/packages/R/r-cran-adegenet/trunk/ + + -- Andreas Tille <[email protected]> Tue, 22 Mar 2016 21:32:09 +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..9b625c0 --- /dev/null +++ b/debian/control @@ -0,0 +1,27 @@ +Source: r-cran-adephylo +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-ade4, + r-cran-ape, +# r-cran-phylobase, +# r-cran-adegenet +Standards-Version: 3.9.7 +Vcs-Browser: https://anonscm.debian.org/viewvc/debian-med/trunk/packages/R/r-cran-adephylo/trunk/ +Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/R/r-cran-adephylo/trunk/ +Homepage: https://cran.r-project.org/web/packages/adephylo/ + +Package: r-cran-adephylo +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + ${R:Depends} + r-cran-ade4, + r-cran-ape, +Description: GNU R exploratory analyses for the phylogenetic comparative method + This GNU R package provides multivariate tools to analyze comparative + data, i.e. a phylogeny and some traits measured for each taxa. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..ce5f851 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,30 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Contact: Thibaut Jombart <[email protected]> +Source: https://cran.r-project.org/web/packages/adegenet/ + +Files: * +Copyright: 2013-2016 Thibaut Jombart <[email protected]>, + Stephane Dray +License: GPL-2+ + +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. + . + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + . + 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..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..b044b0c --- /dev/null +++ b/debian/tests/control @@ -0,0 +1,3 @@ +Tests: run-unit-test +Depends: @, r-cran-testthat +Restrictions: allow-stderr diff --git a/debian/tests/run-unit-test b/debian/tests/run-unit-test new file mode 100644 index 0000000..b1aa7d1 --- /dev/null +++ b/debian/tests/run-unit-test @@ -0,0 +1,12 @@ +#!/bin/sh -e + +oname=adegenet +pkg=r-cran-`echo $oname | tr [A-Z] [a-z]` + +if [ "$ADTTMP" = "" ] ; then + ADTTMP=`mktemp -d /tmp/${pkg}-test.XXXXXX` +fi +cd $ADTTMP +cp -a /usr/share/doc/${pkg}/tests/* $ADTTMP +LC_ALL=C R --no-save < testthat.R +rm -fr $ADTTMP/* diff --git a/debian/upstream/metadata b/debian/upstream/metadata new file mode 100644 index 0000000..190a826 --- /dev/null +++ b/debian/upstream/metadata @@ -0,0 +1,12 @@ +Reference: + Author: Thibaut Jombart and François Balloux and Stéphane Dray + Title: "adephylo: new tools for investigating the phylogenetic signal in biological traits" + Journal: Bioinformatics + Year: 2010 + Volume: 26 + Number: 15 + Pages: 1907-1909 + DOI: 10.1093/bioinformatics/btq292 + PMID: 20525823 + URL: http://bioinformatics.oxfordjournals.org/content/26/15/1907 + eprint: http://bioinformatics.oxfordjournals.org/content/26/15/1907.full.pdf+html diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..a8c4904 --- /dev/null +++ b/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://cran.r-project.org/src/contrib/adephylo_([-0-9\.]*).tar.gz + -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/r-cran-adephylo.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
