mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
This module is a simple visitor implementation for Perl values.
It has a main dispatcher method, visit, which takes a single perl value and then calls the methods appropriate for that value. WWW: http://search.cpan.org/dist/Data-Visitor/ PR: ports/94954 Submitted by: Lars Balker Rasmussen <lars@balker.dk>
This commit is contained in:
parent
57bed600c8
commit
9efc48ac33
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=158204
@ -825,6 +825,7 @@
|
||||
SUBDIR += p5-Data-TreeDumper
|
||||
SUBDIR += p5-Data-Types
|
||||
SUBDIR += p5-Data-UUID
|
||||
SUBDIR += p5-Data-Visitor
|
||||
SUBDIR += p5-Date-Calc
|
||||
SUBDIR += p5-Date-DayOfWeek
|
||||
SUBDIR += p5-Date-Easter
|
||||
|
33
devel/p5-Data-Visitor/Makefile
Normal file
33
devel/p5-Data-Visitor/Makefile
Normal file
@ -0,0 +1,33 @@
|
||||
# New ports collection makefile for: Data-Visitor
|
||||
# Date created: 26 Mar 2006
|
||||
# Whom: Lars Balker Rasmussen <lars@balker.dk>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Data-Visitor
|
||||
PORTVERSION= 0.03
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Data
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= lars@balker.dk
|
||||
COMMENT= Visitor style traversal of Perl data structures
|
||||
|
||||
BUILD_DEPENDS= p5-Test-Simple>=0:${PORTSDIR}/devel/p5-Test-Simple \
|
||||
p5-Test-use-ok>=0:${PORTSDIR}/devel/p5-Test-use-ok \
|
||||
p5-Test-MockObject>=0:${PORTSDIR}/devel/p5-Test-MockObject \
|
||||
p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PERL_MODBUILD= yes
|
||||
|
||||
MAN3= Data::Visitor.3 \
|
||||
Data::Visitor::Callback.3
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.if ${PERL_LEVEL} < 500801
|
||||
IGNORE= requires at least Perl 5.8.1. Install lang/perl5.8, and try again
|
||||
.endif
|
||||
.include <bsd.port.post.mk>
|
3
devel/p5-Data-Visitor/distinfo
Normal file
3
devel/p5-Data-Visitor/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (Data-Visitor-0.03.tar.gz) = 8109cb2a2c2fda150ed30532b88b84bb
|
||||
SHA256 (Data-Visitor-0.03.tar.gz) = e82960aa7f85a2fc03f52e4082317ffdd8fe8ed82c8ef512284608dd241f345a
|
||||
SIZE (Data-Visitor-0.03.tar.gz) = 6243
|
6
devel/p5-Data-Visitor/pkg-descr
Normal file
6
devel/p5-Data-Visitor/pkg-descr
Normal file
@ -0,0 +1,6 @@
|
||||
This module is a simple visitor implementation for Perl values.
|
||||
|
||||
It has a main dispatcher method, visit, which takes a single perl
|
||||
value and then calls the methods appropriate for that value.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Data-Visitor/
|
4
devel/p5-Data-Visitor/pkg-plist
Normal file
4
devel/p5-Data-Visitor/pkg-plist
Normal file
@ -0,0 +1,4 @@
|
||||
%%SITE_PERL%%/Data/Visitor/Callback.pm
|
||||
%%SITE_PERL%%/Data/Visitor.pm
|
||||
@dirrmtry %%SITE_PERL%%/Data/Visitor
|
||||
@dirrmtry %%SITE_PERL%%/Data
|
Loading…
Reference in New Issue
Block a user