--- r-cran-stabledist-0.6-5.orig/debian/watch +++ r-cran-stabledist-0.6-5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://cran.r-project.org/src/contrib/stabledist_([-\d\.]*)\.tar.gz --- r-cran-stabledist-0.6-5.orig/debian/overrides +++ r-cran-stabledist-0.6-5/debian/overrides @@ -0,0 +1 @@ +r-cran-stabledist: old-fsf-address-in-copyright-file --- r-cran-stabledist-0.6-5.orig/debian/changelog +++ r-cran-stabledist-0.6-5/debian/changelog @@ -0,0 +1,55 @@ +r-cran-stabledist (0.6-5-2) unstable; urgency=low + + * debian/control: Set Build-Depends: to current R version + + * (Re-)building with R 3.0.0 (beta) + + -- Dirk Eddelbuettel Sat, 30 Mar 2013 18:21:23 -0500 + +r-cran-stabledist (0.6-5-1) unstable; urgency=low + + * New upstream release + + * debian/control: Set Build-Depends: to current R version + * debian/control: Set Standards-Version: to current version + + -- Dirk Eddelbuettel Tue, 02 Oct 2012 12:26:07 -0500 + +r-cran-stabledist (0.6-4-1) unstable; urgency=low + + * New upstream release + + * debian/control: Set Build-Depends: to current R version + + -- Dirk Eddelbuettel Tue, 29 May 2012 13:27:39 -0500 + +r-cran-stabledist (0.6-3-1) unstable; urgency=low + + * New upstream release + + * debian/control: Set Build-Depends: to current R version + * debian/control: Change Depends to ${R:Depends} + * debian/control: Set Standards-Version: to current version + + -- Dirk Eddelbuettel Tue, 20 Mar 2012 11:09:21 -0500 + +r-cran-stabledist (0.6-2.1-1) unstable; urgency=low + + * New upstream release + + -- Dirk Eddelbuettel Mon, 04 Apr 2011 07:21:25 -0500 + +r-cran-stabledist (0.6-0-2) unstable; urgency=low + + * debian/control: Correct to 'Architecture: all' + + -- Dirk Eddelbuettel Fri, 18 Mar 2011 11:47:48 -0500 + +r-cran-stabledist (0.6-0-1) unstable; urgency=low + + * Initial Debian release of new CRAN package stabledist factored out of + existing package fBasics (Closes: #618789) + + -- Dirk Eddelbuettel Fri, 18 Mar 2011 08:33:40 -0500 + + --- r-cran-stabledist-0.6-5.orig/debian/rules +++ r-cran-stabledist-0.6-5/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# debian/rules file for the Debian/GNU Linux r-cran-stabledist package +# Copyright 2003-2011 by Dirk Eddelbuettel + +include /usr/share/R/debian/r-cran.mk --- r-cran-stabledist-0.6-5.orig/debian/copyright +++ r-cran-stabledist-0.6-5/debian/copyright @@ -0,0 +1,88 @@ +This is the Debian GNU/Linux r-cran-stabledist package of stabledist, +a set of function for density, probability and quantile functions, and +random number generation for (skew) stable distributions. It was +factored out of the Rmetrics package fBasics which now depends on +it. Rmetrics is a collection of packages for financial engineering and +computational finance. stabledist was started by Diethelm Wuertz +andwas extended by Martin Maechler who now maintains it. + +This package was created by Dirk Eddelbuettel . +The sources were downloaded from the main CRAN site + http://cran.r-project.org/src/contrib/ +and are also available from all CRAN mirrors as e.g. + http://cran.us.r-project.org/src/contrib/ + +The package was renamed from its upstream name 'stabledist' to +'r-cran-stabledist' to fit the pattern of CRAN (and non-CRAN) packages for +R. + +Copyright (C) 1999 - 2008 Diethelm Wuertz +Copyright (C) 1999 - 2010 Rmetrics Foundation +Copyright (C) 2011 - 2010 Diethelm Wuertz and Martin Maechler + +License: GPL + +stabledist is copyright by Diethelm Wuertz, Martin Maechler and +others, and released under the GNU General Public License (GPL) +version 2 or greater. + +On a Debian GNU/Linux system, the GPL license (v2) is included in the +file /usr/share/common-licenses/GPL-2. + +For reference, the upstream DESCRIPTION file is included below: + + Package: stabledist + Version: 0.6-0 + Date: 2011-03-12 + Title: Stable Distribution Functions + Author: Diethelm Wuertz, Martin Maechler and Rmetrics core team + members. + Maintainer: Martin Maechler + Depends: R (>= 2.10.1) + Suggests: fBasics, RUnit + Description: Density, Probability and Quantile functions, and random + number generation for (skew) stable distributions, using the + parametrizations of Nolan. + LazyLoad: yes + LazyData: yes + License: GPL (>= 2) + URL: http://www.rmetrics.org + Packaged: 2011-03-14 13:15:38 UTC; maechler + Repository: CRAN + Date/Publication: 2011-03-15 16:41:43 + +and the following segment was extracted from the header of +R/dist-stableMode.R [ and yes, that is the old FSF address but I am +quoting here ] + + # This R package is free software; you can redistribute it and/or + # modify it under the terms of the GNU Library General Public + # License as published by the Free Software Foundation; either + # version 2 of the License, or (at your option) any later version. + # + # This R package 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 Library General Public License for more details. + # + # You should have received a copy of the GNU Library General + # Public License along with this R package; if not, write to the + # Free Foundation, Inc., 59 Temple Place, Suite 330, Boston, + # MA 02111-1307 USA + + + ################################################################################ + # FUNCTIONS: DESCRIPTION: + # stableMode Computes the mode of the stable DF + ################################################################################ + + ##' Computes the mode of the alpha stable distribution + ##' @title Mode of the stable distribution + ##' @param alpha + ##' @param beta + ##' @param beta.max for numerical purposes, values of beta too close to 1, + ##' are set to beta.max + ##' @param tol numerical tolerance used in optimize() + ##' @return a number, the stable mode + ##' @author Diethelm Wuertz and Martin Maechler + --- r-cran-stabledist-0.6-5.orig/debian/control +++ r-cran-stabledist-0.6-5/debian/control @@ -0,0 +1,16 @@ +Source: r-cran-stabledist +Section: gnu-r +Priority: optional +Maintainer: Dirk Eddelbuettel +Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.0.0~20130327), cdbs +Standards-Version: 3.9.4 +Homepage: http://www.rmetrics.org + +Package: r-cran-stabledist +Architecture: all +Depends: ${shlibs:Misc}, ${R:Depends} +Suggests: r-cran-runit, r-cran-fbasics +Description: GNU R package for stable distribution functions + This package provides density, probability and quantile functions, + and random number generation for (skew) stable distributions, using + the parametrizations of Nolan.