pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/R-memoise



Module Name:    pkgsrc
Committed By:   mef
Date:           Mon May 31 22:43:04 UTC 2021

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

Log Message:
(devel/R-memoise) Updated 1.1.0 to 2.0.0

# 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).


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/R-memoise/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/R-memoise/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-memoise/Makefile
diff -u pkgsrc/devel/R-memoise/Makefile:1.4 pkgsrc/devel/R-memoise/Makefile:1.5
--- pkgsrc/devel/R-memoise/Makefile:1.4 Thu Aug  8 19:53:39 2019
+++ pkgsrc/devel/R-memoise/Makefile     Mon May 31 22:43:04 2021
@@ -1,7 +1,7 @@
-# $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=    minskim%NetBSD.org@localhost
@@ -9,6 +9,7 @@ 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
 

Index: pkgsrc/devel/R-memoise/distinfo
diff -u pkgsrc/devel/R-memoise/distinfo:1.1 pkgsrc/devel/R-memoise/distinfo:1.2
--- pkgsrc/devel/R-memoise/distinfo:1.1 Sat Apr  7 20:51:59 2018
+++ pkgsrc/devel/R-memoise/distinfo     Mon May 31 22:43:04 2021
@@ -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



Home | Main Index | Thread Index | Old Index