svn commit: r312318 - in head/devel: . p5-Test-Filename
Jun Kuriyama
kuriyama at FreeBSD.org
Sat Feb 16 02:32:15 UTC 2013
Author: kuriyama
Date: Sat Feb 16 02:32:13 2013
New Revision: 312318
URL: http://svnweb.freebsd.org/changeset/ports/312318
Log:
Portable filename comparison.
Many cross-platform test failures -- particularly on Win32 -- are due
to hard-coded file paths being used in comparison tests.
This simple module provides some handy functions to convert all those
path separators automatically so filename tests will just DWIM.
WWW: http://search.cpan.org/dist/Test-Filename/
Added:
head/devel/p5-Test-Filename/
head/devel/p5-Test-Filename/Makefile (contents, props changed)
head/devel/p5-Test-Filename/distinfo (contents, props changed)
head/devel/p5-Test-Filename/pkg-descr (contents, props changed)
head/devel/p5-Test-Filename/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Feb 16 01:40:00 2013 (r312317)
+++ head/devel/Makefile Sat Feb 16 02:32:13 2013 (r312318)
@@ -2720,6 +2720,7 @@
SUBDIR += p5-Test-File
SUBDIR += p5-Test-File-Contents
SUBDIR += p5-Test-File-ShareDir
+ SUBDIR += p5-Test-Filename
SUBDIR += p5-Test-Fixme
SUBDIR += p5-Test-Fixture-DBIC-Schema
SUBDIR += p5-Test-Group
Added: head/devel/p5-Test-Filename/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Test-Filename/Makefile Sat Feb 16 02:32:13 2013 (r312318)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME= Test-Filename
+PORTVERSION= 0.03
+CATEGORIES= devel perl5
+MASTER_SITES= CPAN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= kuriyama at FreeBSD.org
+COMMENT= Perl extension for portable filename comparison
+
+RUN_DEPENDS= \
+ p5-Path-Tiny>0:${PORTSDIR}/devel/p5-Path-Tiny
+BUILD_DEPENDS= ${RUN_DEPENDS}
+TEST_DEPENDS= \
+ p5-Test-Tester>0:${PORTSDIR}/devel/p5-Test-Tester
+
+PERL_CONFIGURE= yes
+
+MAN3= Test::Filename.3
+
+.include <bsd.port.mk>
Added: head/devel/p5-Test-Filename/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Test-Filename/distinfo Sat Feb 16 02:32:13 2013 (r312318)
@@ -0,0 +1,2 @@
+SHA256 (Test-Filename-0.03.tar.gz) = 6a450cc4c6281ed1129f32a1c0741f228967feda2e32a2915ff621c36525fcbe
+SIZE (Test-Filename-0.03.tar.gz) = 10757
Added: head/devel/p5-Test-Filename/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Test-Filename/pkg-descr Sat Feb 16 02:32:13 2013 (r312318)
@@ -0,0 +1,9 @@
+Portable filename comparison.
+
+Many cross-platform test failures -- particularly on Win32 -- are due
+to hard-coded file paths being used in comparison tests.
+
+This simple module provides some handy functions to convert all those
+path separators automatically so filename tests will just DWIM.
+
+WWW: http://search.cpan.org/dist/Test-Filename/
Added: head/devel/p5-Test-Filename/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Test-Filename/pkg-plist Sat Feb 16 02:32:13 2013 (r312318)
@@ -0,0 +1,5 @@
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Filename/.packlist
+%%SITE_PERL%%/Test/Filename.pm
+ at dirrmtry %%SITE_PERL%%/Test
+ at dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Filename
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test
More information about the svn-ports-head
mailing list