From aaron@finch.st  Sat Jul  2 04:21:44 2005
Return-Path: <aaron@finch.st>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id CB13916A41C
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  2 Jul 2005 04:21:44 +0000 (GMT)
	(envelope-from aaron@finch.st)
Received: from mpls-qmqp-04.inet.qwest.net (mpls-qmqp-04.inet.qwest.net [63.231.195.115])
	by mx1.FreeBSD.org (Postfix) with SMTP id 91E4043D49
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  2 Jul 2005 04:21:44 +0000 (GMT)
	(envelope-from aaron@finch.st)
Received: (qmail 38350 invoked by uid 0); 2 Jul 2005 04:21:25 -0000
Received: from unknown (63.231.195.4)
  by mpls-qmqp-04.inet.qwest.net with QMQP; 2 Jul 2005 04:21:25 -0000
Received: from finch.st (168.103.194.212)
  by mpls-pop-04.inet.qwest.net with SMTP; 2 Jul 2005 04:21:43 -0000
Received: from aaron by finch.st with local (Exim 4.51 (FreeBSD))
	id 1DoZVC-000Jly-Ie
	for FreeBSD-gnats-submit@freebsd.org; Fri, 01 Jul 2005 22:21:14 -0600
Message-Id: <E1DoZVC-000Jly-Ie@finch.st>
Date: Fri, 01 Jul 2005 22:21:14 -0600
From: "Aaron Dalton" <aaron@daltons.ca>
Sender: "Aaron Dalton" <aaron@finch.st>
Reply-To: Aaron Dalton <aaron@daltons.ca>
To: FreeBSD-gnats-submit@freebsd.org
Subject: New Port: devel/p5-Tree-Node
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         82885
>Category:       ports
>Synopsis:       New Port: devel/p5-Tree-Node
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jul 02 04:30:16 GMT 2005
>Closed-Date:    Sun Jul 31 17:12:21 GMT 2005
>Last-Modified:  Sun Jul 31 17:12:21 GMT 2005
>Originator:     Aaron Dalton
>Release:        FreeBSD 5.2.1-RELEASE i386
>Organization:
>Environment:
System: FreeBSD chariss.finch.st 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #1: Sat Mar 5 16:29:20 MST 2005 ross@chariss.finch.st:/usr/src/sys/i386/compile/CHARISS i386


	
>Description:
This module implements a memory-efficient node type (for trees, skip lists 
and similar data structures) for Perl.

You may ask "Why bother implementing an ordered structure such as a tree 
when Perl has hashes built-in?" Since Perl is optimized for speed over 
memory usage, hashes (and lists) use a lot of memory.

So the purpose of this package is to provide a simple low-level Node class 
which can be used as a base class to implement various kinds of tree 
structures. Each node has a key/value pair and a variable number of 
"children" pointers.

How nodes are organized or the algorithm used to organize them is for you 
to implement.

There is no Pure-perl version because this package was written to overcome 
limitations of Perl.

>How-To-Repeat:
	
>Fix:

	

