head	1.5;
access;
symbols
	pkgsrc-2026Q2:1.5.0.8
	pkgsrc-2026Q2-base:1.5
	pkgsrc-2026Q1:1.5.0.6
	pkgsrc-2026Q1-base:1.5
	pkgsrc-2025Q4:1.5.0.4
	pkgsrc-2025Q4-base:1.5
	pkgsrc-2025Q3:1.5.0.2
	pkgsrc-2025Q3-base:1.5
	pkgsrc-2025Q2:1.4.0.6
	pkgsrc-2025Q2-base:1.4
	pkgsrc-2025Q1:1.4.0.4
	pkgsrc-2025Q1-base:1.4
	pkgsrc-2024Q4:1.4.0.2
	pkgsrc-2024Q4-base:1.4
	pkgsrc-2024Q3:1.3.0.10
	pkgsrc-2024Q3-base:1.3
	pkgsrc-2024Q2:1.3.0.8
	pkgsrc-2024Q2-base:1.3
	pkgsrc-2024Q1:1.3.0.6
	pkgsrc-2024Q1-base:1.3
	pkgsrc-2023Q4:1.3.0.4
	pkgsrc-2023Q4-base:1.3
	pkgsrc-2023Q3:1.3.0.2
	pkgsrc-2023Q3-base:1.3
	pkgsrc-2023Q2:1.2.0.8
	pkgsrc-2023Q2-base:1.2
	pkgsrc-2023Q1:1.2.0.6
	pkgsrc-2023Q1-base:1.2
	pkgsrc-2022Q4:1.2.0.4
	pkgsrc-2022Q4-base:1.2
	pkgsrc-2022Q3:1.2.0.2
	pkgsrc-2022Q3-base:1.2
	pkgsrc-2022Q2:1.1.0.2
	pkgsrc-2022Q2-base:1.1;
locks; strict;
comment	@# @;


1.5
date	2025.07.04.08.47.03;	author wiz;	state Exp;
branches;
next	1.4;
commitid	vfjLVB0DFyTBfp1G;

1.4
date	2024.11.16.12.05.32;	author wiz;	state Exp;
branches;
next	1.3;
commitid	EcLctWHJOZ20KRxF;

1.3
date	2023.07.06.09.40.27;	author wiz;	state Exp;
branches;
next	1.2;
commitid	6meR4IA6XJRNYIvE;

1.2
date	2022.06.28.11.33.38;	author wiz;	state Exp;
branches;
next	1.1;
commitid	D2UoJrTHpoHEANJD;

1.1
date	2022.05.31.20.49.09;	author markd;	state Exp;
branches;
next	;
commitid	Xl4O7cXPWvwjAfGD;


desc
@@


1.5
log
@*: bump for perl 5.42.0
@
text
@# $NetBSD: Makefile,v 1.4 2024/11/16 12:05:32 wiz Exp $

DISTNAME=	constant-defer-6
PKGNAME=	p5-${DISTNAME}
PKGREVISION=	4
CATEGORIES=	devel perl5
MASTER_SITES=	${MASTER_SITE_PERL_CPAN:=../../authors/id/K/KR/KRYDE/}

MAINTAINER=	pkgsrc-users@@NetBSD.org
HOMEPAGE=	https://metacpan.org/release/constant-defer
COMMENT=	constant subs with deferred value calculation
LICENSE=	gnu-gpl-v3

PERL5_PACKLIST=		auto/constant/defer/.packlist

.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
@


1.4
log
@*: recursive bump for perl 5.40
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.3 2023/07/06 09:40:27 wiz Exp $
d5 1
a5 1
PKGREVISION=	3
@


1.3
log
@*: recursive bump for perl 5.38
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.2 2022/06/28 11:33:38 wiz Exp $
d5 1
a5 1
PKGREVISION=	2
@


1.2
log
@*: recursive bump for perl 5.36
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.1 2022/05/31 20:49:09 markd Exp $
d5 1
a5 1
PKGREVISION=	1
@


1.1
log
@p5-constant-defer: add version 6

constant::defer creates a subroutine which on the first call runs given
code to calculate its value, and on any subsequent calls just returns that
value, like a constant. The value code is discarded once run, allowing it
to be garbage collected.

Deferring a calculation is good if it might take a lot of work or produce
a big result but is only needed sometimes or only well into a program run.
If it's never needed then the value code never runs.
@
text
@d1 1
a1 1
# $NetBSD$
d5 1
@

