From de950c243478ec790b1a32026fb8688c605d98d4 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Wed, 7 Oct 2020 08:23:24 -0500 Subject: [PATCH] release 0.3.12 now on CRAN --- ChangeLog | 6 + DESCRIPTION | 4 +- configure | 18 +- docs-src/mkdocs.yml | 5 +- docs-src/src/changelog.md | 26 + docs-src/src/news.md | 28 + .../src/{ => vignettes}/littler-examples.md | 2 +- docs-src/src/{ => vignettes}/littler-faq.md | 0 docs-src/src/vignettes/overview.md | 8 + docs/404.html | 18 +- docs/changelog/index.html | 44 +- docs/index.html | 18 +- docs/man/littler/index.html | 18 +- docs/news/index.html | 82 ++- docs/search/search_index.json | 2 +- docs/sitemap.xml | 22 +- docs/sitemap.xml.gz | Bin 252 -> 266 bytes .../littler-examples/index.html | 60 +- docs/{ => vignettes}/littler-faq/index.html | 54 +- docs/vignettes/overview/index.html | 642 ++++++++++++++++++ inst/NEWS.Rd | 23 + vignettes/littler-examples.Rmd | 2 +- vignettes/littler-examples.html | 2 +- 23 files changed, 995 insertions(+), 89 deletions(-) rename docs-src/src/{ => vignettes}/littler-examples.md (99%) rename docs-src/src/{ => vignettes}/littler-faq.md (100%) create mode 100644 docs-src/src/vignettes/overview.md rename docs/{ => vignettes}/littler-examples/index.html (96%) rename docs/{ => vignettes}/littler-faq/index.html (92%) create mode 100644 docs/vignettes/overview/index.html diff --git a/ChangeLog b/ChangeLog index 47a7f02..9180beb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2020-10-04 Dirk Eddelbuettel + + * DESCRIPTION (Version, Date): Release 0.3.12 + + * configure: Idem + 2020-10-03 Dirk Eddelbuettel * vignettes/littler-faq.Rmd: Switch to minidown::mini_document diff --git a/DESCRIPTION b/DESCRIPTION index 4f6de96..60e3fbe 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: littler Type: Package Title: R at the Command-Line via 'r' -Version: 0.3.11.2 -Date: 2020-09-25 +Version: 0.3.12 +Date: 2020-10-04 Author: Dirk Eddelbuettel and Jeff Horner Maintainer: Dirk Eddelbuettel Description: A scripting and command-line front-end diff --git a/configure b/configure index 3748098..6e4d2e7 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for littler 0.3.11. +# Generated by GNU Autoconf 2.69 for littler 0.3.12. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -577,8 +577,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='littler' PACKAGE_TARNAME='littler' -PACKAGE_VERSION='0.3.11' -PACKAGE_STRING='littler 0.3.11' +PACKAGE_VERSION='0.3.12' +PACKAGE_STRING='littler 0.3.12' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1242,7 +1242,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures littler 0.3.11 to adapt to many kinds of systems. +\`configure' configures littler 0.3.12 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1304,7 +1304,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of littler 0.3.11:";; + short | recursive ) echo "Configuration of littler 0.3.12:";; esac cat <<\_ACEOF @@ -1389,7 +1389,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -littler configure 0.3.11 +littler configure 0.3.12 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1754,7 +1754,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by littler $as_me 0.3.11, which was +It was created by littler $as_me 0.3.12, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -4052,7 +4052,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by littler $as_me 0.3.11, which was +This file was extended by littler $as_me 0.3.12, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -4114,7 +4114,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -littler config.status 0.3.11 +littler config.status 0.3.12 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/docs-src/mkdocs.yml b/docs-src/mkdocs.yml index 29655d7..9578fe4 100644 --- a/docs-src/mkdocs.yml +++ b/docs-src/mkdocs.yml @@ -38,8 +38,9 @@ nav: - man/littler.md - man/r.md - Articles: - - Littler Examples: littler-examples.md - - Littler FAQ: littler-faq.md + - Vignettes: vignettes/overview.md + - Littler Examples: vignettes/littler-examples.md + - Littler FAQ: vignettes/littler-faq.md - News: - news.md - Changelog: diff --git a/docs-src/src/changelog.md b/docs-src/src/changelog.md index e87fbd9..9385de9 100644 --- a/docs-src/src/changelog.md +++ b/docs-src/src/changelog.md @@ -1,5 +1,31 @@ ### 2020 +2020-10-04 Dirk Eddelbuettel + + * DESCRIPTION (Version, Date): Release 0.3.12 + +2020-10-03 Dirk Eddelbuettel + + * vignettes/littler-faq.Rmd: Switch to minidown::mini_document + and 'framework: water' to dramatically reduce vignettes size + * vignettes/littler-examples.Rmd: Idem + + * inst/examples/urlUpdate.r: Add -c | --check-only option + +2020-10-02 Dirk Eddelbuettel + + * inst/examples/urlUpdate.r: New script to update URLs + +2020-09-25 Dirk Eddelbuettel + + * DESCRIPTION (Version, Date): Roll minor version + + * inst/examples/cranIncoming.r: New script + +2020-09-21 Dirk Eddelbuettel + + * inst/examples/installBSPM.r: Initial version of BSPM installer + 2020-09-20 Iñaki Úcar * inst/examples/installRSPM.r: Add RH/CentOS/Fedora support diff --git a/docs-src/src/news.md b/docs-src/src/news.md index c91714b..6c34104 100644 --- a/docs-src/src/news.md +++ b/docs-src/src/news.md @@ -1,3 +1,31 @@ +### Version 0.3.12 (2020-10-04) + +- Changes in examples + + - Updates to scripts `tt.r`, `cos.r`, `cow.r`, `c4r.r`, `com.r` + + - New script `installDeps.r` to install dependencies + + - Several updates tp script `check.r` + + - New script `installBSPM.r` and `installRSPM.r` for binary + package installation (Dirk and Iñaki in + [\#81](https://github.com/eddelbuettel/littler/pull/81)) + + - New script `cranIncoming.r` to check in Incoming + + - New script `urlUpdate.r` validate URLs as R does + +- Changes in package + + - Travis CI now uses BSPM + + - A package documentation website was added + + - Vignettes now use `minidown` resulting in *much* reduced + filesizes: from over 800kb to under 50kb (Dirk in + [\#83](https://github.com/eddelbuettel/littler/pull/83)) + ### Version 0.3.11 (2020-06-26) - Changes in examples diff --git a/docs-src/src/littler-examples.md b/docs-src/src/vignettes/littler-examples.md similarity index 99% rename from docs-src/src/littler-examples.md rename to docs-src/src/vignettes/littler-examples.md index c3592ea..6ee9102 100644 --- a/docs-src/src/littler-examples.md +++ b/docs-src/src/vignettes/littler-examples.md @@ -125,7 +125,7 @@ free to do other things. Also, if used with `options("Ncpu")` set, then Thanks to the fabulous [docopt](https://github.com/edwindj/docopt.R) package, we also have a variant `install2.r` with optional settings of repo and location. It was first installed with -[littler 0.2.1](http://dirk.eddelbuettel.com/blog/2014/10/19#littler-0.2.1). +[littler 0.2.1](http://dirk.eddelbuettel.com/blog/2014/10/19/). The current (_i.e._, 0.3.3 as of this writing) version is more featureful and longer and included to keep this brief. Some usage examples are ```sh diff --git a/docs-src/src/littler-faq.md b/docs-src/src/vignettes/littler-faq.md similarity index 100% rename from docs-src/src/littler-faq.md rename to docs-src/src/vignettes/littler-faq.md diff --git a/docs-src/src/vignettes/overview.md b/docs-src/src/vignettes/overview.md new file mode 100644 index 0000000..c21768a --- /dev/null +++ b/docs-src/src/vignettes/overview.md @@ -0,0 +1,8 @@ +# Vignettes Overview + +The [littler](https://cran.r-project.org/package=littler) package ships with these two vignettes: + +- [Littler Examples](/vignettes/littler-examples), +- [Littler FAQ](/vignettes/littler-faq), + +which are also accessible via the links above, and the menu on the left. diff --git a/docs/404.html b/docs/404.html index 65ec425..c00c8e2 100644 --- a/docs/404.html +++ b/docs/404.html @@ -157,7 +157,7 @@
  • - + Articles @@ -330,7 +330,19 @@
  • - + + Vignettes + +
  • + + + + + + + +
  • + Littler Examples
  • @@ -342,7 +354,7 @@
  • - + Littler FAQ
  • diff --git a/docs/changelog/index.html b/docs/changelog/index.html index d4f8f36..7da957d 100644 --- a/docs/changelog/index.html +++ b/docs/changelog/index.html @@ -166,7 +166,7 @@
  • - + Articles @@ -339,7 +339,19 @@
  • - + + Vignettes + +
  • + + + + + + + +
  • + Littler Examples
  • @@ -351,7 +363,7 @@
  • - + Littler FAQ
  • @@ -717,6 +729,32 @@

    Changelog

    2020

    +

    2020-10-04 Dirk Eddelbuettel edd@debian.org

    +
        * DESCRIPTION (Version, Date): Release 0.3.12
    +
    + +

    2020-10-03 Dirk Eddelbuettel edd@debian.org

    +
        * vignettes/littler-faq.Rmd: Switch to minidown::mini_document 
    +    and 'framework: water' to dramatically reduce vignettes size 
    +    * vignettes/littler-examples.Rmd: Idem
    +
    +    * inst/examples/urlUpdate.r: Add -c | --check-only option
    +
    + +

    2020-10-02 Dirk Eddelbuettel edd@debian.org

    +
        * inst/examples/urlUpdate.r: New script to update URLs
    +
    + +

    2020-09-25 Dirk Eddelbuettel edd@debian.org

    +
        * DESCRIPTION (Version, Date): Roll minor version
    +
    +    * inst/examples/cranIncoming.r: New script
    +
    + +

    2020-09-21 Dirk Eddelbuettel edd@debian.org

    +
        * inst/examples/installBSPM.r: Initial version of BSPM installer
    +
    +

    2020-09-20 Iñaki Úcar iucar@fedoraproject.org

        * inst/examples/installRSPM.r: Add RH/CentOS/Fedora support
     
    diff --git a/docs/index.html b/docs/index.html index 841cb38..7098c73 100644 --- a/docs/index.html +++ b/docs/index.html @@ -166,7 +166,7 @@
  • - + Articles @@ -457,7 +457,19 @@
  • - + + Vignettes + +
  • + + + + + + + +
  • + Littler Examples
  • @@ -469,7 +481,7 @@
  • - + Littler FAQ
  • diff --git a/docs/man/littler/index.html b/docs/man/littler/index.html index 2a54a8f..a2a4a64 100644 --- a/docs/man/littler/index.html +++ b/docs/man/littler/index.html @@ -166,7 +166,7 @@
  • - + Articles @@ -423,7 +423,19 @@
  • - + + Vignettes + +
  • + + + + + + + +
  • + Littler Examples
  • @@ -435,7 +447,7 @@
  • - + Littler FAQ
  • diff --git a/docs/news/index.html b/docs/news/index.html index 36a7730..74d24f6 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -53,7 +53,7 @@
    - + Skip to content @@ -166,7 +166,7 @@
  • - + Articles @@ -339,7 +339,19 @@
  • - + + Vignettes + +
  • + + + + + + + +
  • + Littler Examples
  • @@ -351,7 +363,7 @@
  • - + Littler FAQ
  • @@ -417,6 +429,13 @@
    @@ -1185,15 +1197,15 @@

    render.r: Render Markdown

    - - + + diff --git a/docs/littler-faq/index.html b/docs/vignettes/littler-faq/index.html similarity index 92% rename from docs/littler-faq/index.html rename to docs/vignettes/littler-faq/index.html index b321400..b735936 100644 --- a/docs/littler-faq/index.html +++ b/docs/vignettes/littler-faq/index.html @@ -9,10 +9,10 @@ - + - + @@ -21,7 +21,7 @@ - + @@ -35,7 +35,7 @@ - + @@ -66,7 +66,7 @@