From owner-svn-ports-all@FreeBSD.ORG Mon Sep 8 11:45:51 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 50653C7C; Mon, 8 Sep 2014 11:45:51 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3BDF11FCA; Mon, 8 Sep 2014 11:45:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s88BjpwF020507; Mon, 8 Sep 2014 11:45:51 GMT (envelope-from culot@FreeBSD.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s88BjoGf020503; Mon, 8 Sep 2014 11:45:50 GMT (envelope-from culot@FreeBSD.org) Message-Id: <201409081145.s88BjoGf020503@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: culot set sender to culot@FreeBSD.org using -f From: Frederic Culot Date: Mon, 8 Sep 2014 11:45:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r367616 - in head/devel: . p5-Test-CleanNamespaces X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Sep 2014 11:45:51 -0000 Author: culot Date: Mon Sep 8 11:45:50 2014 New Revision: 367616 URL: http://svnweb.freebsd.org/changeset/ports/367616 QAT: https://qat.redports.org/buildarchive/r367616/ Log: Test::CleanNamespaces lets you check your module's namespaces for imported functions you might have forgotten to remove with namespace::autoclean or namespace::clean and are therefore available to be called as methods, which usually isn't want you want. WWW: http://search.cpan.org/dist/Test-CleanNamespaces/ Added: head/devel/p5-Test-CleanNamespaces/ head/devel/p5-Test-CleanNamespaces/Makefile (contents, props changed) head/devel/p5-Test-CleanNamespaces/distinfo (contents, props changed) head/devel/p5-Test-CleanNamespaces/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Sep 8 11:41:27 2014 (r367615) +++ head/devel/Makefile Mon Sep 8 11:45:50 2014 (r367616) @@ -2857,6 +2857,7 @@ SUBDIR += p5-Test-Class-Most SUBDIR += p5-Test-ClassAPI SUBDIR += p5-Test-Classy + SUBDIR += p5-Test-CleanNamespaces SUBDIR += p5-Test-Cmd SUBDIR += p5-Test-Command SUBDIR += p5-Test-Command-Simple Added: head/devel/p5-Test-CleanNamespaces/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-CleanNamespaces/Makefile Mon Sep 8 11:45:50 2014 (r367616) @@ -0,0 +1,40 @@ +# Created by: Frederic Culot +# $FreeBSD$ + +PORTNAME= Test-CleanNamespaces +PORTVERSION= 0.16 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= culot@FreeBSD.org +COMMENT= Check for uncleaned imports + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-File-Find-Rule>0:${PORTSDIR}/devel/p5-File-Find-Rule \ + p5-File-Find-Rule-Perl>0:${PORTSDIR}/devel/p5-File-Find-Rule-Perl \ + p5-Module-Runtime>0:${PORTSDIR}/devel/p5-Module-Runtime \ + p5-Package-Stash>=0.14:${PORTSDIR}/devel/p5-Package-Stash \ + p5-Sub-Exporter>0:${PORTSDIR}/devel/p5-Sub-Exporter \ + p5-Sub-Identify>0:${PORTSDIR}/devel/p5-Sub-Identify \ + p5-namespace-clean>0:${PORTSDIR}/devel/p5-namespace-clean +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Deep>0:${PORTSDIR}/devel/p5-Test-Deep \ + p5-Test-Requires>0:${PORTSDIR}/devel/p5-Test-Requires \ + p5-Test-Tester>0:${PORTSDIR}/devel/p5-Test-Tester \ + p5-Test-Warnings>=0.009:${PORTSDIR}/devel/p5-Test-Warnings + +USES= perl5 +USE_PERL5= configure + +PLIST_FILES= %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/CleanNamespaces/.packlist \ + %%SITE_PERL%%/Test/CleanNamespaces.pm \ + %%PERL5_MAN3%%/Test::CleanNamespaces.3.gz + +PLIST_DIRS= %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/CleanNamespaces +PLIST_DIRSTRY= %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test \ + %%SITE_PERL%%/Test + +.include Added: head/devel/p5-Test-CleanNamespaces/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-CleanNamespaces/distinfo Mon Sep 8 11:45:50 2014 (r367616) @@ -0,0 +1,2 @@ +SHA256 (Test-CleanNamespaces-0.16.tar.gz) = 9779378394b9be32cf04129fafe2d40d74f6f200f593f1494998bd128a6ed9fa +SIZE (Test-CleanNamespaces-0.16.tar.gz) = 30598 Added: head/devel/p5-Test-CleanNamespaces/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-CleanNamespaces/pkg-descr Mon Sep 8 11:45:50 2014 (r367616) @@ -0,0 +1,6 @@ +Test::CleanNamespaces lets you check your module's namespaces for imported +functions you might have forgotten to remove with namespace::autoclean or +namespace::clean and are therefore available to be called as methods, which +usually isn't want you want. + +WWW: http://search.cpan.org/dist/Test-CleanNamespaces/