Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 31 May 2006 16:22:03 -0600 (MDT)
From:      "Aaron Dalton" <aaron@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/98244: Update Port: devel/p5-DateTime-Format-Builder 0.7806->0.7807
Message-ID:  <200605312222.k4VMM3J4088134@moondance.itsy-bitsy.net>
Resent-Message-ID: <200605312230.k4VMUHEF084341@freefall.freebsd.org>

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

>Number:         98244
>Category:       ports
>Synopsis:       Update Port: devel/p5-DateTime-Format-Builder 0.7806->0.7807
>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:30:16 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.7806 to v0.7807
- Update pkg-plist to respect NOPORTDOCS
- Restrict to Perl 5.6+ due to dependencies (Module::Build mainly)

version: 0.7807
date:    05 29 2006
changes:
    - Fix a test failure in on_fail_regex.t on Win32 (bug in the test 
code).  Reported by Ben Thul.
>How-To-Repeat:
	
>Fix:

	

--- submission.txt begins here ---
? submission.txt
Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/devel/p5-DateTime-Format-Builder/Makefile,v
retrieving revision 1.12
diff -u -r1.12 Makefile
--- Makefile	11 Jun 2005 16:12:44 -0000	1.12
+++ Makefile	31 May 2006 22:16:48 -0000
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=	DateTime-Format-Builder
-PORTVERSION=	0.78.06
-PORTREVISION=	1
+PORTVERSION=	0.78.07
 CATEGORIES=	devel perl5
 MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 MASTER_SITE_SUBDIR=	DateTime
@@ -19,30 +18,37 @@
 
 BUILD_DEPENDS=	${RUN_DEPENDS}
 RUN_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/Params/Validate.pm:${PORTSDIR}/devel/p5-Params-Validate \
-		${SITE_PERL}/${PERL_ARCH}/File/Spec.pm:${PORTSDIR}/devel/p5-PathTools \
+		${SITE_PERL}/Class/Factory/Util.pm:${PORTSDIR}/devel/p5-Class-Factory-Util \
 		${SITE_PERL}/${PERL_ARCH}/DateTime.pm:${PORTSDIR}/devel/p5-DateTime \
 		${SITE_PERL}/DateTime/Format/Strptime.pm:${PORTSDIR}/devel/p5-DateTime-Format-Strptime
 
 PERL_MODBUILD=	yes
 
-MAN3=		DateTime::Format::Builder.3 DateTime::Format::Builder::Parser.3 \
-		DateTime::Format::Builder::Parser::Dispatch.3 \
-		DateTime::Format::Builder::Parser::Regex.3 \
-		DateTime::Format::Builder::Parser::Quick.3 \
-		DateTime::Format::Builder::Parser::Strptime.3 \
-		DateTime::Format::Builder::Parser::generic.3 \
-		DateTime::Format::Builder::Tutorial.3
+MAN3=	DateTime::Format::Builder.3 \
+	DateTime::Format::Builder::Parser.3 \
+	DateTime::Format::Builder::Parser::Dispatch.3 \
+	DateTime::Format::Builder::Parser::Quick.3 \
+	DateTime::Format::Builder::Parser::Regex.3 \
+	DateTime::Format::Builder::Parser::Strptime.3 \
+	DateTime::Format::Builder::Parser::generic.3 \
+	DateTime::Format::Builder::Tutorial.3
 
 .if !defined(NOPORTDOCS)
-PORTDOCS=	CREDITS Changes README
+DOCS=	CREDITS Changes README
 
 post-install:
 	@${MKDIR} ${DOCSDIR}
-	@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
+	@${INSTALL_DATA} ${DOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
 	@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
 	@${MKDIR} ${EXAMPLESDIR}
 	@${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
 	@${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}."
 .endif
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.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-Format-Builder/distinfo,v
retrieving revision 1.11
diff -u -r1.11 distinfo
--- distinfo	14 Nov 2005 14:15:58 -0000	1.11
+++ distinfo	31 May 2006 22:16:48 -0000
@@ -1,3 +1,3 @@
-MD5 (DateTime-Format-Builder-0.7806.tar.gz) = 31f030e6f03cd95ebb343f2f856bf704
-SHA256 (DateTime-Format-Builder-0.7806.tar.gz) = fe6052e2c1233ef8eabbd2285488e873d3359947f960a5075e8668b218b48cc0
-SIZE (DateTime-Format-Builder-0.7806.tar.gz) = 48232
+MD5 (DateTime-Format-Builder-0.7807.tar.gz) = 4f6ee670cab944db0492e70ca8df3be3
+SHA256 (DateTime-Format-Builder-0.7807.tar.gz) = b02dc993aa58e87e668bcf45172c5b9014b06bc5dcdc5799dce65ec4737ed84c
+SIZE (DateTime-Format-Builder-0.7807.tar.gz) = 48307
Index: pkg-descr
===================================================================
RCS file: /home/pcvs/ports/devel/p5-DateTime-Format-Builder/pkg-descr,v
retrieving revision 1.1
diff -u -r1.1 pkg-descr
--- pkg-descr	6 Jul 2003 12:59:25 -0000	1.1
+++ pkg-descr	31 May 2006 22:16:48 -0000
@@ -9,3 +9,4 @@
 expected. 
 
 WWW: http://datetime.perl.org/
+Author: Dave Rolsky <autarch@urth.org>
Index: pkg-plist
===================================================================
RCS file: /home/pcvs/ports/devel/p5-DateTime-Format-Builder/pkg-plist,v
retrieving revision 1.5
diff -u -r1.5 pkg-plist
--- pkg-plist	22 Jan 2006 01:47:23 -0000	1.5
+++ pkg-plist	31 May 2006 22:16:48 -0000
@@ -7,6 +7,9 @@
 %%SITE_PERL%%/DateTime/Format/Builder/Parser/Strptime.pm
 %%SITE_PERL%%/DateTime/Format/Builder/Parser/generic.pm
 %%SITE_PERL%%/DateTime/Format/Builder/Tutorial.pod
+%%PORTDOCS%%%%DOCSDIR%%/CREDITS
+%%PORTDOCS%%%%DOCSDIR%%/Changes
+%%PORTDOCS%%%%DOCSDIR%%/README
 %%PORTDOCS%%%%EXAMPLESDIR%%/Apache.pm
 %%PORTDOCS%%%%EXAMPLESDIR%%/Fall.pm
 %%PORTDOCS%%%%EXAMPLESDIR%%/ICal.pm
@@ -15,7 +18,8 @@
 %%PORTDOCS%%%%EXAMPLESDIR%%/Tivoli.pm
 %%PORTDOCS%%%%EXAMPLESDIR%%/W3CDTF.pm
 %%PORTDOCS%%@dirrm %%EXAMPLESDIR%%
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
 @dirrm %%SITE_PERL%%/DateTime/Format/Builder/Parser
-@dirrm %%SITE_PERL%%/DateTime/Format/Builder
+@dirrmtry %%SITE_PERL%%/DateTime/Format/Builder
 @dirrmtry %%SITE_PERL%%/DateTime/Format
 @dirrmtry %%SITE_PERL%%/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?200605312222.k4VMM3J4088134>