- Initial import of Tree-Simple-1.14

This module in an fully object-oriented implementation of a simple n-ary
tree. It is built upon the concept of parent-child relationships, so
therefore every Tree::Simple object has both a parent and a set of
children (who themselves may have children, and so on). Every
Tree::Simple object also has siblings, as they are just the children of
their immediate parent.
This commit is contained in:
msf 2004-12-22 02:18:40 +00:00
parent 5339a096a6
commit f134d4bd96
4 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# $OpenBSD: Makefile,v 1.1.1.1 2004/12/22 02:18:40 msf Exp $
COMMENT= "A simple tree object"
DISTNAME= Tree-Simple-1.14
PKGNAME= p5-${DISTNAME}
CATEGORIES= devel perl5
MAINTAINER= Mathieu Sauve-Frankel <msf@openbsd.org>
# Artistic
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Tree/}
CONFIGURE_STYLE= perl
REGRESS_DEPENDS= ::devel/p5-Test-Exception \
::devel/p5-Test-Memory-Cycle
PKG_ARCH= *
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (Tree-Simple-1.14.tar.gz) = ca404df24e6136714ae114491e751707
RMD160 (Tree-Simple-1.14.tar.gz) = adb5aed990559bf761eccfb8780b6a32ad573371
SHA1 (Tree-Simple-1.14.tar.gz) = 2b1240024d46bf04f8846c2da2b51c79528366d4

View File

@ -0,0 +1,6 @@
This module in an fully object-oriented implementation of a simple n-ary
tree. It is built upon the concept of parent-child relationships, so
therefore every Tree::Simple object has both a parent and a set of
children (who themselves may have children, and so on). Every
Tree::Simple object also has siblings, as they are just the children of
their immediate parent.

View File

@ -0,0 +1,7 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2004/12/22 02:18:40 msf Exp $
${P5SITE}/Tree/
${P5SITE}/Tree/Simple/
${P5SITE}/Tree/Simple.pm
${P5SITE}/Tree/Simple/Visitor.pm
@man man/man3p/Tree::Simple.3p
@man man/man3p/Tree::Simple::Visitor.3p