Date: Fri, 28 Feb 2020 19:21:26 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r527349 - in head/math: . librdata Message-ID: <202002281921.01SJLQdZ001056@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Fri Feb 28 19:21:25 2020 New Revision: 527349 URL: https://svnweb.freebsd.org/changeset/ports/527349 Log: Add librdata 0.1.0.g20200219 Originally part of ReadStat, librdata is a small C library for reading and writing R data frames. Features: - Read both RData and RDS formats - Read compressed files (requires bzip2, zlib, and lzma) - Write factors, timestamps, logical vectors, and more WWW: https://github.com/WizardMac/librdata Added: head/math/librdata/ head/math/librdata/Makefile (contents, props changed) head/math/librdata/distinfo (contents, props changed) head/math/librdata/pkg-descr (contents, props changed) head/math/librdata/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Feb 28 18:56:52 2020 (r527348) +++ head/math/Makefile Fri Feb 28 19:21:25 2020 (r527349) @@ -339,6 +339,7 @@ SUBDIR += libpoly SUBDIR += libqalculate SUBDIR += libranlip + SUBDIR += librdata SUBDIR += librsb SUBDIR += libtommath SUBDIR += libtsnnls Added: head/math/librdata/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/librdata/Makefile Fri Feb 28 19:21:25 2020 (r527349) @@ -0,0 +1,23 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= librdata +PORTVERSION= 0.1.0.g20200219 +CATEGORIES= math + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Read and write R data frames from C + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= autoreconf libtool gettext-tools + +USE_GITHUB= yes +GH_ACCOUNT= WizardMac +GH_TAGNAME= 54e00a0 + +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip + +.include <bsd.port.mk> Added: head/math/librdata/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/librdata/distinfo Fri Feb 28 19:21:25 2020 (r527349) @@ -0,0 +1,3 @@ +TIMESTAMP = 1582881080 +SHA256 (WizardMac-librdata-0.1.0.g20200219-54e00a0_GH0.tar.gz) = c1201b4ecb2cc16d905b86340f22b18f3136519fe94b7aa76ff4a258a06df1fb +SIZE (WizardMac-librdata-0.1.0.g20200219-54e00a0_GH0.tar.gz) = 21519 Added: head/math/librdata/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/librdata/pkg-descr Fri Feb 28 19:21:25 2020 (r527349) @@ -0,0 +1,9 @@ +Originally part of ReadStat, librdata is a small C library for reading and +writing R data frames. + +Features: +- Read both RData and RDS formats +- Read compressed files (requires bzip2, zlib, and lzma) +- Write factors, timestamps, logical vectors, and more + +WWW: https://github.com/WizardMac/librdata Added: head/math/librdata/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/librdata/pkg-plist Fri Feb 28 19:21:25 2020 (r527349) @@ -0,0 +1,4 @@ +include/rdata.h +lib/librdata.so +lib/librdata.so.0 +lib/librdata.so.0.0.0
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002281921.01SJLQdZ001056>