Skip to content

Commit

Permalink
(devel/R-memoise) Updated 1.1.0 to 2.0.0
Browse files Browse the repository at this point in the history
# Version 2.0.0

* Memoise now uses caching objects from the cachem package by default. These caches support automatic pruning, so that they won't grow indefinitely. The older-style cache objects in the memoise package are still supported, but we suggest using new-style caches from cachem. (#112)

* Name clashes between function arguments and variables defined when memoising
  no longer occur (@egnha, #43).

* Add Google Cloud Storage support via `cache_gcs()` (@MarkEdmondson1234, #59)

* Add `compress` option for non-memory caches (@coolbutuseless, #71).

* Use absolute path in cache file system backend, so user can change working
  directory after using relative path (@xhdong-umd, #51, #65)

* Add `drop_cache()` to drop the cached result for particular arguments
  (@richardkunze, #78)

* Suppress messages of `aws.s3::head_object` within `cache_s3`'s `cache_has_key`
  to avoid printing of 404 messages for new keys (@stelsemeyer, #96).
  • Loading branch information
mef committed May 31, 2021
1 parent d64024f commit 534de99
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions devel/R-memoise/Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# $NetBSD: Makefile,v 1.4 2019/08/08 19:53:39 brook Exp $
# $NetBSD: Makefile,v 1.5 2021/05/31 22:43:04 mef Exp $

R_PKGNAME= memoise
R_PKGVER= 1.1.0
R_PKGVER= 2.0.0
CATEGORIES= devel

MAINTAINER= [email protected]
COMMENT= Memoisation of functions
LICENSE= mit

DEPENDS+= R-digest>=0.6.3:../../security/R-digest
DEPENDS+= R-cachem-[0-9]*:../../devel/R-cachem

USE_LANGUAGES= # none

Expand Down
10 changes: 5 additions & 5 deletions devel/R-memoise/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.1 2018/04/07 20:51:59 minskim Exp $
$NetBSD: distinfo,v 1.2 2021/05/31 22:43:04 mef Exp $

SHA1 (R/memoise_1.1.0.tar.gz) = 202b193c549388fb63f25b6e236721f568d18f4a
RMD160 (R/memoise_1.1.0.tar.gz) = 2bd0ce53b6ba5146275792ee7812cd92774dcc5d
SHA512 (R/memoise_1.1.0.tar.gz) = d6bc671997164a48af2d9f72b4ea3713004431f7c1f2bd07a6622e9f8b2c688e03c333f18011bbea87b860a014422decb631c883912729e818709b1e1bbbd9d9
Size (R/memoise_1.1.0.tar.gz) = 11025 bytes
SHA1 (R/memoise_2.0.0.tar.gz) = ac07e334e281d20c45745ca381c392a0a8e5f7e4
RMD160 (R/memoise_2.0.0.tar.gz) = 525ab3ea4ee04244373639179ecf980c965413cb
SHA512 (R/memoise_2.0.0.tar.gz) = fb1a961131d6621ad7bcf8db6f5488ee44ebf903aa36502f7587d752213d310bea6a4d5cc4db0761661f95d3509fe65c183168df9265ac7aa839051c0e984f48
Size (R/memoise_2.0.0.tar.gz) = 17337 bytes

0 comments on commit 534de99

Please sign in to comment.