Skip to content

Commit

Permalink
(devel/R-glue) Updated 1.7.0 to 1.8.0, make test does not pass
Browse files Browse the repository at this point in the history
# 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()`.
  • Loading branch information
mef committed Oct 18, 2024
1 parent d66f916 commit 46f8626
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions devel/R-glue/Makefile
Original file line number Diff line number Diff line change
@@ -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
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
Expand Down
8 changes: 4 additions & 4 deletions devel/R-glue/distinfo
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 46f8626

Please sign in to comment.