svn commit: r419012 - in head/devel: . p5-Test-Roo

Kurt Jaeger pi at FreeBSD.org
Sun Jul 24 16:53:32 UTC 2016


Author: pi
Date: Sun Jul 24 16:53:31 2016
New Revision: 419012
URL: https://svnweb.freebsd.org/changeset/ports/419012

Log:
  New port: devel/p5-Test-Roo
  
  This module allows you to compose Test::More tests from roles.
  It is inspired by the excellent Test::Routine module,
  but uses Moo instead of Moose.
  This gives most of the benefits
  without the need for Moose as a test dependency.
  
  WWW: http://search.cpan.org/dist/Test-Roo/
  
  PR:		211337
  Submitted by:	Henk van Oers <hvo.pm at xs4all.nl>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jul 24 16:49:23 2016	(r419011)
+++ head/devel/Makefile	Sun Jul 24 16:53:31 2016	(r419012)
@@ -3294,6 +3294,7 @@
     SUBDIR += p5-Test-Requires
     SUBDIR += p5-Test-Requires-Git
     SUBDIR += p5-Test-RequiresInternet
+    SUBDIR += p5-Test-Roo
     SUBDIR += p5-Test-Script
     SUBDIR += p5-Test-Script-Run
     SUBDIR += p5-Test-SharedFork

Added: head/devel/p5-Test-Roo/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Roo/Makefile	Sun Jul 24 16:53:31 2016	(r419012)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	Test-Roo
+PORTVERSION=	1.004
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	hvo.pm at xs4all.nl
+COMMENT=	Composable, reusable tests with roles and Moo
+
+LICENSE=	APACHE20
+
+BUILD_DEPENDS=	p5-Moo>=0:devel/p5-Moo
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+NO_ARCH=	yes
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/devel/p5-Test-Roo/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Roo/distinfo	Sun Jul 24 16:53:31 2016	(r419012)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1469366683
+SHA256 (Test-Roo-1.004.tar.gz) = 21129a3cecb507b00948e16cf15fcde5dc4db235aba84afd7f47d22013a9ded6
+SIZE (Test-Roo-1.004.tar.gz) = 29662

Added: head/devel/p5-Test-Roo/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Roo/pkg-descr	Sun Jul 24 16:53:31 2016	(r419012)
@@ -0,0 +1,7 @@
+This module allows you to compose Test::More tests from roles.
+It is inspired by the excellent Test::Routine module,
+but uses Moo instead of Moose.
+This gives most of the benefits
+without the need for Moose as a test dependency.
+
+WWW: http://search.cpan.org/dist/Test-Roo/

Added: head/devel/p5-Test-Roo/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Roo/pkg-plist	Sun Jul 24 16:53:31 2016	(r419012)
@@ -0,0 +1,8 @@
+%%SITE_PERL%%/Test/Roo.pm
+%%SITE_PERL%%/Test/Roo/Class.pm
+%%SITE_PERL%%/Test/Roo/Cookbook.pm
+%%SITE_PERL%%/Test/Roo/Role.pm
+%%PERL5_MAN3%%/Test::Roo.3.gz
+%%PERL5_MAN3%%/Test::Roo::Class.3.gz
+%%PERL5_MAN3%%/Test::Roo::Cookbook.3.gz
+%%PERL5_MAN3%%/Test::Roo::Role.3.gz


More information about the svn-ports-all mailing list