From sunpoet@sunpoet.net  Thu Sep  8 13:15:02 2011
Return-Path: <sunpoet@sunpoet.net>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 597191065672
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  8 Sep 2011 13:15:02 +0000 (UTC)
	(envelope-from sunpoet@sunpoet.net)
Received: from sunpoet.net (sunpoet.net [220.133.12.240])
	by mx1.freebsd.org (Postfix) with ESMTP id 245D88FC1C
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  8 Sep 2011 13:15:02 +0000 (UTC)
Received: by sunpoet.net (Postfix, from userid 1000)
	id 180175A0E; Thu,  8 Sep 2011 21:14:36 +0800 (CST)
Message-Id: <20110908131436.180175A0E@sunpoet.net>
Date: Thu,  8 Sep 2011 21:14:36 +0800 (CST)
From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc: ychsiao@ychsiao.org
Subject: [PATCH] graphics/p5-Imager-Graph: update to 0.09
X-Send-Pr-Version: 3.113
X-GNATS-Notify: ychsiao@ychsiao.org

>Number:         160554
>Category:       ports
>Synopsis:       [PATCH] graphics/p5-Imager-Graph: update to 0.09
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    sunpoet
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Sep 08 13:20:08 UTC 2011
>Closed-Date:    Sat Sep 10 09:38:40 UTC 2011
>Last-Modified:  Sat Sep 10 09:40:13 UTC 2011
>Originator:     Sunpoet Po-Chuan Hsieh
>Release:        FreeBSD 8.2-STABLE amd64
>Organization:
The FreeBSD Project
>Environment:
System: FreeBSD bonjour.sunpoet.net 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Jul  9 23:23:51 CST
>Description:
- Update to 0.09

Port maintainer (ychsiao@ychsiao.org) is cc'd.

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

--- p5-Imager-Graph-0.09.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/graphics/p5-Imager-Graph/Makefile,v
retrieving revision 1.8
diff -u -u -r1.8 Makefile
--- Makefile	28 Mar 2010 06:37:26 -0000	1.8
+++ Makefile	8 Sep 2011 13:14:52 -0000
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=	Imager-Graph
-PORTVERSION=	0.07
-PORTREVISION=	3
+PORTVERSION=	0.09
 CATEGORIES=	graphics perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-
@@ -15,14 +14,20 @@
 MAINTAINER=	ychsiao@ychsiao.org
 COMMENT=	Perl extension for producing Graphs using the Imager library
 
-BUILD_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/Imager.pm:${PORTSDIR}/graphics/p5-Imager
-RUN_DEPENDS=	${BUILD_DEPENDS}
+BUILD_DEPENDS=	p5-Imager>=0.75:${PORTSDIR}/graphics/p5-Imager
+RUN_DEPENDS=	p5-Imager>=0.75:${PORTSDIR}/graphics/p5-Imager
 
 PERL_CONFIGURE=	yes
 
-MAN3=	Imager::Graph.3 Imager::Graph::Bar.3 Imager::Graph::Column.3 \
-	Imager::Graph::Horizontal.3 Imager::Graph::Line.3 \
-	Imager::Graph::Pie.3 Imager::Graph::StackedColumn.3 \
-	Imager::Graph::Util.3 Imager::Graph::Vertical.3
+MAN3=		Imager::Graph.3 \
+		Imager::Graph::Area.3 \
+		Imager::Graph::Bar.3 \
+		Imager::Graph::Column.3 \
+		Imager::Graph::Horizontal.3 \
+		Imager::Graph::Line.3 \
+		Imager::Graph::Pie.3 \
+		Imager::Graph::StackedColumn.3 \
+		Imager::Graph::Util.3 \
+		Imager::Graph::Vertical.3
 
 .include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/graphics/p5-Imager-Graph/distinfo,v
