Date: Wed, 15 May 2019 07:25:22 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501692 - in head/devel: . R-cran-progress Message-ID: <201905150725.x4F7PMjV019586@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Wed May 15 07:25:22 2019 New Revision: 501692 URL: https://svnweb.freebsd.org/changeset/ports/501692 Log: Configurable Progress bars, they may include percentage, elapsed time, and/or the estimated completion time. They work in terminals, in 'Emacs' 'ESS', 'RStudio', 'Windows' 'Rgui' and the 'macOS' 'R.app'. The package also provides a 'C++' 'API', that works with or without 'Rcpp'. WWW: https://cran.r-project.org/web/packages/progress/ Added: head/devel/R-cran-progress/ head/devel/R-cran-progress/Makefile (contents, props changed) head/devel/R-cran-progress/distinfo (contents, props changed) head/devel/R-cran-progress/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed May 15 07:22:19 2019 (r501691) +++ head/devel/Makefile Wed May 15 07:25:22 2019 (r501692) @@ -57,6 +57,7 @@ SUBDIR += R-cran-plyr SUBDIR += R-cran-praise SUBDIR += R-cran-prettyunits + SUBDIR += R-cran-progress SUBDIR += R-cran-promises SUBDIR += R-cran-proto SUBDIR += R-cran-purrr Added: head/devel/R-cran-progress/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-progress/Makefile Wed May 15 07:25:22 2019 (r501692) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= progress +PORTVERSION= 1.2.1 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Terminal Progress Bars + +LICENSE= MIT + +CRAN_DEPENDS= R-cran-R6>0:devel/R-cran-R6 \ + R-cran-hms>0:devel/R-cran-hms \ + R-cran-prettyunits>0:devel/R-cran-prettyunits \ + R-cran-crayon>0:devel/R-cran-crayon +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include <bsd.port.mk> Added: head/devel/R-cran-progress/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-progress/distinfo Wed May 15 07:25:22 2019 (r501692) @@ -0,0 +1,3 @@ +TIMESTAMP = 1557903391 +SHA256 (progress_1.2.1.tar.gz) = 7401e86ff76bef4d26508b74ee8bd169a0377b2738d9ec79ebff0b7fd5c55326 +SIZE (progress_1.2.1.tar.gz) = 28289 Added: head/devel/R-cran-progress/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-progress/pkg-descr Wed May 15 07:25:22 2019 (r501692) @@ -0,0 +1,7 @@ +Configurable Progress bars, they may include percentage, elapsed time, +and/or the estimated completion time. They work in terminals, in 'Emacs' +'ESS', 'RStudio', 'Windows' 'Rgui' and the 'macOS' 'R.app'. + +The package also provides a 'C++' 'API', that works with or without 'Rcpp'. + +WWW: https://cran.r-project.org/web/packages/progress/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905150725.x4F7PMjV019586>