[r-cran-aer] 02/02: Import Debian changes 0.9-4-1

Andreas Tille tille at debian.org
Wed Sep 6 19:53:52 UTC 2017


This is an automated email from the git hooks/post-receive script.

tille pushed a commit to annotated tag debian/0.9-4-1
in repository r-cran-aer.

commit a7dc0ef42632e569f1822d0e8876c3227b0fe69a
Author: Chris Lawrence <lawrencc at debian.org>
Date:   Wed Mar 23 23:16:00 2016 -0400

    Import Debian changes 0.9-4-1
    
    r-cran-mcmc (0.9-4-1) unstable; urgency=medium
    
      * Initial Debian Release. (Closes: #819137)
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 21 +++++++++++++++++++++
 debian/copyright     | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/rules         | 21 +++++++++++++++++++++
 debian/source/format |  1 +
 debian/watch         |  2 ++
 7 files changed, 101 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..3f34bcf
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+r-cran-mcmc (0.9-4-1) unstable; urgency=medium
+
+  * Initial Debian Release. (Closes: #819137)
+
+ -- Chris Lawrence <lawrencc at debian.org>  Wed, 23 Mar 2016 23:16:00 -0400
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..d42e8e8
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+Source: r-cran-mcmc
+Section: gnu-r
+Priority: optional
+Maintainer: Chris Lawrence <lawrencc at debian.org>
+Build-Depends: debhelper (>> 9), r-base-dev (>= 3.0), cdbs, dpkg-dev (>= 1.16.1~)
+Standards-Version: 3.9.6
+Homepage: http://www.stat.umn.edu/geyer/mcmc/
+
+Package: r-cran-mcmc
+Architecture: any
+Depends: ${R:Depends}, ${shlibs:Depends}, ${misc:Depends}
+Enhances: r-cran-mcmcpack
+Description: GNU R package for Markov Chain Monte Carlo simulations
+ Simulates continuous distributions of random vectors using Markov
+ chain Monte Carlo (MCMC). Users specify the distribution by an R
+ function that evaluates the log unnormalized density. Algorithms are
+ random walk Metropolis algorithm (function metrop), simulated
+ tempering (function temper), and morphometric random walk Metropolis
+ (Johnson and Geyer, Annals of Statistics, 2012, function
+ morph.metrop), which achieves geometric ergodicity by change of
+ variable.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..cc79aba
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,50 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: mcmc
+Upstream-Contact: Charles J. Geyer <charlie at stat.umn.edu>
+Source: https://cran.r-project.org/web/packages/mcmc/index.html
+
+Files: *
+Copyright: 2005, 2009, 2010, 2012 Charles J. Geyer and Leif T. Johnson
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
+
+Files: debian/*
+Copyright: 2016 Chris Lawrence <lawrencc at debian.org>, 2003 Dirk Eddelbuettel <edd at debian.org>
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..949863e
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+# 							-*- makefile -*-
+# debian/rules file for the Debian/GNU Linux r-cran-car package
+# Copyright 2003 by Dirk Eddelbuettel <edd at debian.org>
+
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/buildflags.mk
+
+PKG_CFLAGS=$(CFLAGS)
+PKG_CXXFLAGS=$(CXXFLAGS)
+PKG_CPPFLAGS=$(CPPFLAGS)
+PKG_FFLAGS=$(FFLAGS)
+
+export PKG_CFLAGS PKG_CXXFLAGS PKG_CPPFLAGS PKG_FFLAGS
+
+makeFlags="LDFLAGS=$(LDFLAGS)"
+
+include /usr/share/R/debian/r-cran.mk
+
+common-install-arch::
+		rm -vf $(debRlib)/R.css $(debRlib)/$(cranName)/COPYING
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..e390647
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=2
+http://cran.r-project.org/src/contrib/mcmc_(.*)\.tar\.gz

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



More information about the debian-science-commits mailing list