[r-cran-matchit] 02/45: Import Debian changes 1.0-1-1

Andreas Tille tille at debian.org
Fri Oct 20 06:17:18 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-matchit.

commit fc0d94fd72cd9c68f7e6d4d817d23328009c6b0e
Author: Chris Lawrence <lawrencc at debian.org>
Date:   Sun Jan 23 04:59:53 2005 -0600

    Import Debian changes 1.0-1-1
    
    matchit (1.0-1-1) unstable; urgency=low
    
      * New upstream release.
      * Update upstream URL in debian/watch and debian/copyright.
    
    matchit (0.1-8-1) unstable; urgency=low
    
      * New upstream release.
    
    matchit (0.1-5-2) unstable; urgency=low
    
      * Rebuild for R 2.0.0.
    
    matchit (0.1-5-1) unstable; urgency=low
    
      * New upstream release
    
    matchit (0.1-4-1) unstable; urgency=low
    
      * Initial Debian Release.  (Closes: #255309)
---
 debian/changelog | 30 ++++++++++++++++++++++++++++++
 debian/compat    |  1 +
 debian/control   | 27 +++++++++++++++++++++++++++
 debian/copyright | 23 +++++++++++++++++++++++
 debian/postinst  | 23 +++++++++++++++++++++++
 debian/postrm    | 23 +++++++++++++++++++++++
 debian/rules     | 24 ++++++++++++++++++++++++
 debian/watch     |  2 ++
 8 files changed, 153 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..e482aa2
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,30 @@
+matchit (1.0-1-1) unstable; urgency=low
+
+  * New upstream release.
+  * Update upstream URL in debian/watch and debian/copyright.
+
+ -- Chris Lawrence <lawrencc at debian.org>  Sun, 23 Jan 2005 04:59:53 -0600
+
+matchit (0.1-8-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Chris Lawrence <lawrencc at debian.org>  Sat,  9 Oct 2004 21:55:33 -0500
+
+matchit (0.1-5-2) unstable; urgency=low
+
+  * Rebuild for R 2.0.0.
+
+ -- Chris Lawrence <lawrencc at debian.org>  Fri,  8 Oct 2004 00:33:21 -0500
+
+matchit (0.1-5-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Chris Lawrence <lawrencc at debian.org>  Sun, 15 Aug 2004 23:55:47 -0500
+
+matchit (0.1-4-1) unstable; urgency=low
+
+  * Initial Debian Release.  (Closes: #255309)
+
+ -- Chris Lawrence <lawrencc at debian.org>  Tue, 23 Mar 2004 13:07:33 -0600
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b8626c4
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..60c334a
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,27 @@
+Source: matchit
+Section: math
+Priority: optional
+Maintainer: Chris Lawrence <lawrencc at debian.org>
+Build-Depends-Indep: debhelper (>> 4.1.0), r-base-dev (>> 2.0.0), cdbs
+Standards-Version: 3.6.1.0
+
+Package: r-other-gking-matchit
+Architecture: all
+Depends: r-base-core (>> 2.0.0)
+Suggests: r-other-gking-zelig
+Description: GNU R package of nonparametric matching methods
+ MatchIt implements the suggestions of Ho, Imai, King, and Stuart
+ (2004) for improving parametric statistical models by preprocessing
+ data with nonparametric matching methods.
+ .
+ MatchIt implements a wide range of sophisticated matching methods,
+ making it possible to greatly reduce the dependence of causal
+ inferences on hard-to-justify, but commonly made, statistical
+ modeling assumptions. The software also easily fits into existing
+ research practices since, after preprocessing with MatchIt,
+ researchers can use whatever parametric model they would have used
+ without MatchIt, but produce inferences with substantially more
+ robustness and less sensitivity to modeling assumptions. MatchIt is
+ an R program, and also works seamlessly within Zelig.
+ .
+ Home Page: http://gking.harvard.edu/matchit/
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ed90da2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,23 @@
+This is the Debian package of the GNU R package known as "MatchIt".
+The upstream authors are:
+
+Daniel Ho <deho at fas.harvard.edu>
+Kosuke Imai <kimai at Princeton.Edu>
+Gary King <king at harvard.edu>
+Elizabeth Stuart <stuart at stat.harvard.edu>
+
+This package was created by Chris Lawrence <lawrencc at debian.org>,
+based on Dirk Eddelbuettel's packaging of r-cran-car.
+
+The sources were downloaded from 
+http://www.cran.mirrors.pair.com/src/contrib/
+
+The package was renamed from its upstream name 'MatchIt' to
+'r-other-gking-matchit' to fit the pattern of CRAN (and non-CRAN)
+packages for R.
+
+It has been placed under the GNU General Public License.  On Debian
+systems, the GPL is included in the file /usr/share/common-licenses/GPL.
+
+The upstream DESCRIPTION file for this package is available in
+/usr/lib/R/site-library/MatchIt/
diff --git a/debian/postinst b/debian/postinst
new file mode 100644
index 0000000..4ff21ad
--- /dev/null
+++ b/debian/postinst
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postinst file for the Debian/GNU Linux r-cran-rcmdr package
+# Copyright 2004 by Dirk Eddelbuettel <edd at debian.org>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    configure)
+	R CMD perl /usr/lib/R/share/perl/build-help.pl --htmllists
+        ;;
+    abort-upgrade|abort-remove|abort-deconfigure)
+        ;;
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+
diff --git a/debian/postrm b/debian/postrm
new file mode 100644
index 0000000..3d7728b
--- /dev/null
+++ b/debian/postrm
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postrm file for the Debian/GNU Linux r-cran-rcmdr package
+# Copyright 2004 by Dirk Eddelbuettel <edd at debian.org>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    upgrade|remove|purge)
+	R CMD perl /usr/lib/R/share/perl/build-help.pl --htmllists
+        ;;
+    failed-upgrade|abort-install|abort-upgrade|disappear)
+        ;;
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..5d06387
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,24 @@
+#!/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>
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/langcore.mk
+
+## We need the CRAN (upstream) name 
+cranName	:= $(shell grep Package: DESCRIPTION | cut -f2 -d" ")
+## and we need to build a Debian Policy-conformant lower-case package name
+cranNameLC	:= $(shell echo $(cranName) | tr "[A-Z]" "[a-z]" | tr "." "-" )
+## which we can use to build the package directory 
+package		:= r-other-gking-matchit
+## which we use for the to-be-installed-in directory
+debRlib		:= $(CURDIR)/debian/$(package)/usr/lib/R/site-library
+
+common-install-indep:: R_any_arch
+common-install-arch:: R_any_arch
+
+R_any_arch:
+		dh_installdirs		usr/lib/R/site-library
+		R CMD INSTALL -l $(debRlib) --clean .
+		rm -vf $(debRlib)/R.css $(debRlib)/$(cranNameLC)/COPYING
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..d92d231
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=2
+http://cran.us.r-project.org/src/contrib/MatchIt_(.*)\.tar\.gz

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



More information about the debian-science-commits mailing list