diff options
author | miwi <miwi@FreeBSD.org> | 2011-01-30 19:48:09 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2011-01-30 19:48:09 +0800 |
commit | c8b7e4ddd051b0ddeed5132feb3d473145ae3f6c (patch) | |
tree | 3aa501363d9ea6418c8ce5d04b084a3aac8694ff /devel | |
parent | 542cddf5139ec35e9e780fcbb01e23f9dacaed6d (diff) | |
download | freebsd-ports-gnome-c8b7e4ddd051b0ddeed5132feb3d473145ae3f6c.tar.gz freebsd-ports-gnome-c8b7e4ddd051b0ddeed5132feb3d473145ae3f6c.tar.zst freebsd-ports-gnome-c8b7e4ddd051b0ddeed5132feb3d473145ae3f6c.zip |
Lightweight unit testing for Perl.
WWW: http://search.cpan.org/dist/Test-Mini/
PR: ports/154206
Submitted by: Kurt Lidl <kurt.lidl at cello.com>
Feature safe: yes
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/p5-Test-Mini/Makefile | 34 | ||||
-rw-r--r-- | devel/p5-Test-Mini/distinfo | 2 | ||||
-rw-r--r-- | devel/p5-Test-Mini/pkg-descr | 3 | ||||
-rw-r--r-- | devel/p5-Test-Mini/pkg-plist | 19 |
5 files changed, 59 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 69d537661167..9272ae79c69f 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -2282,6 +2282,7 @@ SUBDIR += p5-Test-LongString SUBDIR += p5-Test-Manifest SUBDIR += p5-Test-Memory-Cycle + SUBDIR += p5-Test-Mini SUBDIR += p5-Test-Mock-LWP SUBDIR += p5-Test-MockModule SUBDIR += p5-Test-MockObject diff --git a/devel/p5-Test-Mini/Makefile b/devel/p5-Test-Mini/Makefile new file mode 100644 index 000000000000..084a6773d2a9 --- /dev/null +++ b/devel/p5-Test-Mini/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: p5-Test-Mini +# Date created: 2011-01-13 +# Whom: Kurt Lidl <kurt.lidl@cello.com> +# +# $FreeBSD$ +# + +PORTNAME= Test-Mini +PORTVERSION= v1.1.1 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN/../../authors/id/P/PV/PVANDE +PKGNAMEPREFIX= p5- + +MAINTAINER= kurt.lidl@cello.com +COMMENT= Provides lightweight unit testing framework + +BUILD_DEPENDS= p5-MRO-Compat>=0.10:${PORTSDIR}/devel/p5-MRO-Compat \ + p5-Try-Tiny>=0.04:${PORTSDIR}/lang/p5-Try-Tiny \ + p5-aliased>=0.30:${PORTSDIR}/devel/p5-aliased \ + p5-namespace-clean>=0.14:${PORTSDIR}/devel/p5-namespace-clean \ + p5-Data-Inspect>=0.03:${PORTSDIR}/devel/p5-Data-Inspect \ + p5-Text-Outdent>=0.01:${PORTSDIR}/devel/p5-Text-Outdent + +PERL_CONFIGURE= yes + +MAN3= Test::Mini.3 \ + Test::README.3 \ + Test::Mini::Runner.3 \ + Test::Mini::TestCase.3 \ + Test::Mini::Logger::TAP.3 \ + Test::Mini::Logger.3 \ + Test::Mini::Assertions.3 + +.include <bsd.port.mk> diff --git a/devel/p5-Test-Mini/distinfo b/devel/p5-Test-Mini/distinfo new file mode 100644 index 000000000000..2f0799755567 --- /dev/null +++ b/devel/p5-Test-Mini/distinfo @@ -0,0 +1,2 @@ +SHA256 (Test-Mini-v1.1.1.tar.gz) = a020821cd6487e125e5979beb2a0c710794296d9064ca2ee13183b62477d1272 +SIZE (Test-Mini-v1.1.1.tar.gz) = 21567 diff --git a/devel/p5-Test-Mini/pkg-descr b/devel/p5-Test-Mini/pkg-descr new file mode 100644 index 000000000000..6e584ac40a9d --- /dev/null +++ b/devel/p5-Test-Mini/pkg-descr @@ -0,0 +1,3 @@ +Lightweight unit testing for Perl. + +WWW: http://search.cpan.org/dist/Test-Mini/ diff --git a/devel/p5-Test-Mini/pkg-plist b/devel/p5-Test-Mini/pkg-plist new file mode 100644 index 000000000000..4d1a48d7c66c --- /dev/null +++ b/devel/p5-Test-Mini/pkg-plist @@ -0,0 +1,19 @@ +%%SITE_PERL%%/Test/Mini.pm +%%SITE_PERL%%/Test/Mini.pod +%%SITE_PERL%%/Test/Mini/Assertions.pm +%%SITE_PERL%%/Test/Mini/Assertions.pod +%%SITE_PERL%%/Test/Mini/Logger.pm +%%SITE_PERL%%/Test/Mini/Logger.pod +%%SITE_PERL%%/Test/Mini/Logger/TAP.pm +%%SITE_PERL%%/Test/Mini/Logger/TAP.pod +%%SITE_PERL%%/Test/Mini/Runner.pm +%%SITE_PERL%%/Test/Mini/Runner.pod +%%SITE_PERL%%/Test/Mini/TestCase.pm +%%SITE_PERL%%/Test/Mini/TestCase.pod +%%SITE_PERL%%/Test/README.pod +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Mini/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Mini +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test +@dirrmtry %%SITE_PERL%%/Test/Mini/Logger +@dirrmtry %%SITE_PERL%%/Test/Mini +@dirrmtry %%SITE_PERL%%/Test |