From sunpoet@sunpoet.net  Sat May 19 18:46:01 2012
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 7F62E106566C
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 19 May 2012 18:46:01 +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 0A12C8FC16
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 19 May 2012 18:46:01 +0000 (UTC)
Received: by sunpoet.net (Postfix, from userid 1000)
	id 3VvwDP4HrCzBlm; Sun, 20 May 2012 02:45:25 +0800 (CST)
Message-Id: <3VvwDP4HrCzBlm@sunpoet.net>
Date: Sun, 20 May 2012 02:45:25 +0800 (CST)
From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc: snowfly@yuntech.edu.tw
Subject: [PATCH] databases/p5-DBD-Multi: update to 0.16
X-Send-Pr-Version: 3.113
X-GNATS-Notify: snowfly@yuntech.edu.tw

>Number:         168144
>Category:       ports
>Synopsis:       [PATCH] databases/p5-DBD-Multi: update to 0.16
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    sunpoet
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sat May 19 18:50:06 UTC 2012
>Closed-Date:    Mon May 28 16:51:31 UTC 2012
>Last-Modified:  Mon May 28 16:51:31 UTC 2012
>Originator:     Sunpoet Po-Chuan Hsieh
>Release:        FreeBSD 9.0-STABLE amd64
>Organization:
The FreeBSD Project
>Environment:
System: FreeBSD bonjour.sunpoet.net 9.0-STABLE FreeBSD 9.0-STABLE #0: Sun May  6 00:46:29 CST
>Description:
- Update to 0.16
- Add LICENSE
- Use TEST_DEPENDS for test-only dependencies

Changes:	http://search.cpan.org/dist/DBD-Multi/Changes

Port maintainer (snowfly@yuntech.edu.tw) is cc'd.

Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: CVS)
>How-To-Repeat:
>Fix:

--- p5-DBD-Multi-0.16.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/databases/p5-DBD-Multi/Makefile,v
retrieving revision 1.6
diff -u -u -r1.6 Makefile
--- Makefile	17 Sep 2011 06:48:47 -0000	1.6
+++ Makefile	19 May 2012 18:45:28 -0000
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=	DBD-Multi
-PORTVERSION=	0.14
-PORTREVISION=	1
+PORTVERSION=	0.16
 CATEGORIES=	databases perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-
@@ -15,22 +14,19 @@
 MAINTAINER=	snowfly@yuntech.edu.tw
 COMMENT=	Manage Multiple Data Sources with Failover and Load Balancing
 