retrieving revision 1.5
diff -u -u -r1.5 distinfo
--- distinfo	3 Jul 2011 14:11:49 -0000	1.5
+++ distinfo	8 Sep 2011 13:14:52 -0000
@@ -1,2 +1,2 @@
-SHA256 (Imager-Graph-0.07.tar.gz) = 0a04fae1536287158bacc11b61e3ce3cc46f1e9ab255dfd5ef8b266e5a05105e
-SIZE (Imager-Graph-0.07.tar.gz) = 179865
+SHA256 (Imager-Graph-0.09.tar.gz) = 51eeff43347bab423a0fe1b61676640405128569d9536825f0f9970cee948984
+SIZE (Imager-Graph-0.09.tar.gz) = 292253
Index: pkg-plist
===================================================================
RCS file: /home/ncvs/ports/graphics/p5-Imager-Graph/pkg-plist,v
retrieving revision 1.5
diff -u -u -r1.5 pkg-plist
--- pkg-plist	15 Jun 2009 13:52:39 -0000	1.5
+++ pkg-plist	8 Sep 2011 13:14:52 -0000
@@ -1,4 +1,5 @@
 %%SITE_PERL%%/Imager/Graph.pm
+%%SITE_PERL%%/Imager/Graph/Area.pm
 %%SITE_PERL%%/Imager/Graph/Bar.pm
 %%SITE_PERL%%/Imager/Graph/Column.pm
 %%SITE_PERL%%/Imager/Graph/Horizontal.pm
--- p5-Imager-Graph-0.09.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->perl 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Thu Sep 8 13:20:18 UTC 2011 
Responsible-Changed-Why:  
perl@ wants this port PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=160554 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Thu Sep 8 13:20:23 UTC 2011 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

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

From: Edwin Groothuis <edwin@FreeBSD.org>
To: ychsiao@ychsiao.org
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/160554: [PATCH] graphics/p5-Imager-Graph: update to 0.09
Date: Thu, 8 Sep 2011 13:20:21 UT

 Maintainer of graphics/p5-Imager-Graph,
 
 Please note that PR ports/160554 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/160554
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org
Responsible-Changed-From-To: perl->sunpoet 
Responsible-Changed-By: sunpoet 
Responsible-Changed-When: Thu Sep 8 13:38:53 UTC 2011 
Responsible-Changed-Why:  
I'll take it. 

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

From: Yuan-Chung Hsiao <ychsiao@ychsiao.org>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/160554: [PATCH] graphics/p5-Imager-Graph: update to 0.09
Date: Fri, 9 Sep 2011 09:59:37 +0800

 please apply it, thanks!
 * Edwin Groothuis <edwin@FreeBSD.org> [110908 21:21]:
 > Maintainer of graphics/p5-Imager-Graph,
 >
 > Please note that PR ports/160554 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/160554
 >
 > --
 > Edwin Groothuis via the GNATS Auto Assign Tool
 > edwin@FreeBSD.org
State-Changed-From-To: feedback->closed 
State-Changed-By: sunpoet 
State-Changed-When: Sat Sep 10 09:38:39 UTC 2011 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/160554: commit references a PR
Date: Sat, 10 Sep 2011 09:38:39 +0000 (UTC)

 sunpoet     2011-09-10 09:38:24 UTC
 
   FreeBSD ports repository
 
   Modified files:
     graphics/p5-Imager-Graph Makefile distinfo pkg-plist 
   Log:
   - Update to 0.09
   
   Changes:        http://search.cpan.org/dist/Imager-Graph/Changes
   PR:             ports/160554
   Submitted by:   sunpoet (myself)
   Approved by:    Yuan-Chung Hsiao <ychsiao@ychsiao.org> (maintainer)
   
   Revision  Changes    Path
   1.9       +13 -8     ports/graphics/p5-Imager-Graph/Makefile
   1.6       +2 -2      ports/graphics/p5-Imager-Graph/distinfo
   1.6       +1 -0      ports/graphics/p5-Imager-Graph/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:
