From aaron@moondance.itsy-bitsy.net  Wed May 31 20:24:28 2006
Return-Path: <aaron@moondance.itsy-bitsy.net>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id EA66616BA35
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 31 May 2006 20:24:28 +0000 (UTC)
	(envelope-from aaron@moondance.itsy-bitsy.net)
Received: from mpls-qmqp-04.inet.qwest.net (mpls-qmqp-04.inet.qwest.net [63.231.195.115])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 99E9343D64
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 31 May 2006 20:24:24 +0000 (GMT)
	(envelope-from aaron@moondance.itsy-bitsy.net)
Received: from mpls-pop-14.inet.qwest.net (mpls-pop-14.inet.qwest.net [63.231.195.14])
	by mpls-qmqp-04.inet.qwest.net (Postfix) with QMQP id DEF0822DE21
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 31 May 2006 20:24:23 +0000 (UTC)
Received: from unknown (HELO mail.itsy-bitsy.net) (63.231.83.246)
  by mpls-pop-14.inet.qwest.net with SMTP; 31 May 2006 20:24:23 -0000
Received: from [127.0.0.1] (helo=moondance.itsy-bitsy.net)
	by mail.itsy-bitsy.net with esmtp (Exim 4.62 (FreeBSD))
	(envelope-from <aaron@moondance.itsy-bitsy.net>)
	id 1FlXCV-0001O8-Ls
	for FreeBSD-gnats-submit@freebsd.org; Wed, 31 May 2006 14:21:55 -0600
Received: (from aaron@localhost)
	by moondance.itsy-bitsy.net (8.13.3/8.13.3/Submit) id k4VKLtbt005339;
	Wed, 31 May 2006 14:21:55 -0600 (MDT)
	(envelope-from aaron)
Message-Id: <200605312021.k4VKLtbt005339@moondance.itsy-bitsy.net>
Date: Wed, 31 May 2006 14:21:55 -0600 (MDT)
From: "Aaron Dalton" <aaron@freebsd.org>
Reply-To: Aaron Dalton <aaron@freebsd.org>
To: FreeBSD-gnats-submit@freebsd.org
Subject: Update Port: devel/p5-Class-AutoClass 0.09->1.01
X-Send-Pr-Version: 3.113
X-GNATS-Notify: fernan@iib.unsam.edu.ar

>Number:         98236
>Category:       ports
>Synopsis:       Update Port: devel/p5-Class-AutoClass 0.09->1.01
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    aaron
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed May 31 20:30:12 GMT 2006
>Closed-Date:    Tue Jun 06 04:08:08 GMT 2006
>Last-Modified:  Tue Jun 06 04:08:08 GMT 2006
>Originator:     Aaron Dalton
>Release:        FreeBSD 5.4-RELEASE i386
>Organization:
>Environment:
System: FreeBSD moondance.itsy-bitsy.net 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May 8 10:21:06 UTC 2005 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386


	
>Description:
- Updated from v0.09 to v1.01
- Updated pkg-plist
- Update Makefile and pkg-descr to reflect vendor's change of distname
- Restricted to Perl 5.8 instead of Perl 5.6 due to unresolved errors with 
'make test.'  Hopefully this restriction will be lifted soon.

0.091 Mon Apr 18 09:22:47 PDT 2005
	- removed Data::Dumper dependency
	- removed versions from dependencies in Makefil.PL