-BUILD_DEPENDS=	${SITE_PERL}/Test/Pod/Coverage.pm:${PORTSDIR}/devel/p5-Test-Pod-Coverage \
-		${SITE_PERL}/Test/Pod.pm:${PORTSDIR}/devel/p5-Test-Pod \
-		${SITE_PERL}/Pod/Simple.pm:${PORTSDIR}/textproc/p5-Pod-Simple \
-		${SITE_PERL}/${PERL_ARCH}/DBD/SQLite.pm:${PORTSDIR}/databases/p5-DBD-SQLite \
-		${SITE_PERL}/Test/Exception.pm:${PORTSDIR}/devel/p5-Test-Exception \
-		${SITE_PERL}/Class/Accessor/Fast.pm:${PORTSDIR}/devel/p5-Class-Accessor \
-		${SITE_PERL}/Sys/SigAction.pm:${PORTSDIR}/devel/p5-Sys-SigAction \
-		${SITE_PERL}/${PERL_ARCH}/Bundle/DBI.pm:${PORTSDIR}/databases/p5-DBI
-RUN_DEPENDS+=	${SITE_PERL}/Test/Pod/Coverage.pm:${PORTSDIR}/devel/p5-Test-Pod-Coverage \
-		${SITE_PERL}/Test/Pod.pm:${PORTSDIR}/devel/p5-Test-Pod \
-		${SITE_PERL}/Pod/Simple.pm:${PORTSDIR}/textproc/p5-Pod-Simple \
-		${SITE_PERL}/${PERL_ARCH}/DBD/SQLite.pm:${PORTSDIR}/databases/p5-DBD-SQLite \
-		${SITE_PERL}/Test/Exception.pm:${PORTSDIR}/devel/p5-Test-Exception \
-		${SITE_PERL}/Class/Accessor/Fast.pm:${PORTSDIR}/devel/p5-Class-Accessor \
-		${SITE_PERL}/Sys/SigAction.pm:${PORTSDIR}/devel/p5-Sys-SigAction \
-		${SITE_PERL}/${PERL_ARCH}/Bundle/DBI.pm:${PORTSDIR}/databases/p5-DBI
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+BUILD_DEPENDS=	p5-Class-Accessor>=0.19:${PORTSDIR}/devel/p5-Class-Accessor \
+		p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \
+		p5-Sys-SigAction>=0.10:${PORTSDIR}/devel/p5-Sys-SigAction
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+TEST_DEPENDS=	p5-DBD-SQLite>=1.09:${PORTSDIR}/databases/p5-DBD-SQLite \
+		p5-Pod-Simple>=0:${PORTSDIR}/textproc/p5-Pod-Simple \
+		p5-Test-Exception>=0.21:${PORTSDIR}/devel/p5-Test-Exception \
+		p5-Test-Pod>=1.14:${PORTSDIR}/devel/p5-Test-Pod \
+		p5-Test-Pod-Coverage>=1.04:${PORTSDIR}/devel/p5-Test-Pod-Coverage
 
 PERL_CONFIGURE=	yes
 
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/databases/p5-DBD-Multi/distinfo,v
retrieving revision 1.4
diff -u -u -r1.4 distinfo
--- distinfo	20 Mar 2011 12:47:27 -0000	1.4
+++ distinfo	19 May 2012 18:45:28 -0000
@@ -1,2 +1,2 @@
-SHA256 (DBD-Multi-0.14.tar.gz) = e80de075b24b7d28e1f72690fb92d822419bed8f8398d83166e998dedb5e86a5
-SIZE (DBD-Multi-0.14.tar.gz) = 19656
+SHA256 (DBD-Multi-0.16.tar.gz) = 2a219999669c37bbb2b04ef6f9257dd156d0cbab12b122be8de1a4f6911315b2
+SIZE (DBD-Multi-0.16.tar.gz) = 19971
--- p5-DBD-Multi-0.16.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->perl 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sat May 19 18:51:06 UTC 2012 
Responsible-Changed-Why:  
perl@ wants this port PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=168144 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Sat May 19 18:51:13 UTC 2012 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

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

From: Edwin Groothuis <edwin@FreeBSD.org>
To: snowfly@yuntech.edu.tw
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/168144: [PATCH] databases/p5-DBD-Multi: update to 0.16
Date: Sat, 19 May 2012 18:51:10 UT

 Maintainer of databases/p5-DBD-Multi,
 
 Please note that PR ports/168144 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/168144
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org
Responsible-Changed-From-To: perl->sunpoet 
Responsible-Changed-By: sunpoet 
Responsible-Changed-When: Sat May 19 20:34:30 UTC 2012 
Responsible-Changed-Why:  
I'll take it. 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/168144: commit references a PR
Date: Mon, 28 May 2012 16:48:42 +0000 (UTC)

 sunpoet     2012-05-28 16:48:28 UTC
 
   FreeBSD ports repository
 
   Modified files:
     databases/p5-DBD-Multi Makefile distinfo 
   Log:
   - Update to 0.16
   - Add LICENSE
   - Use TEST_DEPENDS for test-only dependencies
   
   Changes:        http://search.cpan.org/dist/DBD-Multi/Changes
   PR:             ports/168144
   Submitted by:   sunpoet (myself)
   Approved by:    snowfly <snowfly@yuntech.edu.tw> (maintainer)
   
   Revision  Changes    Path
   1.7       +14 -18    ports/databases/p5-DBD-Multi/Makefile
   1.5       +2 -2      ports/databases/p5-DBD-Multi/distinfo
 _______________________________________________
 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"
 
State-Changed-From-To: feedback->closed 
State-Changed-By: sunpoet 
State-Changed-When: Mon May 28 16:51:29 UTC 2012 
State-Changed-Why:  
Committed. Thanks! 

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