Author: tille Date: 2010-01-12 19:25:45 +0000 (Tue, 12 Jan 2010) New Revision: 4536
Added: trunk/packages/R/r-cran-psy/ trunk/packages/R/r-cran-psy/tags/ trunk/packages/R/r-cran-psy/trunk/ trunk/packages/R/r-cran-psy/trunk/debian/ trunk/packages/R/r-cran-psy/trunk/debian/changelog trunk/packages/R/r-cran-psy/trunk/debian/compat trunk/packages/R/r-cran-psy/trunk/debian/control trunk/packages/R/r-cran-psy/trunk/debian/copyright trunk/packages/R/r-cran-psy/trunk/debian/rules trunk/packages/R/r-cran-psy/trunk/debian/watch Log: Add r-cran-psy before adopting team maintenance Added: trunk/packages/R/r-cran-psy/trunk/debian/changelog =================================================================== --- trunk/packages/R/r-cran-psy/trunk/debian/changelog (rev 0) +++ trunk/packages/R/r-cran-psy/trunk/debian/changelog 2010-01-12 19:25:45 UTC (rev 4536) @@ -0,0 +1,37 @@ +r-cran-psy (0.70-3) unstable; urgency=low + + * Rebuild for R >= 2.10.0. + * Fix typo in mdspca.Rd. + + -- Chris Lawrence <[email protected]> Sat, 31 Oct 2009 14:35:13 -0500 + +r-cran-psy (0.70-2) unstable; urgency=low + + * Remove obsolete postinst and postrm. (Closes: #398823) + + -- Chris Lawrence <[email protected]> Sat, 18 Nov 2006 01:31:21 -0600 + +r-cran-psy (0.70-1) unstable; urgency=low + + * New upstream release. This is really 0.7 upstream, but what can you + do...? + + -- Chris Lawrence <[email protected]> Wed, 29 Jun 2005 18:37:54 -0500 + +r-cran-psy (0.65-1) unstable; urgency=low + + * New upstream release + + -- Chris Lawrence <[email protected]> Tue, 26 Apr 2005 01:42:23 -0500 + +r-cran-psy (0.6-2) unstable; urgency=low + + * Rebuild for R 2.0.0. + + -- Chris Lawrence <[email protected]> Fri, 8 Oct 2004 00:06:32 -0500 + +r-cran-psy (0.6-1) unstable; urgency=low + + * Initial Debian Release. (Closes: #251552) + + -- Chris Lawrence <[email protected]> Fri, 28 May 2004 22:55:21 -0500 Added: trunk/packages/R/r-cran-psy/trunk/debian/compat =================================================================== --- trunk/packages/R/r-cran-psy/trunk/debian/compat (rev 0) +++ trunk/packages/R/r-cran-psy/trunk/debian/compat 2010-01-12 19:25:45 UTC (rev 4536) @@ -0,0 +1 @@ +7 Added: trunk/packages/R/r-cran-psy/trunk/debian/control =================================================================== --- trunk/packages/R/r-cran-psy/trunk/debian/control (rev 0) +++ trunk/packages/R/r-cran-psy/trunk/debian/control 2010-01-12 19:25:45 UTC (rev 4536) @@ -0,0 +1,20 @@ +Source: r-cran-psy +Section: gnu-r +Priority: optional +Maintainer: Chris Lawrence <[email protected]> +Build-Depends: debhelper (>> 7), r-base-dev (>= 2.10.0~1), cdbs +Standards-Version: 3.8.3 + +Package: r-cran-psy +Architecture: all +Depends: r-base-core (>= 2.10.0~1), ${misc:Depends} +Description: GNU R procedures for psychometrics + This package includes several procedures used in psychometrics and + scaling, including: + . + Cohen's Kappa and weighted Kappa (two-rater agreement tests) + Cronbach's Alpha (an item-reliability test) + Focused Principal Components Analysis + Intraclass correlation coefficients + Light's Kappa (an N-rater agreement test) + Screeplots and graphical representations of principal components Added: trunk/packages/R/r-cran-psy/trunk/debian/copyright =================================================================== --- trunk/packages/R/r-cran-psy/trunk/debian/copyright (rev 0) +++ trunk/packages/R/r-cran-psy/trunk/debian/copyright 2010-01-12 19:25:45 UTC (rev 4536) @@ -0,0 +1,20 @@ +This is the Debian package of the GNU R package known as "psy". The +upstream author is Bruno Falissard <[email protected]>. + +This package was created by Chris Lawrence <[email protected]>, +based on Dirk Eddelbuettel's packaging of r-cran-car. + +The sources were downloaded from + http://cran.us.r-project.org/src/contrib/ + +The package was renamed from its upstream name 'psy' to 'r-cran-psy' +to fit the pattern of CRAN (and non-CRAN) packages for R. + +This package is Copyright (C) 2005 Bruno Falissard. 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/psy/ Added: trunk/packages/R/r-cran-psy/trunk/debian/rules =================================================================== --- trunk/packages/R/r-cran-psy/trunk/debian/rules (rev 0) +++ trunk/packages/R/r-cran-psy/trunk/debian/rules 2010-01-12 19:25:45 UTC (rev 4536) @@ -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 <[email protected]> + +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-cran-$(cranNameLC) +## 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) . + rm -vf $(debRlib)/R.css $(debRlib)/$(cranNameLC)/COPYING Property changes on: trunk/packages/R/r-cran-psy/trunk/debian/rules ___________________________________________________________________ Added: svn:executable + * Added: trunk/packages/R/r-cran-psy/trunk/debian/watch =================================================================== --- trunk/packages/R/r-cran-psy/trunk/debian/watch (rev 0) +++ trunk/packages/R/r-cran-psy/trunk/debian/watch 2010-01-12 19:25:45 UTC (rev 4536) @@ -0,0 +1,2 @@ +version=2 +http://cran.us.r-project.org/src/contrib/psy_(.*)\.tar\.gz _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/debian-med-commit
