[r-cran-polycub] 01/18: Inject r-cran-polycub

Andreas Tille tille at debian.org
Fri Oct 20 14:21:48 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-polycub.

commit 6ae5efeafd77e661c7de7afa56eafc84f840a3ac
Author: Andreas Tille <tille at debian.org>
Date:   Fri Jan 24 12:30:48 2014 +0000

    Inject r-cran-polycub
---
 debian/README.test   | 24 ++++++++++++++++++++++++
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 34 ++++++++++++++++++++++++++++++++++
 debian/copyright     | 30 ++++++++++++++++++++++++++++++
 debian/docs          |  2 ++
 debian/rules         |  4 ++++
 debian/source/format |  1 +
 debian/watch         |  2 ++
 9 files changed, 103 insertions(+)

diff --git a/debian/README.test b/debian/README.test
new file mode 100644
index 0000000..ef0dffc
--- /dev/null
+++ b/debian/README.test
@@ -0,0 +1,24 @@
+Notes on how this package can be tested.
+────────────────────────────────────────
+
+This package can be tested by running the provided test:
+
+
+#!/bin/sh -e
+DIR=`mktemp -d`
+cd $DIR
+cp -a /usr/share/doc/r-cran-polycub/tests/* .
+LC_ALL=C R --no-save < test-all.R
+cd ..
+rm -rf $DIR
+
+
+in order to confirm its integrity.
+
+However, to do this test you also need to install gpclib
+
+   http://cran.r-project.org/web/packages/gpclib/
+
+which is non-free and thus can not be distributet in Debian main.
+
+ -- Andreas Tille <tille at debian.org>  Tue, 14 Jan 2014 16:30:53 +0100
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..d115188
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+r-cran-polycub (0.4-1-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #???)
+
+ -- Andreas Tille <tille at debian.org>  Fri, 24 Jan 2014 11:41:19 +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..5531766
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,34 @@
+Source: r-cran-polycub
+Section: gnu-r
+XS-Testsuite: autopkgtest
+Priority: optional
+Maintainer: Debian Science Team <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Andreas Tille <tille at debian.org>
+Build-Depends: debhelper (>= 9.0),
+               cdbs,
+               r-base-dev,
+               r-cran-sp,
+               r-cran-spatstat,
+               r-cran-statmod
+Standards-Version: 3.9.5
+Vcs-Browser: http://anonscm.debian.org/viewvc/debian-science/packages/R/trunk/packages/r-cran-polycub/trunk/
+Vcs-Svn: svn://anonscm.debian.org/debian-science/packages/R/trunk/packages/r-cran-polycub/trunk/
+Homepage: http://cran.r-project.org/web/packages/polyCub/
+
+Package: r-cran-polycub
+Architecture: all
+Depends: ${misc:Depends},
+         ${R:Depends},
+         r-cran-sp,
+         r-cran-spatstat,
+         r-cran-statmod
+Description: GNU R Cubature over Polygonal Domains
+ PolyCub is a GNU R package providing methods for cubature (numerical
+ integration) over polygonal domains. Currently, four cubature methods
+ are implemented: the two-dimensional midpoint rule (a simple wrapper
+ around spatstat::as.im.function), the product Gauss cubature proposed by
+ Sommariva and Vianello (2007), an adaptive cubature for isotropic
+ functions via line integrate() along the boundary, and quasi-exact
+ methods specific to the integration of the bivariate Gaussian density
+ over polygonal and circular domains. For cubature over simple
+ hypercubes, the packages cubature and R2Cuba are more appropriate.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..eeb3494
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,30 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: polyCub
+Upstream-Contact: Sebastian Meyer <Sebastian.Meyer at ifspm.uzh.ch>
+Source: http://cran.r-project.org/web/packages/polyCub/
+
+Files: *
+Copyright: (C) 2005 - 2013 Sebastian Meyer, Michael Hoehle
+License: GPL2
+
+Files: debian/*
+Copyright: 2014 Andreas Tille <tille at debian.org>
+License: GPL2
+
+License: GPL2
+ 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 Street, 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'.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..8fe8108
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+debian/README.test
+tests
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..1cb1c9f
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+#	-*- makefile -*-
+
+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/watch b/debian/watch
new file mode 100644
index 0000000..b0023be
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://cran.r-project.org/src/contrib/polyCub_([-\d.]*)\.tar\.gz

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



More information about the debian-science-commits mailing list