svn commit: r559499 - in head/devel: . R-cran-ini

Guangyuan Yang ygy at FreeBSD.org
Mon Dec 28 16:13:51 UTC 2020


Author: ygy (doc committer)
Date: Mon Dec 28 16:13:50 2020
New Revision: 559499
URL: https://svnweb.freebsd.org/changeset/ports/559499

Log:
  new port: devel/R-cran-ini: Read and Write '.ini' Files
  
  PR:		252172
  Approved by:	lwhsu

Added:
  head/devel/R-cran-ini/
  head/devel/R-cran-ini/Makefile   (contents, props changed)
  head/devel/R-cran-ini/distinfo   (contents, props changed)
  head/devel/R-cran-ini/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Dec 28 16:11:26 2020	(r559498)
+++ head/devel/Makefile	Mon Dec 28 16:13:50 2020	(r559499)
@@ -51,6 +51,7 @@
     SUBDIR += R-cran-gsubfn
     SUBDIR += R-cran-gtools
     SUBDIR += R-cran-hms
+    SUBDIR += R-cran-ini
     SUBDIR += R-cran-iterators
     SUBDIR += R-cran-itertools
     SUBDIR += R-cran-later

Added: head/devel/R-cran-ini/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-ini/Makefile	Mon Dec 28 16:13:50 2020	(r559499)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME=	ini
+DISTVERSION=	0.3.1
+CATEGORIES=	devel
+DISTNAME=	${PORTNAME}_${DISTVERSION}
+
+MAINTAINER=	ygy at FreeBSD.org
+COMMENT=	Read and Write '.ini' Files
+
+LICENSE=	GPLv3
+
+TEST_DEPENDS=	R-cran-testthat>0:devel/R-cran-testthat
+
+USES=		cran:auto-plist
+
+.include <bsd.port.mk>

Added: head/devel/R-cran-ini/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-ini/distinfo	Mon Dec 28 16:13:50 2020	(r559499)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1609012627
+SHA256 (ini_0.3.1.tar.gz) = 7b191a54019c8c52d6c2211c14878c95564154ec4865f57007953742868cd813
+SIZE (ini_0.3.1.tar.gz) = 3488

Added: head/devel/R-cran-ini/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-ini/pkg-descr	Mon Dec 28 16:13:50 2020	(r559499)
@@ -0,0 +1,5 @@
+Parse simple '.ini' configuration files to an structured list. Users can
+manipulate this resulting list with lapply() functions. This same structured
+list can be used to write back to file after modifications.
+
+WWW: https://github.com/dvdscripter/ini


More information about the svn-ports-all mailing list