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/
This commit is contained in:
Frederic Culot 2014-09-08 11:45:50 +00:00
parent 64d9554fcf
commit 582022d43c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=367616
4 changed files with 49 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,40 @@
# Created by: Frederic Culot <culot@FreeBSD.org>
# $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 <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (Test-CleanNamespaces-0.16.tar.gz) = 9779378394b9be32cf04129fafe2d40d74f6f200f593f1494998bd128a6ed9fa
SIZE (Test-CleanNamespaces-0.16.tar.gz) = 30598

View File

@ -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/