From owner-svn-ports-head@FreeBSD.ORG Sat Feb 15 20:13:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F4AA10D; Sat, 15 Feb 2014 20:13:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 78FF015E5; Sat, 15 Feb 2014 20:13:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1FKDJs5091783; Sat, 15 Feb 2014 20:13:19 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1FKDICY091777; Sat, 15 Feb 2014 20:13:18 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201402152013.s1FKDICY091777@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Feb 2014 20:13:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344482 - in head/devel: . p5-Test-Bits X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Feb 2014 20:13:19 -0000 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 +# $FreeBSD$ + +PORTNAME= Test-Bits +PORTVERSION= 0.02 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@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 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 +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Bits +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test +@dirrmtry %%SITE_PERL%%/Test