mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 09:56:43 -04:00
This module does not provide any methods. Simply loading it changes the
default naming policy for the loading class so that accessors are separated into get and set methods. The get methods are prefixed with "get_" as the accessor, while set methods are prefixed with "set_". This is the naming style recommended by Damian Conway in Perl Best Practices. WWW: http://search.cpan.org/dist/MooseX-FollowPBP/ PR: ports/149524 Submitted by: Frederic Culot <frederic at culot.org> Approved by: rene@ (mentor vacation)
This commit is contained in:
parent
f99261b21f
commit
c4779dc43f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=259135
5 changed files with 47 additions and 0 deletions
|
@ -1874,6 +1874,7 @@
|
|||
SUBDIR += p5-MooseX-Daemonize
|
||||
SUBDIR += p5-MooseX-Declare
|
||||
SUBDIR += p5-MooseX-Emulate-Class-Accessor-Fast
|
||||
SUBDIR += p5-MooseX-FollowPBP
|
||||
SUBDIR += p5-MooseX-Getopt
|
||||
SUBDIR += p5-MooseX-Has-Sugar
|
||||
SUBDIR += p5-MooseX-IOC
|
||||
|
|
27
devel/p5-MooseX-FollowPBP/Makefile
Normal file
27
devel/p5-MooseX-FollowPBP/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
|||
# New ports collection makefile for: p5-MooseX-FollowPBP
|
||||
# Date created: 11 August 2010
|
||||
# Whom: Frederic Culot <frederic@culot.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= MooseX-FollowPBP
|
||||
PORTVERSION= 0.04
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= frederic@culot.org
|
||||
COMMENT= Name your accessors get_foo() and set_foo()
|
||||
|
||||
BUILD_DEPENDS= p5-Moose>=0.94:${PORTSDIR}/devel/p5-Moose
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
LICENSE= ART20
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= MooseX::FollowPBP.3 \
|
||||
MooseX::FollowPBP::Role::Attribute.3
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/p5-MooseX-FollowPBP/distinfo
Normal file
3
devel/p5-MooseX-FollowPBP/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (MooseX-FollowPBP-0.04.tar.gz) = a569172bd49bb54c2f7814ec9497278e
|
||||
SHA256 (MooseX-FollowPBP-0.04.tar.gz) = 858e9efd61c01ff93a33985d19d23edc0752ccb235e9920d3ae42237ca5ac848
|
||||
SIZE (MooseX-FollowPBP-0.04.tar.gz) = 8920
|
8
devel/p5-MooseX-FollowPBP/pkg-descr
Normal file
8
devel/p5-MooseX-FollowPBP/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
|||
This module does not provide any methods. Simply loading it changes the
|
||||
default naming policy for the loading class so that accessors are
|
||||
separated into get and set methods. The get methods are prefixed with
|
||||
"get_" as the accessor, while set methods are prefixed with "set_".
|
||||
This is the naming style recommended by Damian Conway in Perl Best
|
||||
Practices.
|
||||
|
||||
WWW: http://search.cpan.org/dist/MooseX-FollowPBP/
|
8
devel/p5-MooseX-FollowPBP/pkg-plist
Normal file
8
devel/p5-MooseX-FollowPBP/pkg-plist
Normal file
|
@ -0,0 +1,8 @@
|
|||
%%SITE_PERL%%/MooseX/FollowPBP.pm
|
||||
%%SITE_PERL%%/MooseX/FollowPBP/Role/Attribute.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/FollowPBP/.packlist
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/FollowPBP
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX
|
||||
@dirrmtry %%SITE_PERL%%/MooseX/FollowPBP/Role
|
||||
@dirrmtry %%SITE_PERL%%/MooseX/FollowPBP
|
||||
@dirrmtry %%SITE_PERL%%/MooseX
|
Loading…
Add table
Reference in a new issue