Received: by mail.netbsd.org (Postfix, from userid 605) id 513DE84E31; Wed, 31 Jul 2019 13:45:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CCC1A84E26 for ; Wed, 31 Jul 2019 13:45:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id yvdOKl12H7Bn for ; Wed, 31 Jul 2019 13:45:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3E0FB84CDC for ; Wed, 31 Jul 2019 13:45:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3BA04FBF4; Wed, 31 Jul 2019 13:45:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1564580725294310" MIME-Version: 1.0 Date: Wed, 31 Jul 2019 13:45:25 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190731134525.3BA04FBF4@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. --_----------=_1564580725294310 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:45:25 UTC 2019 Modified Files: pkgsrc/doc: CHANGES-2019 pkgsrc/textproc: Makefile Added Files: pkgsrc/textproc/R-haven: DESCR Makefile distinfo Log Message: R-haven: initial commit. Import foreign statistical formats into R via the embedded 'ReadStat' C library, . To generate a diff of this commit: cvs rdiff -u -r1.3120 -r1.3121 pkgsrc/doc/CHANGES-2019 cvs rdiff -u -r1.1035 -r1.1036 pkgsrc/textproc/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/R-haven/DESCR \ pkgsrc/textproc/R-haven/Makefile pkgsrc/textproc/R-haven/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1564580725294310 Content-Disposition: inline Content-Length: 3158 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.3120 pkgsrc/doc/CHANGES-2019:1.3121 --- pkgsrc/doc/CHANGES-2019:1.3120 Wed Jul 31 13:43:55 2019 +++ pkgsrc/doc/CHANGES-2019 Wed Jul 31 13:45:24 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3120 2019/07/31 13:43:55 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3121 2019/07/31 13:45:24 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5077,3 +5077,4 @@ Changes to the packages collection and i Added sysutils/R-progress version 1.2.2 [brook 2019-07-31] Added textproc/R-cellranger version 1.1.0 [brook 2019-07-31] Added textproc/R-data.table version 1.12.2 [brook 2019-07-31] + Added textproc/R-haven version 2.1.1 [brook 2019-07-31] Index: pkgsrc/textproc/Makefile diff -u pkgsrc/textproc/Makefile:1.1035 pkgsrc/textproc/Makefile:1.1036 --- pkgsrc/textproc/Makefile:1.1035 Wed Jul 31 13:43:55 2019 +++ pkgsrc/textproc/Makefile Wed Jul 31 13:45:24 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1035 2019/07/31 13:43:55 brook Exp $ +# $NetBSD: Makefile,v 1.1036 2019/07/31 13:45:24 brook Exp $ # COMMENT= Text processing utilities (does not include desktop publishing) @@ -15,6 +15,7 @@ SUBDIR+= R-cellranger SUBDIR+= R-data.table SUBDIR+= R-formatR SUBDIR+= R-gsubfn +SUBDIR+= R-haven SUBDIR+= R-highr SUBDIR+= R-htmltools SUBDIR+= R-jsonlite Added files: Index: pkgsrc/textproc/R-haven/DESCR diff -u /dev/null pkgsrc/textproc/R-haven/DESCR:1.1 --- /dev/null Wed Jul 31 13:45:25 2019 +++ pkgsrc/textproc/R-haven/DESCR Wed Jul 31 13:45:24 2019 @@ -0,0 +1,2 @@ +Import foreign statistical formats into R via the embedded 'ReadStat' +C library, . Index: pkgsrc/textproc/R-haven/Makefile diff -u /dev/null pkgsrc/textproc/R-haven/Makefile:1.1 --- /dev/null Wed Jul 31 13:45:25 2019 +++ pkgsrc/textproc/R-haven/Makefile Wed Jul 31 13:45:24 2019 @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 2019/07/31 13:45:24 brook Exp $ + +CATEGORIES= textproc R + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= ${R_HOMEPAGE_BASE}/haven/ +COMMENT= Import and export 'SPSS', 'Stata' and 'SAS' files +LICENSE= mit + +R_PKGNAME= haven +R_PKGVER= 2.1.1 + +DEPENDS+= R-forcats>=0.2.0:../../math/R-forcats +DEPENDS+= R-tibble>=2.1.3:../../math/R-tibble +DEPENDS+= R-readr>=0.1.0:../../textproc/R-readr +DEPENDS+= R-hms>=0.5.0:../../time/R-hms + +USE_LANGUAGES= c c++ + +.include "../../math/R/Makefile.extension" +.include "../../devel/R-Rcpp/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/R-haven/distinfo diff -u /dev/null pkgsrc/textproc/R-haven/distinfo:1.1 --- /dev/null Wed Jul 31 13:45:25 2019 +++ pkgsrc/textproc/R-haven/distinfo Wed Jul 31 13:45:24 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/07/31 13:45:24 brook Exp $ + +SHA1 (R/haven_2.1.1.tar.gz) = 1d280fb57d8a275a79bf1b1b06ffc30b901cdb0b +RMD160 (R/haven_2.1.1.tar.gz) = 6c3e39fc84d04ce968ffdb354f6e62b0d4624d82 +SHA512 (R/haven_2.1.1.tar.gz) = 6cc812a93f5fe5b9bd8895b90a480ebda55295fb699ab7d0a3ae0ccead6678b400e7f69da014af487d63f6438107b22a0581469202771f20a05f3f7aa52037c6 +Size (R/haven_2.1.1.tar.gz) = 265123 bytes --_----------=_1564580725294310--