From tjs@pluto.cdpa.nsysu.edu.tw  Fri Oct 20 01:30:04 2006
Return-Path: <tjs@pluto.cdpa.nsysu.edu.tw>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8612916A407;
	Fri, 20 Oct 2006 01:30:04 +0000 (UTC)
	(envelope-from tjs@pluto.cdpa.nsysu.edu.tw)
Received: from pluto.cdpa.nsysu.edu.tw (Pluto.CDPA.nsysu.edu.tw [140.117.205.30])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 11CB943D49;
	Fri, 20 Oct 2006 01:30:03 +0000 (GMT)
	(envelope-from tjs@pluto.cdpa.nsysu.edu.tw)
Received: from pluto.cdpa.nsysu.edu.tw (localhost [127.0.0.1])
	by pluto.cdpa.nsysu.edu.tw (8.13.8/8.13.8) with ESMTP id k9K1Tu4P083597;
	Fri, 20 Oct 2006 09:29:56 +0800 (CST)
	(envelope-from tjs@pluto.cdpa.nsysu.edu.tw)
Received: (from root@localhost)
	by pluto.cdpa.nsysu.edu.tw (8.13.8/8.13.8/Submit) id k9K1Tuub083596;
	Fri, 20 Oct 2006 09:29:56 +0800 (CST)
	(envelope-from tjs)
Message-Id: <200610200129.k9K1Tuub083596@pluto.cdpa.nsysu.edu.tw>
Date: Fri, 20 Oct 2006 09:29:56 +0800 (CST)
From: Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>
To: FreeBSD-gnats-submit@freebsd.org
Cc: perl@freebsd.org
Subject: [PATCH] devel/p5-Test-Class: update to 0.20
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         104592
>Category:       ports
>Synopsis:       [PATCH] devel/p5-Test-Class: update to 0.20
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    clsung
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Oct 20 01:30:19 GMT 2006
>Closed-Date:    Tue Oct 31 01:53:20 GMT 2006
>Last-Modified:  Tue Oct 31 02:00:40 GMT 2006
>Originator:     Jin-Shan Tseng
>Release:        FreeBSD 6.2-PRERELEASE i386
>Organization:
FreeBSD @ Taiwan
>Environment:
System: FreeBSD Pluto.CDPA.nsysu.edu.tw 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #0: Thu Oct 12 11:54:24 CST 2006
>Description:
- Update to 0.20

