Received: by mail.netbsd.org (Postfix, from userid 605) id B433F84E30; Wed, 31 Jul 2019 13:25:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3A8A084E26 for ; Wed, 31 Jul 2019 13:25:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id AT5M_Oa30c0v for ; Wed, 31 Jul 2019 13:25:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A512784C81 for ; Wed, 31 Jul 2019 13:25:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9E9BDFBF4; Wed, 31 Jul 2019 13:25:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1564579500155660" MIME-Version: 1.0 Date: Wed, 31 Jul 2019 13:25:00 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190731132500.9E9BDFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1564579500155660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Wed Jul 31 13:25:00 UTC 2019 Modified Files: pkgsrc/doc: CHANGES-2019 pkgsrc/math: Makefile Added Files: pkgsrc/math/R-relimp: DESCR Makefile distinfo Log Message: R-relimp: initial commit. Functions to facilitate inference on the relative importance of predictors in a linear or generalized linear model, and a couple of useful Tcl/Tk widgets. To generate a diff of this commit: cvs rdiff -u -r1.3109 -r1.3110 pkgsrc/doc/CHANGES-2019 cvs rdiff -u -r1.419 -r1.420 pkgsrc/math/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/math/R-relimp/DESCR \ pkgsrc/math/R-relimp/Makefile pkgsrc/math/R-relimp/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1564579500155660 Content-Disposition: inline Content-Length: 2861 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/doc/CHANGES-2019 diff -u pkgsrc/doc/CHANGES-2019:1.3109 pkgsrc/doc/CHANGES-2019:1.3110 --- pkgsrc/doc/CHANGES-2019:1.3109 Wed Jul 31 13:23:10 2019 +++ pkgsrc/doc/CHANGES-2019 Wed Jul 31 13:25:00 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3109 2019/07/31 13:23:10 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3110 2019/07/31 13:25:00 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5066,3 +5066,4 @@ Changes to the packages collection and i Added math/R-forcats version 0.4.0 [brook 2019-07-31] Added math/R-mitools version 2.4 [brook 2019-07-31] Added math/R-nortest version 1.0.4 [brook 2019-07-31] + Added math/R-relimp version 1.0.5 [brook 2019-07-31] Index: pkgsrc/math/Makefile diff -u pkgsrc/math/Makefile:1.419 pkgsrc/math/Makefile:1.420 --- pkgsrc/math/Makefile:1.419 Wed Jul 31 13:23:10 2019 +++ pkgsrc/math/Makefile Wed Jul 31 13:25:00 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.419 2019/07/31 13:23:10 brook Exp $ +# $NetBSD: Makefile,v 1.420 2019/07/31 13:25:00 brook Exp $ COMMENT= Mathematics @@ -84,6 +84,7 @@ SUBDIR+= R-prob SUBDIR+= R-quadprog SUBDIR+= R-quantreg SUBDIR+= R-randomForest +SUBDIR+= R-relimp SUBDIR+= R-reshape2 SUBDIR+= R-sgeostat SUBDIR+= R-shapefiles Added files: Index: pkgsrc/math/R-relimp/DESCR diff -u /dev/null pkgsrc/math/R-relimp/DESCR:1.1 --- /dev/null Wed Jul 31 13:25:00 2019 +++ pkgsrc/math/R-relimp/DESCR Wed Jul 31 13:25:00 2019 @@ -0,0 +1,3 @@ +Functions to facilitate inference on the relative importance of +predictors in a linear or generalized linear model, and a couple of +useful Tcl/Tk widgets. Index: pkgsrc/math/R-relimp/Makefile diff -u /dev/null pkgsrc/math/R-relimp/Makefile:1.1 --- /dev/null Wed Jul 31 13:25:00 2019 +++ pkgsrc/math/R-relimp/Makefile Wed Jul 31 13:25:00 2019 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2019/07/31 13:25:00 brook Exp $ + +CATEGORIES= math R + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= ${R_HOMEPAGE_BASE}/relimp/ +COMMENT= Relative contribution of effects in a regression model +LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 + +R_PKGNAME= relimp +R_PKGVER= 1.0-5 + +USE_LANGUAGES= # none + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/R-relimp/distinfo diff -u /dev/null pkgsrc/math/R-relimp/distinfo:1.1 --- /dev/null Wed Jul 31 13:25:00 2019 +++ pkgsrc/math/R-relimp/distinfo Wed Jul 31 13:25:00 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/07/31 13:25:00 brook Exp $ + +SHA1 (R/relimp_1.0-5.tar.gz) = af7fdc3530ebda0ecef9e19ce31d8a4a66febad9 +RMD160 (R/relimp_1.0-5.tar.gz) = ebf6d8a110988ac5e965946ee8938b6865abcea9 +SHA512 (R/relimp_1.0-5.tar.gz) = 46a73aee8aedaadc4a703d9edf25079fa994b36cf696d15e5e7da270440a3ee244fff1a70bac2ff24bca813b0627a092d2626416bca9d7e967cd5cd529ceeccf +Size (R/relimp_1.0-5.tar.gz) = 13836 bytes --_----------=_1564579500155660--