diff options
author | mef <mef@pkgsrc.org> | 2020-09-20 21:22:02 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2020-09-20 21:22:02 +0000 |
commit | d486bea7aa6b345b0bb7eb7b810dd1b0655c375b (patch) | |
tree | eee331f9033e0e7cfc53a79604fc3e5afa22480d | |
parent | 82da719bd18424c507ad19dc2077b070c0bffc61 (diff) | |
download | pkgsrc-d486bea7aa6b345b0bb7eb7b810dd1b0655c375b.tar.gz |
(devel/R-cli) Updated 1.1.0 to 2.0.2, make test fails now.
# cli 2.0.2
* The status bar now does not simplify multiple spaces by a single space.
* cli now does not crash if it fails to detect whether the RStudio theme
is a dark theme (#138).
* cli now works better with wide Unicode characters, for example emojis.
In particular, a status bar containing emojis is cleared properly (#133).
* The status bar now does not flicker when updated, in terminals (#135).
# cli 2.0.1
* Symbols (`symbol$*`) are now correctly printed in RStudio on Windows (#124).
* The default theme for `cli_code()` output looks better now, especially
in RStudio (#123).
* Remove spurious newline after a `cli_process_start()` was cleared
manually, and also at the end of the function.
* Use Oxford comma when listing 3 or more items (@jonocarroll, #128).
# cli 2.0.0
## Semantic command line interface tools
cli 2.0.0 has a new set of functions that help creating a CLI using a set
of higher level elements: headings, paragraphs, lists, alerts, code blocks,
etc. The formatting of all elements can be customized via themes.
See the "Building a semantic CLI" article on the package web site:
https://cli.r-lib.org
## Bug fixes:
* Fix a bug in `is_dynamic_tty()`, setting `R_CLI_DYNAMIC="FALSE"` now
properly turns dynamic tty off (#70).
CVS: ----------------------------------------------------------------------
-rw-r--r-- | devel/R-cli/Makefile | 18 | ||||
-rw-r--r-- | devel/R-cli/distinfo | 10 |
2 files changed, 21 insertions, 7 deletions
diff --git a/devel/R-cli/Makefile b/devel/R-cli/Makefile index 1e6ad650581..758ef6a2022 100644 --- a/devel/R-cli/Makefile +++ b/devel/R-cli/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2019/08/08 19:53:38 brook Exp $ +# $NetBSD: Makefile,v 1.7 2020/09/20 21:22:02 mef Exp $ R_PKGNAME= cli -R_PKGVER= 1.1.0 +R_PKGVER= 2.0.2 CATEGORIES= devel MAINTAINER= minskim@NetBSD.org @@ -11,7 +11,21 @@ LICENSE= mit DEPENDS+= R-assertthat>=0.2.1:../../devel/R-assertthat DEPENDS+= R-crayon>=1.3.4:../../devel/R-crayon +TEST_DEPENDS+= R-mockery-[0-9]*:../../devel/R-mockery +TEST_DEPENDS+= R-prettycode-[0-9]*:../../devel/R-prettycode +TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr +TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr +TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown + USE_LANGUAGES= # none +REPLACE_RSCRIPT+= inst/examples/apps/*.R +REPLACE_RSCRIPT+= inst/scripts/*.R + +REPLACE_INTERPRETER+= Rscript +REPLACE.Rscript.old= .*Rscript +REPLACE.Rscript.new= ${PREFIX}/bin/Rscript +REPLACE_FILES.Rscript= ${REPLACE_RSCRIPT} + .include "../../math/R/Makefile.extension" .include "../../mk/bsd.pkg.mk" diff --git a/devel/R-cli/distinfo b/devel/R-cli/distinfo index 0f60ae92560..1a74463117d 100644 --- a/devel/R-cli/distinfo +++ b/devel/R-cli/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2019/06/09 04:20:09 wen Exp $ +$NetBSD: distinfo,v 1.4 2020/09/20 21:22:02 mef Exp $ -SHA1 (R/cli_1.1.0.tar.gz) = 2321ab2c7e0d106f53c69f34728fafb1a2e22ac7 -RMD160 (R/cli_1.1.0.tar.gz) = b1196b9a24e9cab8acf47bd60b1ed6223ca3eab2 -SHA512 (R/cli_1.1.0.tar.gz) = cde3562bc2d52957b2c73d2579f50a989015abf92cd945869a116d5f631ac96c29977e126901394a96521918e40ab67e91fbfecb6127a5fb17f6f831b8656e31 -Size (R/cli_1.1.0.tar.gz) = 40232 bytes +SHA1 (R/cli_2.0.2.tar.gz) = 1f8bc210c6d2b6c872ccdc899937996c2acfc356 +RMD160 (R/cli_2.0.2.tar.gz) = 713bd057281f47015b858b2ac9e643b716eea3e8 +SHA512 (R/cli_2.0.2.tar.gz) = c5a398a35bfbc43b618b97477ef97785c674c1aad03fcbf20786f1eab057cd5f21da430ffa69161d14a331b2e538d8dc75b6a3a2699db799b1441dce31d3761e +Size (R/cli_2.0.2.tar.gz) = 116357 bytes |