svn commit: r339787 - in head/devel: . p5-Test-Time

Jun Kuriyama kuriyama at FreeBSD.org
Wed Jan 15 15:31:04 UTC 2014


Author: kuriyama
Date: Wed Jan 15 15:31:02 2014
New Revision: 339787
URL: http://svnweb.freebsd.org/changeset/ports/339787
QAT: https://qat.redports.org/buildarchive/r339787/

Log:
  Test::Time can be used to test modules that deal with time.  Once you
  use this module, all references to time and sleep will be
  internalized.  You can set custom time by passing time => number after
  the use statement.
  
  WWW: http://search.cpan.org/dist/Test-Time/

Added:
  head/devel/p5-Test-Time/
  head/devel/p5-Test-Time/Makefile   (contents, props changed)
  head/devel/p5-Test-Time/distinfo   (contents, props changed)
  head/devel/p5-Test-Time/pkg-descr   (contents, props changed)
  head/devel/p5-Test-Time/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Jan 15 15:27:45 2014	(r339786)
+++ head/devel/Makefile	Wed Jan 15 15:31:02 2014	(r339787)
@@ -2880,6 +2880,7 @@
     SUBDIR += p5-Test-Taint
     SUBDIR += p5-Test-TempDir
     SUBDIR += p5-Test-Tester
+    SUBDIR += p5-Test-Time
     SUBDIR += p5-Test-Timer
     SUBDIR += p5-Test-TinyMocker
     SUBDIR += p5-Test-Trap

Added: head/devel/p5-Test-Time/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Time/Makefile	Wed Jan 15 15:31:02 2014	(r339787)
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+PORTNAME=	Test-Time
+PORTVERSION=	0.04
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	kuriyama at FreeBSD.org
+COMMENT=	Perl extension to override time()/sleep() core functions for testing
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/devel/p5-Test-Time/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Time/distinfo	Wed Jan 15 15:31:02 2014	(r339787)
@@ -0,0 +1,2 @@
+SHA256 (Test-Time-0.04.tar.gz) = d8c1bc57f9767ae8122fc4ab873bd991cb9ea8e9422c66399acb66770fa5c2ea
+SIZE (Test-Time-0.04.tar.gz) = 45534

Added: head/devel/p5-Test-Time/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Time/pkg-descr	Wed Jan 15 15:31:02 2014	(r339787)
@@ -0,0 +1,6 @@
+Test::Time can be used to test modules that deal with time.  Once you
+use this module, all references to time and sleep will be
+internalized.  You can set custom time by passing time => number after
+the use statement.
+
+WWW: http://search.cpan.org/dist/Test-Time/

Added: head/devel/p5-Test-Time/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Time/pkg-plist	Wed Jan 15 15:31:02 2014	(r339787)
@@ -0,0 +1,6 @@
+%%PERL5_MAN3%%/Test::Time.3.gz
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Time/.packlist
+%%SITE_PERL%%/Test/Time.pm
+ at dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Time
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test
+ at dirrmtry %%SITE_PERL%%/Test


More information about the svn-ports-all mailing list