Data::Alias is a module that allows you to apply "aliasing semantics"
to a section of code, causing aliases to be made whereever Perl would normally make copies instead. You can use this to improve efficiency and readability, when compared to using references. WWW: http://search.cpan.org/dist/Data-Alias/
This commit is contained in:
parent
9418bd48a9
commit
9b83db4c7c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=198351
5 changed files with 38 additions and 0 deletions
|
@ -1001,6 +1001,7 @@
|
|||
SUBDIR += p5-DB_File-Lock
|
||||
SUBDIR += p5-Danga-Socket
|
||||
SUBDIR += p5-Data-ACL
|
||||
SUBDIR += p5-Data-Alias
|
||||
SUBDIR += p5-Data-Bind
|
||||
SUBDIR += p5-Data-Compare
|
||||
SUBDIR += p5-Data-Dump
|
||||
|
|
21
devel/p5-Data-Alias/Makefile
Normal file
21
devel/p5-Data-Alias/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
# New ports collection makefile for: devel/p5-Data-Alias
|
||||
# Date created: 27 August 2007
|
||||
# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Data-Alias
|
||||
PORTVERSION= 1.06
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= clsung@FreeBSD.org
|
||||
COMMENT= Comprehensive set of aliasing operations
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= Data::Alias.3
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/p5-Data-Alias/distinfo
Normal file
3
devel/p5-Data-Alias/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (Data-Alias-1.06.tar.gz) = 3c95c582f7fd1d8747e87dda0a8ffc7e
|
||||
SHA256 (Data-Alias-1.06.tar.gz) = 75fa193dbc4ee6f8ddcbdcb0d152d35a888abec36af7e0514bea7bfe4a049b06
|
||||
SIZE (Data-Alias-1.06.tar.gz) = 61261
|
6
devel/p5-Data-Alias/pkg-descr
Normal file
6
devel/p5-Data-Alias/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
Data::Alias is a module that allows you to apply "aliasing semantics"
|
||||
to a section of code, causing aliases to be made whereever Perl would
|
||||
normally make copies instead. You can use this to improve efficiency
|
||||
and readability, when compared to using references.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Data-Alias/
|
7
devel/p5-Data-Alias/pkg-plist
Normal file
7
devel/p5-Data-Alias/pkg-plist
Normal file
|
@ -0,0 +1,7 @@
|
|||
%%SITE_PERL%%/%%PERL_ARCH%%/Data/Alias.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Alias/.packlist
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Alias/Alias.so
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Alias/Alias.bs
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Alias
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Data
|
Loading…
Reference in a new issue