From owner-svn-ports-head@freebsd.org Wed May 15 07:25:24 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 351E015AD7AF; Wed, 15 May 2019 07:25:24 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D1CF276F60; Wed, 15 May 2019 07:25:23 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A85666642; Wed, 15 May 2019 07:25:23 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4F7PNLl019590; Wed, 15 May 2019 07:25:23 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4F7PMjV019586; Wed, 15 May 2019 07:25:22 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201905150725.x4F7PMjV019586@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 15 May 2019 07:25:22 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in head/devel: . R-cran-progress X-SVN-Commit-Revision: 501692 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D1CF276F60 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.975,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 May 2019 07:25:24 -0000 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 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/