0.092 Tue May 31 17:40:32 PDT 2005
	- changed AutoDB require in AutoClass.pm to AutoDB::Object (bug: 
utility classes were forced to 'use Class::AutoDB::Object'
	- changed prereq syntax in Makefile.pl to just check for lib 
existance
0.093 Tue Oct 25 16:02:24 PDT 2005
	- new override capability (for returning an instance of another 
object) and tests to cover new functionality
	- added nullable functionality, so that an AutoClass object can 
return undef
0.1   Wed Jan  4 15:05:53 PST 2006
	- initialization strategy changed. instead of init'ing class by 
class down the hierarchy, it's now done all at once
	- fixed many bugs in default initialization
	- set_attributes always calls setter method
	- added check for super classes not yet 'used'.  caution: this 
only works if people follow the Perl convention of placing module Foo in 
file Foo.pm.  Else, there's no easy way to translate a classname into a 
string that can be 'used'
	- fixed bug to auto-register subclasses that did not set %AUTODB 
>How-To-Repeat:
	
>Fix:

	

--- submission.txt begins here ---
? submission.txt
Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/devel/p5-Class-AutoClass/Makefile,v
retrieving revision 1.2
diff -u -r1.2 Makefile
--- Makefile	1 Dec 2004 12:00:23 -0000	1.2
+++ Makefile	31 May 2006 20:20:26 -0000
@@ -1,4 +1,3 @@
-# vim:ts=8
 # New ports collection makefile for:	p5-Class-AutoClass
 # Date created:				25 November 2004
 # Whom:					Fernan Aguero <fernan@iib.unsam.edu.ar>
@@ -7,19 +6,37 @@
 #
 
 PORTNAME=	Class-AutoClass
-PORTVERSION=	0.09
+PORTVERSION=	1.01
 CATEGORIES=	devel perl5
 MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
-MASTER_SITE_SUBDIR=	Class
+MASTER_SITE_SUBDIR=	../../authors/id/C/CC/CCAVNOR
 PKGNAMEPREFIX=	p5-
+DISTNAME=	autoclass_v1_01
+EXTRACT_SUFX=	.tgz
 
 MAINTAINER=	fernan@iib.unsam.edu.ar
-COMMENT=	Automatically define simple get and set methods in an inheritance structure
+COMMENT=	Auto-define simple get and set methods in an inheritance structure
 
-BUILD_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper
+RUN_DEPENDS=	${SITE_PERL}/IO/Scalar.pm:${PORTSDIR}/devel/p5-IO-stringy
+BUILD_DEPENDS=	${RUN_DEPENDS} \
+		${SITE_PERL}/Test/Deep.pm:${PORTSDIR}/devel/p5-Test-Deep
 
 PERL_CONFIGURE=	yes
+WRKSRC=		${WRKDIR}/AutoClass
 
-MAN3=		Class::AutoClass::Root.3 Class::AutoClass.3 Class::AutoClass::Args.3
+MAN3=	Class::AutoClass.3 \
+	Class::AutoClass::Args.3 \
+	Class::AutoClass::Root.3
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${PERL_LEVEL} < 500800
+BUILD_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable
+RUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable
+.endif
+
+.if ${PERL_LEVEL} < 500800
+IGNORE=	currently only supports Perl 5.8+.  This will hopefully change.  For now, please install lang/perl5.8 and try again
+.endif
+
+.include <bsd.port.post.mk>
Index: distinfo
===================================================================
RCS file: /home/pcvs/ports/devel/p5-Class-AutoClass/distinfo,v
retrieving revision 1.2
diff -u -r1.2 distinfo
--- distinfo	22 Jan 2006 08:28:44 -0000	1.2
+++ distinfo	31 May 2006 20:20:26 -0000
@@ -1,3 +1,3 @@
-MD5 (Class-AutoClass-0.09.tar.gz) = cf18b2614abb488c709ae62ea3796ff6
-SHA256 (Class-AutoClass-0.09.tar.gz) = 5b234e6656c599d749bb20154bb7c974fb0a9fa4cfe3b6e39ded38528f504dc5
-SIZE (Class-AutoClass-0.09.tar.gz) = 16738
+MD5 (autoclass_v1_01.tgz) = 5f04fa29d6cd01b4d1b707ed79edb8e6
+SHA256 (autoclass_v1_01.tgz) = a1b89d90e468fdd70ccba928b8aac68430aeaee890915da5e09ef091d2ebcf36
+SIZE (autoclass_v1_01.tgz) = 32115
Index: pkg-descr
===================================================================
RCS file: /home/pcvs/ports/devel/p5-Class-AutoClass/pkg-descr,v
retrieving revision 1.1
diff -u -r1.1 pkg-descr
--- pkg-descr	26 Nov 2004 00:58:23 -0000	1.1
+++ pkg-descr	31 May 2006 20:20:26 -0000
@@ -4,3 +4,7 @@
 	initilaization, 
   - object initialization is handled correctly (in top-down order), even
 	in the presence of multiple inheritance
+
+WWW: http://search.cpan.org/dist/autoclass
+Authors: Christopher Cavnor <ccavnor@systemsbiology.net>
+         Nat Goodman <natg@shore.net>
Index: pkg-plist
===================================================================
RCS file: /home/pcvs/ports/devel/p5-Class-AutoClass/pkg-plist,v
retrieving revision 1.2
diff -u -r1.2 pkg-plist
--- pkg-plist	22 Jan 2006 01:47:05 -0000	1.2
+++ pkg-plist	31 May 2006 20:20:27 -0000
@@ -1,7 +1,7 @@
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/Class/AutoClass/.packlist
 %%SITE_PERL%%/Class/AutoClass.pm
-%%SITE_PERL%%/Class/AutoClass/Root.pm
 %%SITE_PERL%%/Class/AutoClass/Args.pm
+%%SITE_PERL%%/Class/AutoClass/Root.pm
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Class/AutoClass/.packlist
 @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Class/AutoClass
 @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Class
 @dirrm %%SITE_PERL%%/Class/AutoClass
--- submission.txt ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->aaron 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Wed May 31 20:36:48 UTC 2006 
Responsible-Changed-Why:  
Submitter has GNATS access 

http://www.freebsd.org/cgi/query-pr.cgi?pr=98236 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Wed May 31 20:37:02 UTC 2006 
State-Changed-Why:  
Awaiting maintainers feedback 

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

From: Fernan Aguero <fernan@iib.unsam.edu.ar>
To: bug-followup@FreeBSD.org,
   FreeBSD GNATS PR Submission <freebsd-gnats-submit@FreeBSD.org>
Cc: Aaron Dalton <aaron@FreeBSD.org>
Subject: Re: ports/98236: Update Port: devel/p5-Class-AutoClass 0.09->1.01
Date: Mon, 5 Jun 2006 21:25:34 -0300

 --9amGYk9869ThD9tj
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 +----[ Edwin Groothuis <edwin@FreeBSD.org> (31.May.2006 17:37):
 |
 | Maintainer of devel/p5-Class-AutoClass,
 | 
 | Please note that PR ports/98236 has just been submitted.
 | 
 | If it contains a patch for an upgrade, an enhancement or a bug fix
 | you agree on, reply to this email stating that you approve the patch
 | and a committer will take care of it.
 | 
 | The full text of the PR can be found at:
 |     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/98236
 |
 +----]
 
 Aaron,
 
 thanks for the patch. Attached is a revised version
 containing only the significant changes needed to update the port.
 
 Fernan
 
 --9amGYk9869ThD9tj
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: attachment; filename="autoclass.2.diff"
 
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/Makefile p5-Class-AutoClass/Makefile
 --- /usr/ports/devel/p5-Class-AutoClass/Makefile	Wed Dec  1 09:00:23 2004
 +++ p5-Class-AutoClass/Makefile	Mon Jun  5 21:13:25 2006
 @@ -7,19 +7,35 @@
  #
  
  PORTNAME=	Class-AutoClass
 -PORTVERSION=	0.09
 +PORTVERSION=	1.01
  CATEGORIES=	devel perl5
  MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 -MASTER_SITE_SUBDIR=	Class
 +MASTER_SITE_SUBDIR=	Class/CCAVNOR
  PKGNAMEPREFIX=	p5-
 +DISTNAME=	autoclass_v${PORTVERSION:S/./_/}
 +EXTRACT_SUFX=	.tgz
  
  MAINTAINER=	fernan@iib.unsam.edu.ar
  COMMENT=	Automatically define simple get and set methods in an inheritance structure
  
 -BUILD_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper
 +RUN_DEPENDS=	${SITE_PERL}/IO/Scalar.pm:${PORTSDIR}/devel/p5-IO-stringy
 +BUILD_DEPENDS=	${RUN_DEPENDS} \
 +		${SITE_PERL}/Test/Deep.pm:${PORTSDIR}/devel/p5-Test-Deep
  
  PERL_CONFIGURE=	yes
 +WRKSRC=		${WRKDIR}/AutoClass
  
  MAN3=		Class::AutoClass::Root.3 Class::AutoClass.3 Class::AutoClass::Args.3
  
 -.include <bsd.port.mk>
 +.include <bsd.port.pre.mk>
 +
 +.if ${PERL_LEVEL} < 500800
 +BUILD_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable
 +RUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable
 +.endif
 +
 +.if ${PERL_LEVEL} < 500800
 +IGNORE=	currently only supports Perl 5.8+.  This will hopefully change.  For now, please install lang/perl5.8 and try again
 +.endif
 +
 +.include <bsd.port.post.mk>
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/distinfo p5-Class-AutoClass/distinfo
 --- /usr/ports/devel/p5-Class-AutoClass/distinfo	Wed Jan 25 11:32:46 2006
 +++ p5-Class-AutoClass/distinfo	Mon Jun  5 21:03:02 2006
 @@ -1,3 +1,3 @@
 -MD5 (Class-AutoClass-0.09.tar.gz) = cf18b2614abb488c709ae62ea3796ff6
 -SHA256 (Class-AutoClass-0.09.tar.gz) = 5b234e6656c599d749bb20154bb7c974fb0a9fa4cfe3b6e39ded38528f504dc5
 -SIZE (Class-AutoClass-0.09.tar.gz) = 16738
 +MD5 (autoclass_v1_01.tgz) = 5f04fa29d6cd01b4d1b707ed79edb8e6
 +SHA256 (autoclass_v1_01.tgz) = a1b89d90e468fdd70ccba928b8aac68430aeaee890915da5e09ef091d2ebcf36
 +SIZE (autoclass_v1_01.tgz) = 32115
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/pkg-descr p5-Class-AutoClass/pkg-descr
 --- /usr/ports/devel/p5-Class-AutoClass/pkg-descr	Thu Nov 25 21:58:23 2004
 +++ p5-Class-AutoClass/pkg-descr	Mon Jun  5 21:03:02 2006
 @@ -4,3 +4,7 @@
  	initilaization, 
    - object initialization is handled correctly (in top-down order), even
  	in the presence of multiple inheritance
 +
 +WWW: http://search.cpan.org/dist/autoclass
 +Authors: Christopher Cavnor <ccavnor@systemsbiology.net>
 +         Nat Goodman <natg@shore.net>
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/pkg-plist p5-Class-AutoClass/pkg-plist
 --- /usr/ports/devel/p5-Class-AutoClass/pkg-plist	Wed Jan 25 11:32:46 2006
 +++ p5-Class-AutoClass/pkg-plist	Mon Jun  5 21:10:34 2006
 @@ -1,7 +1,7 @@
 -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Class/AutoClass/.packlist
  %%SITE_PERL%%/Class/AutoClass.pm
  %%SITE_PERL%%/Class/AutoClass/Root.pm
  %%SITE_PERL%%/Class/AutoClass/Args.pm
 +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Class/AutoClass/.packlist
  @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Class/AutoClass
  @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Class
  @dirrm %%SITE_PERL%%/Class/AutoClass
 
 --9amGYk9869ThD9tj--

From: Fernan Aguero <fernan@iib.unsam.edu.ar>
To: bug-followup@FreeBSD.org,
   FreeBSD GNATS PR Submission <freebsd-gnats-submit@FreeBSD.org>
Cc: Aaron Dalton <aaron@FreeBSD.org>
Subject: Re: ports/98236: Update Port: devel/p5-Class-AutoClass 0.09->1.01
Date: Mon, 5 Jun 2006 21:25:34 -0300

 --9amGYk9869ThD9tj
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 +----[ Edwin Groothuis <edwin@FreeBSD.org> (31.May.2006 17:37):
 |
 | Maintainer of devel/p5-Class-AutoClass,
 | 
 | Please note that PR ports/98236 has just been submitted.
 | 
 | If it contains a patch for an upgrade, an enhancement or a bug fix
 | you agree on, reply to this email stating that you approve the patch
 | and a committer will take care of it.
 | 
 | The full text of the PR can be found at:
 |     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/98236
 |
 +----]
 
 Aaron,
 
 thanks for the patch. Attached is a revised version
 containing only the significant changes needed to update the port.
 
 Fernan
 
 --9amGYk9869ThD9tj
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: attachment; filename="autoclass.2.diff"
 
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/Makefile p5-Class-AutoClass/Makefile
 --- /usr/ports/devel/p5-Class-AutoClass/Makefile	Wed Dec  1 09:00:23 2004
 +++ p5-Class-AutoClass/Makefile	Mon Jun  5 21:13:25 2006
 @@ -7,19 +7,35 @@
  #
  
  PORTNAME=	Class-AutoClass
 -PORTVERSION=	0.09
 +PORTVERSION=	1.01
  CATEGORIES=	devel perl5
  MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 -MASTER_SITE_SUBDIR=	Class
 +MASTER_SITE_SUBDIR=	Class/CCAVNOR
  PKGNAMEPREFIX=	p5-
 +DISTNAME=	autoclass_v${PORTVERSION:S/./_/}
 +EXTRACT_SUFX=	.tgz
  
  MAINTAINER=	fernan@iib.unsam.edu.ar
  COMMENT=	Automatically define simple get and set methods in an inheritance structure
  
 -BUILD_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper
 +RUN_DEPENDS=	${SITE_PERL}/IO/Scalar.pm:${PORTSDIR}/devel/p5-IO-stringy
 +BUILD_DEPENDS=	${RUN_DEPENDS} \
 +		${SITE_PERL}/Test/Deep.pm:${PORTSDIR}/devel/p5-Test-Deep
  
  PERL_CONFIGURE=	yes
 +WRKSRC=		${WRKDIR}/AutoClass
  
  MAN3=		Class::AutoClass::Root.3 Class::AutoClass.3 Class::AutoClass::Args.3
  
 -.include <bsd.port.mk>
 +.include <bsd.port.pre.mk>
 +
 +.if ${PERL_LEVEL} < 500800
 +BUILD_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable
 +RUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable
 +.endif
 +
 +.if ${PERL_LEVEL} < 500800
 +IGNORE=	currently only supports Perl 5.8+.  This will hopefully change.  For now, please install lang/perl5.8 and try again
 +.endif
 +
 +.include <bsd.port.post.mk>
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/distinfo p5-Class-AutoClass/distinfo
 --- /usr/ports/devel/p5-Class-AutoClass/distinfo	Wed Jan 25 11:32:46 2006
 +++ p5-Class-AutoClass/distinfo	Mon Jun  5 21:03:02 2006
 @@ -1,3 +1,3 @@
 -MD5 (Class-AutoClass-0.09.tar.gz) = cf18b2614abb488c709ae62ea3796ff6
 -SHA256 (Class-AutoClass-0.09.tar.gz) = 5b234e6656c599d749bb20154bb7c974fb0a9fa4cfe3b6e39ded38528f504dc5
 -SIZE (Class-AutoClass-0.09.tar.gz) = 16738
 +MD5 (autoclass_v1_01.tgz) = 5f04fa29d6cd01b4d1b707ed79edb8e6
 +SHA256 (autoclass_v1_01.tgz) = a1b89d90e468fdd70ccba928b8aac68430aeaee890915da5e09ef091d2ebcf36
 +SIZE (autoclass_v1_01.tgz) = 32115
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/pkg-descr p5-Class-AutoClass/pkg-descr
 --- /usr/ports/devel/p5-Class-AutoClass/pkg-descr	Thu Nov 25 21:58:23 2004
 +++ p5-Class-AutoClass/pkg-descr	Mon Jun  5 21:03:02 2006
 @@ -4,3 +4,7 @@
  	initilaization, 
    - object initialization is handled correctly (in top-down order), even
  	in the presence of multiple inheritance
 +
 +WWW: http://search.cpan.org/dist/autoclass
 +Authors: Christopher Cavnor <ccavnor@systemsbiology.net>
 +         Nat Goodman <natg@shore.net>
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/pkg-plist p5-Class-AutoClass/pkg-plist
 --- /usr/ports/devel/p5-Class-AutoClass/pkg-plist	Wed Jan 25 11:32:46 2006
 +++ p5-Class-AutoClass/pkg-plist	Mon Jun  5 21:10:34 2006
 @@ -1,7 +1,7 @@
 -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Class/AutoClass/.packlist
  %%SITE_PERL%%/Class/AutoClass.pm
  %%SITE_PERL%%/Class/AutoClass/Root.pm
  %%SITE_PERL%%/Class/AutoClass/Args.pm
 +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Class/AutoClass/.packlist
  @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Class/AutoClass
  @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Class
  @dirrm %%SITE_PERL%%/Class/AutoClass
 
 --9amGYk9869ThD9tj--

From: Fernan Aguero <fernan@iib.unsam.edu.ar>
To: bug-followup@FreeBSD.org,
   FreeBSD GNATS PR Submission <freebsd-gnats-submit@FreeBSD.org>
Cc: Aaron Dalton <aaron@FreeBSD.org>
Subject: Re: ports/98236: Update Port: devel/p5-Class-AutoClass 0.09->1.01
Date: Mon, 5 Jun 2006 21:33:16 -0300

 --z6Eq5LdranGa6ru8
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 +----[ To bug-followup@FreeBSD.org <fernan@iib.unsam.edu.ar> (05.Jun.2006 21:25):
 |
 | +----[ Edwin Groothuis <edwin@FreeBSD.org> (31.May.2006 17:37):
 | |
 | | Maintainer of devel/p5-Class-AutoClass,
 | | 
 | | Please note that PR ports/98236 has just been submitted.
 | | 
 | | If it contains a patch for an upgrade, an enhancement or a bug fix
 | | you agree on, reply to this email stating that you approve the patch
 | | and a committer will take care of it.
 | | 
 | | The full text of the PR can be found at:
 | |     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/98236
 | |
 | +----]
 | 
 | Aaron,
 | 
 | thanks for the patch. Attached is a revised version
 | containing only the significant changes needed to update the port.
 | 
 | Fernan
 |
 +----]
 
 Sorry, attached is a better revised version (there are no
 changes to the pkg-plist),
 
 Fenan
 
 --z6Eq5LdranGa6ru8
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: attachment; filename="autoclass.3.diff"
 
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/Makefile p5-Class-AutoClass/Makefile
 --- /usr/ports/devel/p5-Class-AutoClass/Makefile	Wed Dec  1 09:00:23 2004
 +++ p5-Class-AutoClass/Makefile	Mon Jun  5 21:13:25 2006
 @@ -7,19 +7,35 @@
  #
  
  PORTNAME=	Class-AutoClass
 -PORTVERSION=	0.09
 +PORTVERSION=	1.01
  CATEGORIES=	devel perl5
  MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 -MASTER_SITE_SUBDIR=	Class
 +MASTER_SITE_SUBDIR=	Class/CCAVNOR
  PKGNAMEPREFIX=	p5-
 +DISTNAME=	autoclass_v${PORTVERSION:S/./_/}
 +EXTRACT_SUFX=	.tgz
  
  MAINTAINER=	fernan@iib.unsam.edu.ar
  COMMENT=	Automatically define simple get and set methods in an inheritance structure
  
 -BUILD_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper
 +RUN_DEPENDS=	${SITE_PERL}/IO/Scalar.pm:${PORTSDIR}/devel/p5-IO-stringy
 +BUILD_DEPENDS=	${RUN_DEPENDS} \
 +		${SITE_PERL}/Test/Deep.pm:${PORTSDIR}/devel/p5-Test-Deep
  
  PERL_CONFIGURE=	yes
 +WRKSRC=		${WRKDIR}/AutoClass
  
  MAN3=		Class::AutoClass::Root.3 Class::AutoClass.3 Class::AutoClass::Args.3
  
 -.include <bsd.port.mk>
 +.include <bsd.port.pre.mk>
 +
 +.if ${PERL_LEVEL} < 500800
 +BUILD_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable
 +RUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable
 +.endif
 +
 +.if ${PERL_LEVEL} < 500800
 +IGNORE=	currently only supports Perl 5.8+.  This will hopefully change.  For now, please install lang/perl5.8 and try again
 +.endif
 +
 +.include <bsd.port.post.mk>
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/distinfo p5-Class-AutoClass/distinfo
 --- /usr/ports/devel/p5-Class-AutoClass/distinfo	Wed Jan 25 11:32:46 2006
 +++ p5-Class-AutoClass/distinfo	Mon Jun  5 21:03:02 2006
 @@ -1,3 +1,3 @@
 -MD5 (Class-AutoClass-0.09.tar.gz) = cf18b2614abb488c709ae62ea3796ff6
 -SHA256 (Class-AutoClass-0.09.tar.gz) = 5b234e6656c599d749bb20154bb7c974fb0a9fa4cfe3b6e39ded38528f504dc5
 -SIZE (Class-AutoClass-0.09.tar.gz) = 16738
 +MD5 (autoclass_v1_01.tgz) = 5f04fa29d6cd01b4d1b707ed79edb8e6
 +SHA256 (autoclass_v1_01.tgz) = a1b89d90e468fdd70ccba928b8aac68430aeaee890915da5e09ef091d2ebcf36
 +SIZE (autoclass_v1_01.tgz) = 32115
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/pkg-descr p5-Class-AutoClass/pkg-descr
 --- /usr/ports/devel/p5-Class-AutoClass/pkg-descr	Thu Nov 25 21:58:23 2004
 +++ p5-Class-AutoClass/pkg-descr	Mon Jun  5 21:03:02 2006
 @@ -4,3 +4,7 @@
  	initilaization, 
    - object initialization is handled correctly (in top-down order), even
  	in the presence of multiple inheritance
 +
 +WWW: http://search.cpan.org/dist/autoclass
 +Authors: Christopher Cavnor <ccavnor@systemsbiology.net>
 +         Nat Goodman <natg@shore.net>
 
 --z6Eq5LdranGa6ru8--

From: Fernan Aguero <fernan@iib.unsam.edu.ar>
To: bug-followup@FreeBSD.org,
   FreeBSD GNATS PR Submission <freebsd-gnats-submit@FreeBSD.org>
Cc: Aaron Dalton <aaron@FreeBSD.org>
Subject: Re: ports/98236: Update Port: devel/p5-Class-AutoClass 0.09->1.01
Date: Mon, 5 Jun 2006 21:33:16 -0300

 --z6Eq5LdranGa6ru8
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 +----[ To bug-followup@FreeBSD.org <fernan@iib.unsam.edu.ar> (05.Jun.2006 21:25):
 |
 | +----[ Edwin Groothuis <edwin@FreeBSD.org> (31.May.2006 17:37):
 | |
 | | Maintainer of devel/p5-Class-AutoClass,
 | | 
 | | Please note that PR ports/98236 has just been submitted.
 | | 
 | | If it contains a patch for an upgrade, an enhancement or a bug fix
 | | you agree on, reply to this email stating that you approve the patch
 | | and a committer will take care of it.
 | | 
 | | The full text of the PR can be found at:
 | |     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/98236
 | |
 | +----]
 | 
 | Aaron,
 | 
 | thanks for the patch. Attached is a revised version
 | containing only the significant changes needed to update the port.
 | 
 | Fernan
 |
 +----]
 
 Sorry, attached is a better revised version (there are no
 changes to the pkg-plist),
 
 Fenan
 
 --z6Eq5LdranGa6ru8
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: attachment; filename="autoclass.3.diff"
 
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/Makefile p5-Class-AutoClass/Makefile
 --- /usr/ports/devel/p5-Class-AutoClass/Makefile	Wed Dec  1 09:00:23 2004
 +++ p5-Class-AutoClass/Makefile	Mon Jun  5 21:13:25 2006
 @@ -7,19 +7,35 @@
  #
  
  PORTNAME=	Class-AutoClass
 -PORTVERSION=	0.09
 +PORTVERSION=	1.01
  CATEGORIES=	devel perl5
  MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 -MASTER_SITE_SUBDIR=	Class
 +MASTER_SITE_SUBDIR=	Class/CCAVNOR
  PKGNAMEPREFIX=	p5-
 +DISTNAME=	autoclass_v${PORTVERSION:S/./_/}
 +EXTRACT_SUFX=	.tgz
  
  MAINTAINER=	fernan@iib.unsam.edu.ar
  COMMENT=	Automatically define simple get and set methods in an inheritance structure
  
 -BUILD_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/Data/Dumper.pm:${PORTSDIR}/devel/p5-Data-Dumper
 +RUN_DEPENDS=	${SITE_PERL}/IO/Scalar.pm:${PORTSDIR}/devel/p5-IO-stringy
 +BUILD_DEPENDS=	${RUN_DEPENDS} \
 +		${SITE_PERL}/Test/Deep.pm:${PORTSDIR}/devel/p5-Test-Deep
  
  PERL_CONFIGURE=	yes
 +WRKSRC=		${WRKDIR}/AutoClass
  
  MAN3=		Class::AutoClass::Root.3 Class::AutoClass.3 Class::AutoClass::Args.3
  
 -.include <bsd.port.mk>
 +.include <bsd.port.pre.mk>
 +
 +.if ${PERL_LEVEL} < 500800
 +BUILD_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable
 +RUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable
 +.endif
 +
 +.if ${PERL_LEVEL} < 500800
 +IGNORE=	currently only supports Perl 5.8+.  This will hopefully change.  For now, please install lang/perl5.8 and try again
 +.endif
 +
 +.include <bsd.port.post.mk>
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/distinfo p5-Class-AutoClass/distinfo
 --- /usr/ports/devel/p5-Class-AutoClass/distinfo	Wed Jan 25 11:32:46 2006
 +++ p5-Class-AutoClass/distinfo	Mon Jun  5 21:03:02 2006
 @@ -1,3 +1,3 @@
 -MD5 (Class-AutoClass-0.09.tar.gz) = cf18b2614abb488c709ae62ea3796ff6
 -SHA256 (Class-AutoClass-0.09.tar.gz) = 5b234e6656c599d749bb20154bb7c974fb0a9fa4cfe3b6e39ded38528f504dc5
 -SIZE (Class-AutoClass-0.09.tar.gz) = 16738
 +MD5 (autoclass_v1_01.tgz) = 5f04fa29d6cd01b4d1b707ed79edb8e6
 +SHA256 (autoclass_v1_01.tgz) = a1b89d90e468fdd70ccba928b8aac68430aeaee890915da5e09ef091d2ebcf36
 +SIZE (autoclass_v1_01.tgz) = 32115
 diff -ruN /usr/ports/devel/p5-Class-AutoClass/pkg-descr p5-Class-AutoClass/pkg-descr
 --- /usr/ports/devel/p5-Class-AutoClass/pkg-descr	Thu Nov 25 21:58:23 2004
 +++ p5-Class-AutoClass/pkg-descr	Mon Jun  5 21:03:02 2006
 @@ -4,3 +4,7 @@
  	initilaization, 
    - object initialization is handled correctly (in top-down order), even
  	in the presence of multiple inheritance
 +
 +WWW: http://search.cpan.org/dist/autoclass
 +Authors: Christopher Cavnor <ccavnor@systemsbiology.net>
 +         Nat Goodman <natg@shore.net>
 
 --z6Eq5LdranGa6ru8--
State-Changed-From-To: feedback->closed 
State-Changed-By: aaron 
State-Changed-When: Tue Jun 6 04:08:03 UTC 2006 
State-Changed-Why:  
Committed. Thanks! 

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