Received: by mail.netbsd.org (Postfix, from userid 605) id 043BC84E34; Wed, 31 Jul 2019 13:37:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7F69284E31 for ; Wed, 31 Jul 2019 13:37:03 +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 UJL1Y55jNLQ9 for ; Wed, 31 Jul 2019 13:37:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DFCF484E26 for ; Wed, 31 Jul 2019 13:37:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D85A8FBF4; Wed, 31 Jul 2019 13:37:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1564580222222320" MIME-Version: 1.0 Date: Wed, 31 Jul 2019 13:37:02 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190731133702.D85A8FBF4@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. --_----------=_1564580222222320 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:37:02 UTC 2019 Modified Files: pkgsrc/doc: CHANGES-2019 pkgsrc/misc: Makefile Added Files: pkgsrc/misc/R-Hmisc: DESCR Makefile distinfo Log Message: R-Hmisc: initial commit. Contains many functions useful for data analysis, high-level graphics, utility operations, functions for computing sample size and power, importing and annotating datasets, imputing missing values, advanced table making, variable clustering, character string manipulation, conversion of R objects to LaTeX and html code, and recoding variables. To generate a diff of this commit: cvs rdiff -u -r1.3116 -r1.3117 pkgsrc/doc/CHANGES-2019 cvs rdiff -u -r1.509 -r1.510 pkgsrc/misc/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/misc/R-Hmisc/DESCR pkgsrc/misc/R-Hmisc/Makefile \ pkgsrc/misc/R-Hmisc/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1564580222222320 Content-Disposition: inline Content-Length: 3482 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.3116 pkgsrc/doc/CHANGES-2019:1.3117 --- pkgsrc/doc/CHANGES-2019:1.3116 Wed Jul 31 13:34:58 2019 +++ pkgsrc/doc/CHANGES-2019 Wed Jul 31 13:37:02 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3116 2019/07/31 13:34:58 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3117 2019/07/31 13:37:02 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5073,3 +5073,4 @@ Changes to the packages collection and i Added math/R-urca version 1.3.0 [brook 2019-07-31] Added math/R-vctrs version 0.2.0 [brook 2019-07-31] Added math/R-zeallot version 0.1.0 [brook 2019-07-31] + Added misc/R-Hmisc version 4.2.0 [brook 2019-07-31] Index: pkgsrc/misc/Makefile diff -u pkgsrc/misc/Makefile:1.509 pkgsrc/misc/Makefile:1.510 --- pkgsrc/misc/Makefile:1.509 Thu Jul 11 09:32:19 2019 +++ pkgsrc/misc/Makefile Wed Jul 31 13:37:02 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.509 2019/07/11 09:32:19 nia Exp $ +# $NetBSD: Makefile,v 1.510 2019/07/31 13:37:02 brook Exp $ # COMMENT= Miscellaneous utilities @@ -7,6 +7,7 @@ SUBDIR+= 9menu SUBDIR+= Addresses SUBDIR+= JBidwatcher SUBDIR+= JMdict +SUBDIR+= R-Hmisc SUBDIR+= R-pillar SUBDIR+= ansiweather SUBDIR+= ascii Added files: Index: pkgsrc/misc/R-Hmisc/DESCR diff -u /dev/null pkgsrc/misc/R-Hmisc/DESCR:1.1 --- /dev/null Wed Jul 31 13:37:02 2019 +++ pkgsrc/misc/R-Hmisc/DESCR Wed Jul 31 13:37:02 2019 @@ -0,0 +1,6 @@ +Contains many functions useful for data analysis, high-level graphics, +utility operations, functions for computing sample size and power, +importing and annotating datasets, imputing missing values, advanced +table making, variable clustering, character string manipulation, +conversion of R objects to LaTeX and html code, and recoding +variables. Index: pkgsrc/misc/R-Hmisc/Makefile diff -u /dev/null pkgsrc/misc/R-Hmisc/Makefile:1.1 --- /dev/null Wed Jul 31 13:37:02 2019 +++ pkgsrc/misc/R-Hmisc/Makefile Wed Jul 31 13:37:02 2019 @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.1 2019/07/31 13:37:02 brook Exp $ + +CATEGORIES= misc R + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= ${R_HOMEPAGE_BASE}/Hmisc/ +COMMENT= Harrell miscellaneous +LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 + +R_PKGNAME= Hmisc +R_PKGVER= 4.2-0 + +DEPENDS+= R-base64enc>=0.1.3:../../converters/R-base64enc +DEPENDS+= R-ggplot2>=2.2:../../graphics/R-ggplot2 +DEPENDS+= R-viridis>=0.5.1:../../graphics/R-viridis +DEPENDS+= R-Formula>=1.2.3:../../math/R-Formula +DEPENDS+= R-acepack>=1.4.1:../../math/R-acepack +DEPENDS+= R-gtable>=0.3.0:../../math/R-gtable +DEPENDS+= R-data.table>=1.12.2:../../textproc/R-data.table +DEPENDS+= R-htmlTable>=1.11.0:../../textproc/R-htmlTable +DEPENDS+= R-htmltools>=0.3.6:../../textproc/R-htmltools + +USE_LANGUAGES= c fortran + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/misc/R-Hmisc/distinfo diff -u /dev/null pkgsrc/misc/R-Hmisc/distinfo:1.1 --- /dev/null Wed Jul 31 13:37:02 2019 +++ pkgsrc/misc/R-Hmisc/distinfo Wed Jul 31 13:37:02 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/07/31 13:37:02 brook Exp $ + +SHA1 (R/Hmisc_4.2-0.tar.gz) = d8139a3aefe277dd00acd4d5e17744a5251b2033 +RMD160 (R/Hmisc_4.2-0.tar.gz) = 255c8a9260d48406855847a057035a259a72b7fd +SHA512 (R/Hmisc_4.2-0.tar.gz) = 370cabd67c8c2016ecfd57e096f8de31a5cea5bbced9cf19d470214eb55e8979d34e7433361c3ceeaed26ea78aa6c0288c5a3d0104732ff80d77b4e5f8d0fd72 +Size (R/Hmisc_4.2-0.tar.gz) = 732731 bytes --_----------=_1564580222222320--