--- submission.txt begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	p5-Tree-Node
#	p5-Tree-Node/Makefile
#	p5-Tree-Node/distinfo
#	p5-Tree-Node/pkg-descr
#	p5-Tree-Node/pkg-plist
#
echo c - p5-Tree-Node
mkdir -p p5-Tree-Node > /dev/null 2>&1
echo x - p5-Tree-Node/Makefile
sed 's/^X//' >p5-Tree-Node/Makefile << 'END-of-p5-Tree-Node/Makefile'
X# New ports collection makefile for:	p5-Tree-Node
X# Date created: 			01 July 2005
X# Whom: 				Aaron Dalton <aaron@daltons.ca>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	Tree-Node
XPORTVERSION=	0.03
XCATEGORIES=	devel perl5
XMASTER_SITES=	${MASTER_SITE_PERL_CPAN}
XMASTER_SITE_SUBDIR=	Tree
XPKGNAMEPREFIX=	p5-
X
XMAINTAINER=	aaron@daltons.ca
XCOMMENT=	Memory-efficient tree nodes in Perl
X
XPERL_CONFIGURE=	yes
X
XMAN3=		Tree::Node.3
X
X.include <bsd.port.mk>
END-of-p5-Tree-Node/Makefile
echo x - p5-Tree-Node/distinfo
sed 's/^X//' >p5-Tree-Node/distinfo << 'END-of-p5-Tree-Node/distinfo'
XMD5 (Tree-Node-0.03.tar.gz) = 54b8482b1d894229f5a34e39d92fda6a
XSIZE (Tree-Node-0.03.tar.gz) = 39084
END-of-p5-Tree-Node/distinfo
echo x - p5-Tree-Node/pkg-descr
sed 's/^X//' >p5-Tree-Node/pkg-descr << 'END-of-p5-Tree-Node/pkg-descr'
XThis module implements a memory-efficient node type (for trees, skip lists 
Xand similar data structures) for Perl.
X
XYou may ask "Why bother implementing an ordered structure such as a tree 
Xwhen Perl has hashes built-in?" Since Perl is optimized for speed over 
Xmemory usage, hashes (and lists) use a lot of memory.
X
XSo the purpose of this package is to provide a simple low-level Node class 
Xwhich can be used as a base class to implement various kinds of tree 
Xstructures. Each node has a key/value pair and a variable number of 
X"children" pointers.
X
XHow nodes are organized or the algorithm used to organize them is for you 
Xto implement.
X
XThere is no Pure-perl version because this package was written to overcome 
Xlimitations of Perl.
X
XWWW: http://search.cpan.org/dist/Tree-Node/
XAuthor: Robert Rothenberg <rrwo@cpan.org>
X
X- Aaron Dalton
Xaaron@daltons.ca
END-of-p5-Tree-Node/pkg-descr
echo x - p5-Tree-Node/pkg-plist
sed 's/^X//' >p5-Tree-Node/pkg-plist << 'END-of-p5-Tree-Node/pkg-plist'
X%%SITE_PERL%%/%%PERL_ARCH%%/Tree/Node.pm
X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/.packlist
X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/Node.bs
X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/Node.so
X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node
X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree 2>/dev/null || true
X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Tree 2>/dev/null || true
X
END-of-p5-Tree-Node/pkg-plist
exit
--- submission.txt ends here ---


>Release-Note:
>Audit-Trail:

