svn commit: r344482 - in head/devel: . p5-Test-Bits

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat Feb 15 20:13:19 UTC 2014


Author: sunpoet
Date: Sat Feb 15 20:13:18 2014
New Revision: 344482
URL: http://svnweb.freebsd.org/changeset/ports/344482
QAT: https://qat.redports.org/buildarchive/r344482/

Log:
  - Add p5-Test-Bits 0.02
  
  Test::Bits provides a single subroutine, bits_is(), for testing binary data.
  
  This module is quite similar to Test::BinaryData and Test::HexString in concept.
  The difference is that this module shows failure diagnostics in a different way,
  and has a slightly different calling style. Depending on the nature of the data
  you're working with, this module may be easier to work with.
  
  WWW: http://search.cpan.org/dist/Test-Bits/

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Feb 15 20:10:19 2014	(r344481)
+++ head/devel/Makefile	Sat Feb 15 20:13:18 2014	(r344482)
@@ -2784,6 +2784,7 @@
     SUBDIR += p5-Test-Base
     SUBDIR += p5-Test-Benchmark
     SUBDIR += p5-Test-BinaryData
+    SUBDIR += p5-Test-Bits
     SUBDIR += p5-Test-Block
     SUBDIR += p5-Test-CPAN-Meta-YAML
     SUBDIR += p5-Test-CheckDeps

Added: head/devel/p5-Test-Bits/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Bits/Makefile	Sat Feb 15 20:13:18 2014	(r344482)
@@ -0,0 +1,23 @@
+# Created by: Sunpoet Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Test-Bits
+PORTVERSION=	0.02
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Provides a bits_is() subroutine for testing binary data
+
+LICENSE=	ART20
+
+BUILD_DEPENDS=	p5-List-AllUtils>=0:${PORTSDIR}/devel/p5-List-AllUtils
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+TEST_DEPENDS=	p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal \
+		p5-Test-Tester>=0:${PORTSDIR}/devel/p5-Test-Tester
+
+USE_PERL5=	configure
+USES=		perl5
+
+.include <bsd.port.mk>

Added: head/devel/p5-Test-Bits/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Bits/distinfo	Sat Feb 15 20:13:18 2014	(r344482)
@@ -0,0 +1,2 @@
+SHA256 (Test-Bits-0.02.tar.gz) = a9826f56483a27e2c63156590f328a3633e30375c10dfc89f6690e3929de0bc3
+SIZE (Test-Bits-0.02.tar.gz) = 9651

Added: head/devel/p5-Test-Bits/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Bits/pkg-descr	Sat Feb 15 20:13:18 2014	(r344482)
@@ -0,0 +1,8 @@
+Test::Bits provides a single subroutine, bits_is(), for testing binary data.
+
+This module is quite similar to Test::BinaryData and Test::HexString in concept.
+The difference is that this module shows failure diagnostics in a different way,
+and has a slightly different calling style. Depending on the nature of the data
+you're working with, this module may be easier to work with.
+
+WWW: http://search.cpan.org/dist/Test-Bits/

Added: head/devel/p5-Test-Bits/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Bits/pkg-plist	Sat Feb 15 20:13:18 2014	(r344482)
@@ -0,0 +1,6 @@
+%%SITE_PERL%%/Test/Bits.pm
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Bits/.packlist
+%%PERL5_MAN3%%/Test::Bits.3.gz
+ at dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Bits
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test
+ at dirrmtry %%SITE_PERL%%/Test


More information about the svn-ports-all mailing list