From aaron@moondance.itsy-bitsy.net  Fri Jun 16 10:57:21 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 805CA16A47A
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 16 Jun 2006 10:57:21 +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 DC71E43D58
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 16 Jun 2006 10:57:20 +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 5A3F022E1B5; Fri, 16 Jun 2006 10:57:20 +0000 (UTC)
Received: from unknown (HELO mail.itsy-bitsy.net) (63.231.83.246)
  by mpls-pop-14.inet.qwest.net with SMTP; 16 Jun 2006 10:57:20 -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 1FrC0R-000JAr-Kz; Fri, 16 Jun 2006 04:56:51 -0600
Received: (from aaron@localhost)
	by moondance.itsy-bitsy.net (8.13.3/8.13.3/Submit) id k5GAumlJ073708;
	Fri, 16 Jun 2006 04:56:48 -0600 (MDT)
	(envelope-from aaron)
Message-Id: <200606161056.k5GAumlJ073708@moondance.itsy-bitsy.net>
Date: Fri, 16 Jun 2006 04:56:48 -0600 (MDT)
From: "Aaron Dalton" <aaron@freebsd.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc: ports@rbt.ca
Subject: [PATCH] www/p5-MasonX-Interp-WithCallbacks: update to 1.15
X-Send-Pr-Version: 3.113
X-GNATS-Notify: ports@rbt.ca

>Number:         99021
>Category:       ports
>Synopsis:       [PATCH] www/p5-MasonX-Interp-WithCallbacks: update to 1.15
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    aaron
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jun 16 11:00:34 GMT 2006
>Closed-Date:    Fri Jun 16 12:55:38 GMT 2006
>Last-Modified:  Fri Jun 16 12:55:38 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
>Description:
- Update to 1.15
- Restrict to Perl 5.8+ due to dependency upon devel/p5-Exception-Class

Port maintainer (ports@rbt.ca) is cc'd.

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

--- p5-MasonX-Interp-WithCallbacks-1.15.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/www/p5-MasonX-Interp-WithCallbacks/Makefile,v
retrieving revision 1.2
diff -u -u -r1.2 Makefile
--- Makefile	15 Oct 2005 18:34:25 -0000	1.2
+++ Makefile	16 Jun 2006 10:56:50 -0000
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	MasonX-Interp-WithCallbacks
-PORTVERSION=	1.13
+PORTVERSION=	1.15
 CATEGORIES=	www perl5
 MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 MASTER_SITE_SUBDIR=	MasonX/DWHEELER
@@ -23,4 +23,10 @@
 
 MAN3=		MasonX::Interp::WithCallbacks.3
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${PERL_LEVEL} < 500800 # inherited from devel/p5-Exception-Class
+IGNORE=	requires at least Perl 5.8.  Please install lang/perl5.8 and try again
+.endif
+
+.include <bsd.port.post.mk>
Index: distinfo
===================================================================
RCS file: /home/pcvs/ports/www/p5-MasonX-Interp-WithCallbacks/distinfo,v
retrieving revision 1.3
diff -u -u -r1.3 distinfo
--- distinfo	24 Jan 2006 03:13:54 -0000	1.3
+++ distinfo	16 Jun 2006 10:56:50 -0000
@@ -1,3 +1,3 @@
-MD5 (MasonX-Interp-WithCallbacks-1.13.tar.gz) = cd0b2a49683d4c67fb2aa44dadedc42f
-SHA256 (MasonX-Interp-WithCallbacks-1.13.tar.gz) = b102d978f2568d1d634bb72e01caac6bb6e4682dc12bcf7b3575ea5d4e9feefa
-SIZE (MasonX-Interp-WithCallbacks-1.13.tar.gz) = 24509
+MD5 (MasonX-Interp-WithCallbacks-1.15.tar.gz) = c99b6cc8f18d7998351362e9d5e37ebf
+SHA256 (MasonX-Interp-WithCallbacks-1.15.tar.gz) = bc549ec1c30c00d9dd54cdc6222165d0f910e6190910437419ee859a49ebf264
+SIZE (MasonX-Interp-WithCallbacks-1.15.tar.gz) = 25362
--- p5-MasonX-Interp-WithCallbacks-1.15.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->aaron 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Fri Jun 16 11:04:13 UTC 2006 
Responsible-Changed-Why:  
Submitter has GNATS access 

http://www.freebsd.org/cgi/query-pr.cgi?pr=99021 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Fri Jun 16 11:04:22 UTC 2006 
State-Changed-Why:  
Awaiting maintainers feedback 

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

From: Rod Taylor <ports@rbt.ca>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/99021: [PATCH] www/p5-MasonX-Interp-WithCallbacks:
	update to 1.15
Date: Fri, 16 Jun 2006 08:48:16 -0400

 Please apply.
 
 On Fri, 2006-06-16 at 11:04 +0000, Edwin Groothuis wrote:
 > Maintainer of www/p5-MasonX-Interp-WithCallbacks,
 > 
 > Please note that PR ports/99021 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/99021
 > 
 
State-Changed-From-To: feedback->closed 
State-Changed-By: aaron 
State-Changed-When: Fri Jun 16 12:55:37 UTC 2006 
State-Changed-Why:  
Committed. Thanks! 

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