From: Aaron Dalton <aaron@daltons.ca>
To: FreeBSD-gnats-submit@FreeBSD.org,  freebsd-ports-bugs@FreeBSD.org
Cc:  
Subject: Re: ports/82885: New Port: devel/p5-Tree-Node
Date: Fri, 29 Jul 2005 15:59:56 -0600

 This is a multi-part message in MIME format.
 --------------000503000308010706090401
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 Content-Transfer-Encoding: 7bit
 
 The base Perl module has been updated since this port was originally 
 submitted.  Below is the updated shell archive.
 
 Aaron
 
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #	p5-Tree-Node
 #	p5-Tree-Node/Makefile
 #	p5-Tree-Node/distinfo
 #	p5-Tree-Node/pkg-descr
 #	p5-Tree-Node/pkg-plist
 #
 echo c - p5-Tree-Node
 mkdir -p p5-Tree-Node > /dev/null 2>&1
 echo x - p5-Tree-Node/Makefile
 sed 's/^X//' >p5-Tree-Node/Makefile << 'END-of-p5-Tree-Node/Makefile'
 X# New ports collection makefile for:	p5-Tree-Node
 X# Date created: 			01 July 2005
 X# Whom: 				Aaron Dalton <aaron@daltons.ca>
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=	Tree-Node
 XPORTVERSION=	0.06
 XCATEGORIES=	devel perl5
 XMASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 XMASTER_SITE_SUBDIR=	Tree
 XPKGNAMEPREFIX=	p5-
 X
 XMAINTAINER=	aaron@daltons.ca
 XCOMMENT=	Memory-efficient tree nodes in Perl
 X
 XPERL_CONFIGURE=	yes
 X
 XMAN3=		Tree::Node.3
 X
 X.include <bsd.port.mk>
 END-of-p5-Tree-Node/Makefile
 echo x - p5-Tree-Node/distinfo
 sed 's/^X//' >p5-Tree-Node/distinfo << 'END-of-p5-Tree-Node/distinfo'
 XMD5 (Tree-Node-0.06.tar.gz) = 667894c4e717e7f4f609e31c1db69aac
 XSIZE (Tree-Node-0.06.tar.gz) = 50886
 END-of-p5-Tree-Node/distinfo
 echo x - p5-Tree-Node/pkg-descr
 sed 's/^X//' >p5-Tree-Node/pkg-descr << 'END-of-p5-Tree-Node/pkg-descr'
 XThis module implements a memory-efficient node type (for trees, skip lists
 Xand similar data structures) for Perl.
 X
 XYou may ask "Why bother implementing an ordered structure such as a tree
 Xwhen Perl has hashes built-in?" Since Perl is optimized for speed over
 Xmemory usage, hashes (and lists) use a lot of memory.
 X
 XSo the purpose of this package is to provide a simple low-level Node class
 Xwhich can be used as a base class to implement various kinds of tree
 Xstructures. Each node has a key/value pair and a variable number of
 X"children" pointers.
 X
 XHow nodes are organized or the algorithm used to organize them is for you
 Xto implement.
 X
 XThere is no Pure-perl version because this package was written to overcome
 Xlimitations of Perl.
 X
 XWWW: http://search.cpan.org/dist/Tree-Node/
 XAuthor: Robert Rothenberg <rrwo@cpan.org>
 X
 X- Aaron Dalton
 Xaaron@daltons.ca
 END-of-p5-Tree-Node/pkg-descr
 echo x - p5-Tree-Node/pkg-plist
 sed 's/^X//' >p5-Tree-Node/pkg-plist << 'END-of-p5-Tree-Node/pkg-plist'
 X%%SITE_PERL%%/%%PERL_ARCH%%/Tree/Node.pm
 X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/.packlist
 X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/Node.bs
 X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/Node.so
 X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node
 X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree 2>/dev/null || true
 X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Tree 2>/dev/null || true
 X
 END-of-p5-Tree-Node/pkg-plist
 exit
 
 
 --------------000503000308010706090401
 Content-Type: text/plain;
  name="submission.txt"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline;
  filename="submission.txt"
 
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #	p5-Tree-Node
 #	p5-Tree-Node/Makefile
 #	p5-Tree-Node/distinfo
 #	p5-Tree-Node/pkg-descr
 #	p5-Tree-Node/pkg-plist
 #
 echo c - p5-Tree-Node
 mkdir -p p5-Tree-Node > /dev/null 2>&1
 echo x - p5-Tree-Node/Makefile
 sed 's/^X//' >p5-Tree-Node/Makefile << 'END-of-p5-Tree-Node/Makefile'
 X# New ports collection makefile for:	p5-Tree-Node
 X# Date created: 			01 July 2005
 X# Whom: 				Aaron Dalton <aaron@daltons.ca>
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=	Tree-Node
 XPORTVERSION=	0.06
 XCATEGORIES=	devel perl5
 XMASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 XMASTER_SITE_SUBDIR=	Tree
 XPKGNAMEPREFIX=	p5-
 X
 XMAINTAINER=	aaron@daltons.ca
 XCOMMENT=	Memory-efficient tree nodes in Perl
 X
 XPERL_CONFIGURE=	yes
 X
 XMAN3=		Tree::Node.3
 X
 X.include <bsd.port.mk>
 END-of-p5-Tree-Node/Makefile
 echo x - p5-Tree-Node/distinfo
 sed 's/^X//' >p5-Tree-Node/distinfo << 'END-of-p5-Tree-Node/distinfo'
 XMD5 (Tree-Node-0.06.tar.gz) = 667894c4e717e7f4f609e31c1db69aac
 XSIZE (Tree-Node-0.06.tar.gz) = 50886
 END-of-p5-Tree-Node/distinfo
 echo x - p5-Tree-Node/pkg-descr
 sed 's/^X//' >p5-Tree-Node/pkg-descr << 'END-of-p5-Tree-Node/pkg-descr'
 XThis module implements a memory-efficient node type (for trees, skip lists 
 Xand similar data structures) for Perl.
 X
 XYou may ask "Why bother implementing an ordered structure such as a tree 
 Xwhen Perl has hashes built-in?" Since Perl is optimized for speed over 
 Xmemory usage, hashes (and lists) use a lot of memory.
 X
 XSo the purpose of this package is to provide a simple low-level Node class 
 Xwhich can be used as a base class to implement various kinds of tree 
 Xstructures. Each node has a key/value pair and a variable number of 
 X"children" pointers.
 X
 XHow nodes are organized or the algorithm used to organize them is for you 
 Xto implement.
 X
 XThere is no Pure-perl version because this package was written to overcome 
 Xlimitations of Perl.
 X
 XWWW: http://search.cpan.org/dist/Tree-Node/
 XAuthor: Robert Rothenberg <rrwo@cpan.org>
 X
 X- Aaron Dalton
 Xaaron@daltons.ca
 END-of-p5-Tree-Node/pkg-descr
 echo x - p5-Tree-Node/pkg-plist
 sed 's/^X//' >p5-Tree-Node/pkg-plist << 'END-of-p5-Tree-Node/pkg-plist'
 X%%SITE_PERL%%/%%PERL_ARCH%%/Tree/Node.pm
 X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/.packlist
 X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/Node.bs
 X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/Node.so
 X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node
 X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree 2>/dev/null || true
 X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Tree 2>/dev/null || true
 X
 END-of-p5-Tree-Node/pkg-plist
 exit
 
 
 --------------000503000308010706090401--
