diff --git a/dev-R/progress/Manifest b/dev-R/progress/Manifest new file mode 100644 index 0000000000..008bc084cb --- /dev/null +++ b/dev-R/progress/Manifest @@ -0,0 +1 @@ +DIST progress_1.2.2.tar.gz 29506 BLAKE2B b17c7eeb8161a7779a3afcee4a05c3010dad01de019502a71724b10099a6a5697a446377ea2095d5521f3edce2cdc010642f946ec3babea6530b6eff237914c6 SHA512 c02dfd93f43ac82ea44b97e53dd9e570aa90e95c8e4a9088114bae77f573eaba536b167a27d6a6a48d6db1d0b21d59d22468b48c0ce9580862af35f7bb3ee0bb diff --git a/dev-R/progress/metadata.xml b/dev-R/progress/metadata.xml new file mode 100644 index 0000000000..e1416185c8 --- /dev/null +++ b/dev-R/progress/metadata.xml @@ -0,0 +1,17 @@ + + + + + me@r0bert.dev + Robert Greener + + 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'. + + + Gábor Csárdi + csardi.gabor@gmail.com + + https://github.com/r-lib/progress/issues + r-lib/progress + + diff --git a/dev-R/progress/progress-1.2.2.ebuild b/dev-R/progress/progress-1.2.2.ebuild new file mode 100644 index 0000000000..e97b22298e --- /dev/null +++ b/dev-R/progress/progress-1.2.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit R-packages edo + +DESCRIPTION='Terminal Progress Bars' +KEYWORDS="~amd64" +LICENSE='MIT' +RESTRICT="!test? ( test )" +IUSE="test" + +DEPEND=" + dev-R/hms + dev-R/prettyunits + dev-R/R6 + dev-R/crayon + test? ( + dev-R/testthat + dev-R/Rcpp + dev-R/withr + ) +" + +SUGGESTED_PACKAGES=" + dev-R/testthat + dev-R/Rcpp + dev-R/withr +" + +src_test() { + cd "${WORKDIR}/${P}/tests" || die + NOT_CRAN=true R_LIBS="${T}/R" edo Rscript --vanilla testthat.R +}