pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/R-glue



Module Name:    pkgsrc
Committed By:   mef
Date:           Fri Oct 18 22:33:19 UTC 2024

Modified Files:
        pkgsrc/devel/R-glue: Makefile distinfo

Log Message:
(devel/R-glue) Updated 1.7.0 to 1.8.0, make test does not pass

# glue 1.8.0

* glue has a two new articles:
  - "Get started", with contributions from @stephhazlitt and @BrennanAntone
    (#137, #170, #332).
  - How to write a function that wraps glue (#281).

* If the last argument of `glue()` is empty, it is dropped (#320). This makes
  it easy to structure `glue()` calls with one argument per line, and to anticipate adding arguments:

  ``` r
  glue(
    "here's some text, ",
    "and maybe more text will be added in the future?",
  )
  ```

* `glue_sql("{var*}")` once again generates `NULL` if var is empty.
  This reverts #292. (#318).

* The `.envir` argument to `glue()` and `glue_data()` really must be an
  environment now, as documented. Previously a list-ish object worked in
  some cases (by accident, not really by design). When you need to lookup
  values in a list-ish object, use `glue_data(.x =)` (#308, #317).
  Ditto for `glue_sql()` and `glue_data_sql()`.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/R-glue/Makefile \
    pkgsrc/devel/R-glue/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/R-glue/Makefile
diff -u pkgsrc/devel/R-glue/Makefile:1.8 pkgsrc/devel/R-glue/Makefile:1.9
--- pkgsrc/devel/R-glue/Makefile:1.8    Sun Jan 21 02:14:04 2024
+++ pkgsrc/devel/R-glue/Makefile        Fri Oct 18 22:33:18 2024
@@ -1,15 +1,13 @@
-# $NetBSD: Makefile,v 1.8 2024/01/21 02:14:04 mef Exp $
+# $NetBSD: Makefile,v 1.9 2024/10/18 22:33:18 mef Exp $
 
 R_PKGNAME=     glue
-R_PKGVER=      1.7.0
+R_PKGVER=      1.8.0
 CATEGORIES=    devel
 
 MAINTAINER=    minskim%NetBSD.org@localhost
 COMMENT=       Interpreted string literals
 LICENSE=       mit
 
-# Packages suggested but not available:
-#   'rprintf'
 TEST_DEPENDS+= R-microbenchmark-[0-9]*:../../benchmarks/R-microbenchmark
 TEST_DEPENDS+= R-dplyr-[0-9]*:../../math/R-dplyr
 TEST_DEPENDS+= R-DBI>=1.2.0:../../math/R-DBI
Index: pkgsrc/devel/R-glue/distinfo
diff -u pkgsrc/devel/R-glue/distinfo:1.8 pkgsrc/devel/R-glue/distinfo:1.9
--- pkgsrc/devel/R-glue/distinfo:1.8    Sun Jan 21 02:14:04 2024
+++ pkgsrc/devel/R-glue/distinfo        Fri Oct 18 22:33:19 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/01/21 02:14:04 mef Exp $
+$NetBSD: distinfo,v 1.9 2024/10/18 22:33:19 mef Exp $
 
-BLAKE2s (R/glue_1.7.0.tar.gz) = e4e5e95469834ba433beac9c60699c2938aeae9b4eaf777216ec8cd887f387ba
-SHA512 (R/glue_1.7.0.tar.gz) = d0b32a772145926536596a0f37a5d49ae77a2627b3135b3450812fbcef8bd3010ac815940689507eb032c918adf5eca56b729d8452f51273569cdb58b87db7e9
-Size (R/glue_1.7.0.tar.gz) = 105420 bytes
+BLAKE2s (R/glue_1.8.0.tar.gz) = 06f3a2483b83703991e2e35f23914bfe9309cd0d7bb71a09548c951bec57c96b
+SHA512 (R/glue_1.8.0.tar.gz) = 59ef457d8a860b68180e5398bafbf4b08c680bbd9610ae1f63968dbe925db95f765abd1909b8fa5ac1d49d333389b81c47d7b3a06896c231e4732fd45d12d416
+Size (R/glue_1.8.0.tar.gz) = 126682 bytes



Home | Main Index | Thread Index | Old Index