debian/0000755000000000000000000000000012145104033007157 5ustar debian/control0000644000000000000000000000174212144704624010601 0ustar Source: r-cran-deldir Section: gnu-r Priority: optional Maintainer: Debian Science Team Uploaders: Andreas Tille Build-Depends: debhelper (>= 9.0), cdbs, r-base-dev Standards-Version: 3.9.4 Homepage: http://cran.r-project.org/web/packages/deldir/ Vcs-Browser: http://svn.debian.org/wsvn/debian-science/packages/R/r-cran-deldir/trunk/ Vcs-Svn: svn://svn.debian.org/debian-science/packages/R/r-cran-deldir/trunk/ Package: r-cran-deldir Enhances: r-cran-pbsmapping Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, r-base-core Description: GNU R Delaunay Triangulation and Dirichlet (Voronoi) Tessellation This GNU R package calculates the Delaunay triangulation and the Dirichlet or Voronoi tessellation (with respect to the entire plane) of a planar point set. This package is used in Spatial Point Pattern analysis, model-fitting and simulation as it is done for instance in the package r-cran-spatstat. debian/rules0000755000000000000000000000044112144706765010261 0ustar #!/usr/bin/make -f # -*- makefile -*- # debian/rules file for the Debian/GNU Linux r-cran-deldir package # Copyright 2009 by Andreas Tille include /usr/share/R/debian/r-cran.mk install/$(package):: rm -rf debian/$(package)/usr/lib/R/site-library/deldir/ratfor debian/watch0000644000000000000000000000011212144704707010217 0ustar version=3 http://cran.r-project.org/src/contrib/deldir_([-\d.]*)\.tar\.gz debian/copyright0000644000000000000000000000224312144705103011117 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: deldir Upstream-Contact: Rolf Turner Source: http://cran.r-project.org/web/packages/deldir/ Files: * Copyright: (C) 2008-2013 Rolf Turner License: GPL2 Files: debian/* Copyright: 2009 Andreas Tille 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'. debian/source/0000755000000000000000000000000012144707253010473 5ustar debian/source/format0000644000000000000000000000001411301174376011677 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000023612145104033011032 0ustar r-cran-deldir (0.0-22-1) unstable; urgency=low * Initial release (Closes: #708395). -- Andreas Tille Wed, 15 May 2013 15:12:06 +0200 debian/patches/0000755000000000000000000000000012144706623010622 5ustar debian/patches/prevent_csh.patch0000644000000000000000000000123312144706623014162 0ustar Author: Andreas Tille Description: Convert simple csh script to POSIX shell to silence lintian. However, this is not needed inside the binary package so simply removing the ratfor code from binary seems to be the more sane solution. Leave it here for reference might not harm anyway LastChanged: Wed, 15 May 2013 15:12:06 +0200 --- a/inst/ratfor/makefor +++ b/inst/ratfor/makefor @@ -1,7 +1,7 @@ -#! /bin/csh +#!/bin/sh -foreach file (*.r) -set stem = `basename $file .r` -ratfor $file > $stem.f -/bin/mv $stem.f ../../src -end +for file in `ls *.r` ; do + stem=`basename $file .r` + ratfor $file > $stem.f + /bin/mv $stem.f ../../src +done debian/compat0000644000000000000000000000000212144704630010365 0ustar 9