head	1.6;
access;
symbols
	pkgsrc-2026Q1:1.6.0.28
	pkgsrc-2026Q1-base:1.6
	pkgsrc-2025Q4:1.6.0.26
	pkgsrc-2025Q4-base:1.6
	pkgsrc-2025Q3:1.6.0.24
	pkgsrc-2025Q3-base:1.6
	pkgsrc-2025Q2:1.6.0.22
	pkgsrc-2025Q2-base:1.6
	pkgsrc-2025Q1:1.6.0.20
	pkgsrc-2025Q1-base:1.6
	pkgsrc-2024Q4:1.6.0.18
	pkgsrc-2024Q4-base:1.6
	pkgsrc-2024Q3:1.6.0.16
	pkgsrc-2024Q3-base:1.6
	pkgsrc-2024Q2:1.6.0.14
	pkgsrc-2024Q2-base:1.6
	pkgsrc-2024Q1:1.6.0.12
	pkgsrc-2024Q1-base:1.6
	pkgsrc-2023Q4:1.6.0.10
	pkgsrc-2023Q4-base:1.6
	pkgsrc-2023Q3:1.6.0.8
	pkgsrc-2023Q3-base:1.6
	pkgsrc-2023Q2:1.6.0.6
	pkgsrc-2023Q2-base:1.6
	pkgsrc-2023Q1:1.6.0.4
	pkgsrc-2023Q1-base:1.6
	pkgsrc-2022Q4:1.6.0.2
	pkgsrc-2022Q4-base:1.6
	pkgsrc-2022Q3:1.5.0.12
	pkgsrc-2022Q3-base:1.5
	pkgsrc-2022Q2:1.5.0.10
	pkgsrc-2022Q2-base:1.5
	pkgsrc-2022Q1:1.5.0.8
	pkgsrc-2022Q1-base:1.5
	pkgsrc-2021Q4:1.5.0.6
	pkgsrc-2021Q4-base:1.5
	pkgsrc-2021Q3:1.5.0.4
	pkgsrc-2021Q3-base:1.5
	pkgsrc-2021Q2:1.5.0.2
	pkgsrc-2021Q2-base:1.5
	pkgsrc-2021Q1:1.4.0.14
	pkgsrc-2021Q1-base:1.4
	pkgsrc-2020Q4:1.4.0.12
	pkgsrc-2020Q4-base:1.4
	pkgsrc-2020Q3:1.4.0.10
	pkgsrc-2020Q3-base:1.4
	pkgsrc-2020Q2:1.4.0.8
	pkgsrc-2020Q2-base:1.4
	pkgsrc-2020Q1:1.4.0.4
	pkgsrc-2020Q1-base:1.4
	pkgsrc-2019Q4:1.4.0.6
	pkgsrc-2019Q4-base:1.4
	pkgsrc-2019Q3:1.4.0.2
	pkgsrc-2019Q3-base:1.4
	pkgsrc-2019Q2:1.2.0.8
	pkgsrc-2019Q2-base:1.2
	pkgsrc-2019Q1:1.2.0.6
	pkgsrc-2019Q1-base:1.2
	pkgsrc-2018Q4:1.2.0.4
	pkgsrc-2018Q4-base:1.2
	pkgsrc-2018Q3:1.2.0.2
	pkgsrc-2018Q3-base:1.2
	pkgsrc-2018Q2:1.1.0.2
	pkgsrc-2018Q2-base:1.1;
locks; strict;
comment	@# @;


1.6
date	2022.12.17.15.26.16;	author mef;	state Exp;
branches;
next	1.5;
commitid	hCHlfEcxoi14nV5E;

1.5
date	2021.05.31.22.43.04;	author mef;	state Exp;
branches;
next	1.4;
commitid	iL7FvHwbv12NWlVC;

1.4
date	2019.08.08.19.53.39;	author brook;	state Exp;
branches;
next	1.3;
commitid	K2VPfA0XCw7xfgyB;

1.3
date	2019.07.31.15.29.46;	author brook;	state Exp;
branches;
next	1.2;
commitid	OIHzTTFAqZMu5dxB;

1.2
date	2018.07.28.14.40.43;	author brook;	state Exp;
branches;
next	1.1;
commitid	hIRYb3oU4xMfBULA;

1.1
date	2018.04.07.20.51.59;	author minskim;	state Exp;
branches;
next	;
commitid	aSDJxKKkZcrFiyxA;


desc
@@


1.6
log
@(devel/R-memoise) Updated 2.0.0 to 2.0.1

# memoise 2.0.1

# Version 2.0.0.9000

* Winston Chang is now the maintainer.

* The default value for the `hash` argument of `memoise()` is now
  taken with an indirection in case `memoise()` is called at the
  top-level of a namespace (r-lib/rlang#1177).

* Fixed a bug in `has_cache()` that caused it to get the value unnecessarily. (#123)
@
text
@# $NetBSD: Makefile,v 1.5 2021/05/31 22:43:04 mef Exp $

R_PKGNAME=	memoise
R_PKGVER=	2.0.1
CATEGORIES=	devel

MAINTAINER=	minskim@@NetBSD.org
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

.include "../../math/R/Makefile.extension"
.include "../../mk/bsd.pkg.mk"
@


1.5
log
@(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).
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.4 2019/08/08 19:53:39 brook Exp $
d4 1
a4 1
R_PKGVER=	2.0.0
@


1.4
log
@Update all R packages to canonical form.

The canonical form [1] of an R package Makefile includes the
following:

- The first stanza includes R_PKGNAME, R_PKGVER, PKGREVISION (as
  needed), and CATEGORIES.

- HOMEPAGE is not present but defined in math/R/Makefile.extension to
  refer to the CRAN web page describing the package.  Other relevant
  web pages are often linked from there via the URL field.

This updates all current R packages to this form, which will make
regular updates _much_ easier, especially using pkgtools/R2pkg.

[1] http://mail-index.netbsd.org/tech-pkg/2019/08/02/msg021711.html
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.3 2019/07/31 15:29:46 brook Exp $
d4 1
a4 1
R_PKGVER=	1.1.0
d12 1
@


1.3
log
@R-memoise: update to canonical form of an R package.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.2 2018/07/28 14:40:43 brook Exp $
d3 3
a5 1
CATEGORIES=	devel R
a7 1
HOMEPAGE=	https://github.com/hadley/memoise
a10 3
R_PKGNAME=	memoise
R_PKGVER=	1.1.0

@


1.2
log
@Remove MASTER_SITES= from individual R package Makefiles.

Each R package should include ../../math/R/Makefile.extension, which also
defines MASTER_SITES.  Consequently, it is redundant for the individual
packages to do the same.  Package-specific definitions also prevent
redefining MASTER_SITES in a single common place.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.1 2018/04/07 20:51:59 minskim Exp $
d3 1
a3 1
CATEGORIES=	devel
d7 1
a7 1
COMMENT=	Memoisation of Functions
@


1.1
log
@devel/R-memoise: Import version 1.1.0

Cache the results of a function so that when you call it again with
the same arguments it returns the pre-computed value.
@
text
@d1 1
a1 1
# $NetBSD$
a3 1
MASTER_SITES=	${MASTER_SITE_R_CRAN:=contrib/}
@