State-Changed-From-To: open->feedback 
State-Changed-By: sem 
State-Changed-When: Sun Jul 31 12:56:07 GMT 2005 
State-Changed-Why:  
Wait for a feedback. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=82885 

From: Sergey Matveychuk <sem@FreeBSD.org>
To: bug-followup@FreeBSD.org,  aaron@daltons.ca
Cc:  
Subject: Re: ports/82885: New Port: devel/p5-Tree-Node
Date: Sun, 31 Jul 2005 16:56:01 +0400

 cp Node.bs blib/arch/auto/Tree/Node/Node.bs
 chmod 644 blib/arch/auto/Tree/Node/Node.bs
 Manifying blib/man3/Tree::Node.3
 /usr/local/bin/perl "-Iblib/arch" "-Iblib/lib" Build.PL Build
 Too early to specify a build action 'Build'.  Do 'Build Build' instead.
 *** Error code 255
 
 Stop in /usr/build/spool/prs/p5-Tree-Node/work/Tree-Node-0.06.
 *** Error code 1
 
 Stop in /spool/prs/p5-Tree-Node.
 
 --
 Sem.

From: Aaron Dalton <aaron@daltons.ca>
To: Sergey Matveychuk <sem@FreeBSD.org>
Cc: freebsd-ports-bugs@FreeBSD.org,  bug-followup@FreeBSD.org
Subject: Re: ports/82885: New Port: devel/p5-Tree-Node
Date: Sun, 31 Jul 2005 09:22:03 -0600

 This is a multi-part message in MIME format.
 --------------020103070803080006030607
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 Content-Transfer-Encoding: 7bit
 
 Sorry for the oversight.  I have changed the Makefile to PERL_MODBUILD 
 instead of _CONFIGURE.  Odd that I didn't receive that same error when I 
 built the port.  Anyway, attached is the new shell archive.  If you have 
   any further problems, let me know.  Sorry again for the bother!
 
 Cheers!
 Aaron
 
 
 --------------020103070803080006030607
 Content-Type: text/plain;
  name="submission.txt"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline;
  filename="submission.txt"
 
 # This is a shell archive.  Save it in a file, remove anything before
 # this line, and then unpack it by entering "sh file".  Note, it may
 # create directories; files and directories will be owned by you and
 # have default permissions.
 #
 # This archive contains:
 #
 #	p5-Tree-Node
 #	p5-Tree-Node/Makefile
 #	p5-Tree-Node/distinfo
 #	p5-Tree-Node/pkg-descr
 #	p5-Tree-Node/pkg-plist
 #
 echo c - p5-Tree-Node
 mkdir -p p5-Tree-Node > /dev/null 2>&1
 echo x - p5-Tree-Node/Makefile
 sed 's/^X//' >p5-Tree-Node/Makefile << 'END-of-p5-Tree-Node/Makefile'
 X# New ports collection makefile for:	p5-Tree-Node
 X# Date created: 			01 July 2005
 X# Whom: 				Aaron Dalton <aaron@daltons.ca>
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=	Tree-Node
 XPORTVERSION=	0.06
 XCATEGORIES=	devel perl5
 XMASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 XMASTER_SITE_SUBDIR=	Tree
 XPKGNAMEPREFIX=	p5-
 X
 XMAINTAINER=	aaron@daltons.ca
 XCOMMENT=	Memory-efficient tree nodes in Perl
 X
 XPERL_MODBUILD=	yes
 X
 XMAN3=		Tree::Node.3
 X
 X.include <bsd.port.mk>
 END-of-p5-Tree-Node/Makefile
 echo x - p5-Tree-Node/distinfo
 sed 's/^X//' >p5-Tree-Node/distinfo << 'END-of-p5-Tree-Node/distinfo'
 XMD5 (Tree-Node-0.06.tar.gz) = 667894c4e717e7f4f609e31c1db69aac
 XSIZE (Tree-Node-0.06.tar.gz) = 50886
 END-of-p5-Tree-Node/distinfo
 echo x - p5-Tree-Node/pkg-descr
 sed 's/^X//' >p5-Tree-Node/pkg-descr << 'END-of-p5-Tree-Node/pkg-descr'
 XThis module implements a memory-efficient node type (for trees, skip lists 
 Xand similar data structures) for Perl.
 X
 XYou may ask "Why bother implementing an ordered structure such as a tree 
 Xwhen Perl has hashes built-in?" Since Perl is optimized for speed over 
 Xmemory usage, hashes (and lists) use a lot of memory.
 X
 XSo the purpose of this package is to provide a simple low-level Node class 
 Xwhich can be used as a base class to implement various kinds of tree 
 Xstructures. Each node has a key/value pair and a variable number of 
 X"children" pointers.
 X
 XHow nodes are organized or the algorithm used to organize them is for you 
 Xto implement.
 X
 XThere is no Pure-perl version because this package was written to overcome 
 Xlimitations of Perl.
 X
 XWWW: http://search.cpan.org/dist/Tree-Node/
 XAuthor: Robert Rothenberg <rrwo@cpan.org>
 X
 X- Aaron Dalton
 Xaaron@daltons.ca
 END-of-p5-Tree-Node/pkg-descr
 echo x - p5-Tree-Node/pkg-plist
 sed 's/^X//' >p5-Tree-Node/pkg-plist << 'END-of-p5-Tree-Node/pkg-plist'
 X%%SITE_PERL%%/%%PERL_ARCH%%/Tree/Node.pm
 X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/.packlist
 X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/Node.bs
 X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/Node.so
 X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node
 X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree 2>/dev/null || true
 X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Tree 2>/dev/null || true
 X
 END-of-p5-Tree-Node/pkg-plist
 exit
 
 
 --------------020103070803080006030607--
State-Changed-From-To: feedback->closed 
State-Changed-By: sem 
State-Changed-When: Sun Jul 31 17:12:06 GMT 2005 
State-Changed-Why:  
New port added, thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=82885 
>Unformatted:
