Mon Feb 23 00:03:45 2009 UTC ()
The accessors pragma lets you create simple accessors at compile-time.
This saves you from writing them by hand, which tends to result in
cut-n-paste errors and a mess of duplicated code. It can also help you
reduce the ammount of unwanted direct-variable access that may creep
into your codebase when you're feeling lazy. accessors was designed with
laziness in mind.

Status:

Vendor Tag:	TNF
Release Tags:	pkgsrc-base


(rhaen)
diff -r0 -r1.1.1.1 pkgsrc/devel/p5-accessors/Makefile
diff -r0 -r1.1.1.1 pkgsrc/devel/p5-accessors/distinfo
diff -r0 -r1.1.1.1 pkgsrc/devel/p5-accessors/DESCR

File Added: pkgsrc/devel/p5-accessors/Makefile
# $NetBSD: Makefile,v 1.1.1.1 2009/02/23 00:03:45 rhaen Exp $
#

DISTNAME=	accessors-1.01
PKGNAME=	p5-${DISTNAME}
CATEGORIES=	devel perl5
MASTER_SITES=	${MASTER_SITE_PERL_CPAN:=../../authors/id/S/SP/SPURKIS/}

MAINTAINER=	rhaen@NetBSD.org
HOMEPAGE=	http://search.cpan.org/dist/accessors/
COMMENT=	Perl module - create accessor methods in caller's package

PERL5_MODULE_TYPE=	Module::Build
PERL5_PACKLIST=		auto/accessors/.packlist
PKG_DESTDIR_SUPPORT=	user-destdir

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

File Added: pkgsrc/devel/p5-accessors/distinfo
$NetBSD: distinfo,v 1.1.1.1 2009/02/23 00:03:45 rhaen Exp $

SHA1 (accessors-1.01.tar.gz) = 5b64737926bf8d1dd04c80ac96f00bbc599389da
RMD160 (accessors-1.01.tar.gz) = f87e4fc9c10ed711a664519da67f5a2e3e5ff961
Size (accessors-1.01.tar.gz) = 8650 bytes

File Added: pkgsrc/devel/p5-accessors/DESCR
The accessors pragma lets you create simple accessors at compile-time.
This saves you from writing them by hand, which tends to result in
cut-n-paste errors and a mess of duplicated code. It can also help you
reduce the ammount of unwanted direct-variable access that may creep
into your codebase when you're feeling lazy. accessors was designed with
laziness in mind.