Port maintainer (perl@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- p5-Test-Class-0.20.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/devel/p5-Test-Class/Makefile /hd1/p5-Test-Class/Makefile
--- /usr/ports/devel/p5-Test-Class/Makefile	Thu Oct 12 10:52:56 2006
+++ /hd1/p5-Test-Class/Makefile	Fri Oct 20 09:25:20 2006
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	Test-Class
-PORTVERSION=	0.18
+PORTVERSION=	0.20
 CATEGORIES=	devel perl5
 MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 MASTER_SITE_SUBDIR=	Test
@@ -15,34 +15,28 @@
 MAINTAINER=	perl@FreeBSD.org
 COMMENT=	Test::Class - Easily create test classes in an xUnit style
 
-BUILD_DEPENDS=	${SITE_PERL}/Test/Builder/Tester.pm:${PORTSDIR}/devel/p5-Test-Simple \
-		${SITE_PERL}/Test/Exception.pm:${PORTSDIR}/devel/p5-Test-Exception \
-		${SITE_PERL}/Devel/Symdump.pm:${PORTSDIR}/devel/p5-Devel-Symdump \
-		${SITE_PERL}/Test/Differences.pm:${PORTSDIR}/devel/p5-Test-Differences
-RUN_DEPENDS=	${BUILD_DEPENDS}
+RUN_DEPENDS=	p5-Devel-Symdump>=2.03:${PORTSDIR}/devel/p5-Devel-Symdump
 
-PERL_CONFIGURE=	yes
+PERL_MODBUILD=	yes
 
 MAN3=		Test::Class.3 \
-    		Test::Class::MethodInfo.3 \
-    		Test::Class::Load.3
+		Test::Class::Load.3 \
+		Test::Class::MethodInfo.3
 
 .include <bsd.port.pre.mk>
 
-##
-## this port requires PERL 5.6.x or later
-##
-.if ${PERL_LEVEL} < 500601
-IGNORE=		requires perl 5.6.x or later. Install lang/perl5 then try again
+.if ${PERL_LEVEL} < 500702
+RUN_DEPENDS+=	p5-Attribute-Handlers>=0.77:${PORTSDIR}/devel/p5-Attribute-Handlers
+.if ${PERL_LEVEL} < 500701
+RUN_DEPENDS+=	p5-Class-ISA>=0.32:${PORTSDIR}/devel/p5-Class-ISA
+.if ${PERL_LEVEL} < 500700
+RUN_DEPENDS+=	p5-Storable>=2.04:${PORTSDIR}/devel/p5-Storable
+.endif
+.endif
 .endif
 
-.if ${PERL_LEVEL} < 500800
-BUILD_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable \
-		${SITE_PERL}/Class/ISA.pm:${PORTSDIR}/devel/p5-Class-ISA \
-		${SITE_PERL}/Attribute/Handlers.pm:${PORTSDIR}/devel/p5-Attribute-Handlers
-RUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable \
-		${SITE_PERL}/Class/ISA.pm:${PORTSDIR}/devel/p5-Class-ISA \
-		${SITE_PERL}/Attribute/Handlers.pm:${PORTSDIR}/devel/p5-Attribute-Handlers
+.if ${PERL_LEVEL} < 500601
+IGNORE=		requires perl 5.6.1 or later. Install lang/perl5.8 then try again
 .endif
 
 .include <bsd.port.post.mk>
diff -ruN --exclude=CVS /usr/ports/devel/p5-Test-Class/distinfo /hd1/p5-Test-Class/distinfo
--- /usr/ports/devel/p5-Test-Class/distinfo	Thu Oct 12 10:52:56 2006
+++ /hd1/p5-Test-Class/distinfo	Fri Oct 20 08:56:33 2006
@@ -1,3 +1,3 @@
-MD5 (Test-Class-0.18.tar.gz) = a6dfa503937de152396b3c227f409caa
-SHA256 (Test-Class-0.18.tar.gz) = 5d7b0c3f2f89359c4ceb917519b59a8980ea6496651dec91710b0ab9f916c4b9
-SIZE (Test-Class-0.18.tar.gz) = 44644
+MD5 (Test-Class-0.20.tar.gz) = 66a96dd9acfc2256b54012a3487ccf87
+SHA256 (Test-Class-0.20.tar.gz) = 5132bcd47533a26e01623431a7b0b483dbbf12f4d29a66980a5e42f110ab2441
+SIZE (Test-Class-0.20.tar.gz) = 45869
diff -ruN --exclude=CVS /usr/ports/devel/p5-Test-Class/pkg-plist /hd1/p5-Test-Class/pkg-plist
--- /usr/ports/devel/p5-Test-Class/pkg-plist	Mon Oct  2 09:24:31 2006
+++ /hd1/p5-Test-Class/pkg-plist	Fri Oct 20 09:20:37 2006
@@ -1,7 +1,6 @@
-%%SITE_PERL%%/mach/auto/Test/Class/.packlist
+@comment $FreeBSD$
 %%SITE_PERL%%/Test/Class.pm
-%%SITE_PERL%%/Test/Class/MethodInfo.pm
 %%SITE_PERL%%/Test/Class/Load.pm
-@dirrm %%SITE_PERL%%/Test/Class
-@dirrm %%SITE_PERL%%/mach/auto/Test/Class
+%%SITE_PERL%%/Test/Class/MethodInfo.pm
+@dirrmtry %%SITE_PERL%%/Test/Class
 @dirrmtry %%SITE_PERL%%/Test
--- p5-Test-Class-0.20.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->perl 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Fri Oct 20 01:30:28 UTC 2006 
Responsible-Changed-Why:  
Over to maintainer 

http://www.freebsd.org/cgi/query-pr.cgi?pr=104592 
Responsible-Changed-From-To: perl->clsung 
Responsible-Changed-By: clsung 
Responsible-Changed-When: Fri Oct 20 02:50:12 UTC 2006 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=104592 
State-Changed-From-To: open->closed 
State-Changed-By: clsung 
State-Changed-When: Tue Oct 31 01:53:18 UTC 2006 
State-Changed-Why:  
Committed. Thank You. 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/104592: commit references a PR
Date: Tue, 31 Oct 2006 01:53:16 +0000 (UTC)

 clsung      2006-10-31 01:53:11 UTC
 
   FreeBSD ports repository
 
   Modified files:
     devel/p5-Test-Class  Makefile distinfo pkg-plist 
   Log:
   - Update to 0.20
   
   PR:             ports/104592
   Submitted by:   Jin-Shan Tseng <tjs_AT_cdpa dot nsysu dot edu dot tw>
   
   Revision  Changes    Path
   1.17      +15 -21    ports/devel/p5-Test-Class/Makefile
   1.12      +3 -3      ports/devel/p5-Test-Class/distinfo
   1.6       +3 -4      ports/devel/p5-Test-Class/pkg-plist
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
