diff options
author | pi <pi@FreeBSD.org> | 2018-06-21 15:43:23 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2018-06-21 15:43:23 +0800 |
commit | 0b4025c6e1ee3b1206e263698e06030f55d1302a (patch) | |
tree | 2327bf48ae75682761dc9a52f698e7c5231c864a /devel | |
parent | fc9e432299b02cdea40fb87c04aade1b4651c842 (diff) | |
download | freebsd-ports-gnome-0b4025c6e1ee3b1206e263698e06030f55d1302a.tar.gz freebsd-ports-gnome-0b4025c6e1ee3b1206e263698e06030f55d1302a.tar.zst freebsd-ports-gnome-0b4025c6e1ee3b1206e263698e06030f55d1302a.zip |
New port: devel/p5-Test-Deep-UnorderedPairs
Plugin for Test::Deep to compare unordered lists of tuples.
This module provides the sub unordered_pairs (and tuples, samehash,
as synonyms) to indicate the data being tested is a list of pairs
that should be tested where the order of the pairs is insignificant.
WWW: https://metacpan.org/release/Test-Deep-UnorderedPairs
PR: 229195
Submitted by: Tomohiro Hosaka <bokutin@bokut.in>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/p5-Test-Deep-UnorderedPairs/Makefile | 25 | ||||
-rw-r--r-- | devel/p5-Test-Deep-UnorderedPairs/distinfo | 3 | ||||
-rw-r--r-- | devel/p5-Test-Deep-UnorderedPairs/pkg-descr | 7 |
4 files changed, 36 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 36667d9a14e7..096dc809f675 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3508,6 +3508,7 @@ SUBDIR += p5-Test-Debugger SUBDIR += p5-Test-Declare SUBDIR += p5-Test-Deep + SUBDIR += p5-Test-Deep-UnorderedPairs SUBDIR += p5-Test-Dependencies SUBDIR += p5-Test-DependentModules SUBDIR += p5-Test-Differences diff --git a/devel/p5-Test-Deep-UnorderedPairs/Makefile b/devel/p5-Test-Deep-UnorderedPairs/Makefile new file mode 100644 index 000000000000..458e9abf5d8d --- /dev/null +++ b/devel/p5-Test-Deep-UnorderedPairs/Makefile @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= Test-Deep-UnorderedPairs +PORTVERSION= 0.006 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR=CPAN:ETHER +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Plugin for Test::Deep to compare unordered lists of tuples + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +RUN_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep +TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ + p5-Test-Fatal>=0:devel/p5-Test-Fatal + +USES= perl5 +USE_PERL5= configure +PLIST_FILES= ${SITE_PERL_REL}/Test/Deep/UnorderedPairs.pm \ + ${SITE_MAN3_REL}/Test::Deep::UnorderedPairs.3.gz + +.include <bsd.port.mk> diff --git a/devel/p5-Test-Deep-UnorderedPairs/distinfo b/devel/p5-Test-Deep-UnorderedPairs/distinfo new file mode 100644 index 000000000000..74a0c288dd77 --- /dev/null +++ b/devel/p5-Test-Deep-UnorderedPairs/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1529539479 +SHA256 (Test-Deep-UnorderedPairs-0.006.tar.gz) = 9d6911a9c69b22a26cad198032e6445cfd2a9d6cec4fc3d8a7ca9b965525ccc5 +SIZE (Test-Deep-UnorderedPairs-0.006.tar.gz) = 28523 diff --git a/devel/p5-Test-Deep-UnorderedPairs/pkg-descr b/devel/p5-Test-Deep-UnorderedPairs/pkg-descr new file mode 100644 index 000000000000..788f65be73dc --- /dev/null +++ b/devel/p5-Test-Deep-UnorderedPairs/pkg-descr @@ -0,0 +1,7 @@ +Plugin for Test::Deep to compare unordered lists of tuples. + +This module provides the sub unordered_pairs (and tuples, samehash, +as synonyms) to indicate the data being tested is a list of pairs +that should be tested where the order of the pairs is insignificant. + +WWW: https://metacpan.org/release/Test-Deep-UnorderedPairs |