Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 31 May 2006 16:01:50 -0600 (MDT)
From:      "Aaron Dalton" <aaron@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/98243: Update Port: devel/p5-DateTime 0.30->0.31
Message-ID:  <200605312201.k4VM1ocI057288@moondance.itsy-bitsy.net>
Resent-Message-ID: <200605312210.k4VMACug083530@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         98243
>Category:       ports
>Synopsis:       Update Port: devel/p5-DateTime 0.30->0.31
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed May 31 22:10:12 GMT 2006
>Closed-Date:
>Last-Modified:
>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:
- Update from v0.30 to v0.31
- Update pkg-plist to respect NOPORTDOCS
- Restrict to Perl 5.6+ due to dependencies (Module::Build mainly)
  - Some errors in 'make test' under Perl 5.6 have been reported to vendor

0.31    2006-05-21

[ ENHANCEMENTS ]

- Switched some uses of die() to Carp::croak(), where
appropriate. This should make error messages more useful in many
cases. Based on a suggestion by Max Maischein. See RT tickets 11692 &
18728.

[ BUG FIXES ]

- Removed all uses of UNIVERSAL::isa and UNIVERSAL::can.

- Tweaked 20infinite.t test to give more useful output for some
failures, though it probably doesn't fix them. See RT 17390.
>How-To-Repeat:
	
>Fix:

	

--- submission.txt begins here ---
? submission.txt
Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/devel/p5-DateTime/Makefile,v
retrieving revision 1.25
diff -u -r1.25 Makefile
--- Makefile	23 Dec 2005 16:27:43 -0000	1.25
+++ Makefile	31 May 2006 21:53:54 -0000
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	DateTime
-PORTVERSION=	0.30
+PORTVERSION=	0.31
 CATEGORIES=	devel perl5
 MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 MASTER_SITE_SUBDIR=	DateTime
@@ -15,8 +15,7 @@
 MAINTAINER=	mat@FreeBSD.org
 COMMENT=	A date and time object
 
-RUN_DEPENDS=	${SITE_PERL}/Class/Factory/Util.pm:${PORTSDIR}/devel/p5-Class-Factory-Util \
-		${SITE_PERL}/${PERL_ARCH}/Params/Validate.pm:${PORTSDIR}/devel/p5-Params-Validate \
+RUN_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/Params/Validate.pm:${PORTSDIR}/devel/p5-Params-Validate \
 		${SITE_PERL}/DateTime/TimeZone.pm:${PORTSDIR}/devel/p5-DateTime-TimeZone \
 		${SITE_PERL}/DateTime/Locale.pm:${PORTSDIR}/devel/p5-DateTime-Locale \
 		${SITE_PERL}/Time/Local.pm:${PORTSDIR}/devel/p5-Time-Local
@@ -24,16 +23,29 @@
 
 PERL_CONFIGURE=	yes
 
-MAN3=		DateTime.3 DateTime::Duration.3 \
-		DateTime::Infinite.3 DateTime::LeapSecond.3
+MAN3=		DateTime.3 \
+		DateTime::Duration.3 \
+		DateTime::Helpers.3 \
+		DateTime::Infinite.3 \
+		DateTime::LeapSecond.3
 
 .if !defined(NOPORTDOCS)
-PORTDOCS=	CREDITS Changes TODO
+DOCS=	CREDITS Changes TODO
 
 post-install:
 	@${MKDIR} ${DOCSDIR}
-	@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
+	@${INSTALL_DATA} ${DOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
 	@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
 .endif
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${PERL_LEVEL} < 500800
+RUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Scalar/Util.pm:${PORTSDIR}/lang/p5-Scalar-List-Utils
+.endif
+
+.if ${PERL_LEVEL} < 500600
+IGNORE=	requires at least Perl 5.6 due to dependencies.  Please install lang/perl5.8 and try again
+.endif
+
+.include <bsd.port.post.mk>
Index: distinfo
===================================================================
RCS file: /home/pcvs/ports/devel/p5-DateTime/distinfo,v
retrieving revision 1.26
diff -u -r1.26 distinfo
--- distinfo	23 Dec 2005 16:27:43 -0000	1.26
+++ distinfo	31 May 2006 21:53:54 -0000
@@ -1,3 +1,3 @@
-MD5 (DateTime-0.30.tar.gz) = 18cf4a7cece737e0a153c6585320730f
-SHA256 (DateTime-0.30.tar.gz) = 06cb111609a9d579a4620e9540b34fdac6e3825d28e08e0b0ba43321582cd7a2
-SIZE (DateTime-0.30.tar.gz) = 88484
+MD5 (DateTime-0.31.tar.gz) = f5142045e7e68c02a310405e994f8233
+SHA256 (DateTime-0.31.tar.gz) = ee4752b9c7c55fec026990b09948b3fbca26a22592fff983aedd22058bf9588c
+SIZE (DateTime-0.31.tar.gz) = 89129
Index: pkg-descr
===================================================================
RCS file: /home/pcvs/ports/devel/p5-DateTime/pkg-descr,v
retrieving revision 1.1
diff -u -r1.1 pkg-descr
--- pkg-descr	7 Jun 2003 10:08:40 -0000	1.1
+++ pkg-descr	31 May 2006 21:53:54 -0000
@@ -2,3 +2,4 @@
 part of the Perl DateTime project. For details on this project please see
 
 WWW: http://datetime.perl.org/
+Author: Dave Rolsky <autarch@urth.org>
Index: pkg-plist
===================================================================
RCS file: /home/pcvs/ports/devel/p5-DateTime/pkg-plist,v
retrieving revision 1.7
diff -u -r1.7 pkg-plist
--- pkg-plist	22 Jan 2006 01:47:20 -0000	1.7
+++ pkg-plist	31 May 2006 21:53:54 -0000
@@ -1,6 +1,6 @@
-@comment $FreeBSD: ports/devel/p5-DateTime/pkg-plist,v 1.7 2006/01/22 01:47:20 edwin Exp $
 %%SITE_PERL%%/%%PERL_ARCH%%/DateTime.pm
 %%SITE_PERL%%/%%PERL_ARCH%%/DateTime/Duration.pm
+%%SITE_PERL%%/%%PERL_ARCH%%/DateTime/Helpers.pm
 %%SITE_PERL%%/%%PERL_ARCH%%/DateTime/Infinite.pm
 %%SITE_PERL%%/%%PERL_ARCH%%/DateTime/LeapSecond.pm
 %%SITE_PERL%%/%%PERL_ARCH%%/DateTimePP.pm
@@ -8,5 +8,9 @@
 %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime/.packlist
 %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime/DateTime.bs
 %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime/DateTime.so
+%%PORTDOCS%%%%DOCSDIR%%/CREDITS
+%%PORTDOCS%%%%DOCSDIR%%/Changes
+%%PORTDOCS%%%%DOCSDIR%%/TODO
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
 @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime
 @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/DateTime
--- submission.txt ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200605312201.k4VM1ocI057288>