svn commit: r353904 - in head/devel: . p5-Test-Net-LDAP

Jun Kuriyama kuriyama at FreeBSD.org
Mon May 12 23:51:19 UTC 2014


Author: kuriyama
Date: Mon May 12 23:51:17 2014
New Revision: 353904
URL: http://svnweb.freebsd.org/changeset/ports/353904
QAT: https://qat.redports.org/buildarchive/r353904/

Log:
  This module provides some testing methods for LDAP operations, such as
  search, add, and modify, where each method is suffixed with either _ok
  or _is.
  
  Test::Net::LDAP is a subclass of Net::LDAP, so all the methods defined
  for Net::LDAP are available in addition to search_ok, add_is, etc.
  
  WWW: http://search.cpan.org/dist/Test-Net-LDAP/

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon May 12 22:07:39 2014	(r353903)
+++ head/devel/Makefile	Mon May 12 23:51:17 2014	(r353904)
@@ -2879,6 +2879,7 @@
     SUBDIR += p5-Test-More-UTF8
     SUBDIR += p5-Test-Most
     SUBDIR += p5-Test-Name-FromLine
+    SUBDIR += p5-Test-Net-LDAP
     SUBDIR += p5-Test-Net-RabbitMQ
     SUBDIR += p5-Test-NoTabs
     SUBDIR += p5-Test-NoWarnings

Added: head/devel/p5-Test-Net-LDAP/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Net-LDAP/Makefile	Mon May 12 23:51:17 2014	(r353904)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	Test-Net-LDAP
+PORTVERSION=	0.02
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	kuriyama at FreeBSD.org
+COMMENT=	Perl extension of Net::LDAP subclass for testing
+
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+RUN_DEPENDS=	p5-perl-ldap>=0.5800:${PORTSDIR}/net/p5-perl-ldap
+BUILD_DEPENDS=	${RUN_DEPENDS}
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/devel/p5-Test-Net-LDAP/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Net-LDAP/distinfo	Mon May 12 23:51:17 2014	(r353904)
@@ -0,0 +1,2 @@
+SHA256 (Test-Net-LDAP-0.02.tar.gz) = a7cbf61602681970f835263f0b4c5cf0252bc3cabcf44238456a3b302dde5929
+SIZE (Test-Net-LDAP-0.02.tar.gz) = 14184

Added: head/devel/p5-Test-Net-LDAP/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Net-LDAP/pkg-descr	Mon May 12 23:51:17 2014	(r353904)
@@ -0,0 +1,8 @@
+This module provides some testing methods for LDAP operations, such as
+search, add, and modify, where each method is suffixed with either _ok
+or _is.
+
+Test::Net::LDAP is a subclass of Net::LDAP, so all the methods defined
+for Net::LDAP are available in addition to search_ok, add_is, etc.
+
+WWW: http://search.cpan.org/dist/Test-Net-LDAP/

Added: head/devel/p5-Test-Net-LDAP/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Test-Net-LDAP/pkg-plist	Mon May 12 23:51:17 2014	(r353904)
@@ -0,0 +1,17 @@
+%%PERL5_MAN3%%/Test::Net::LDAP.3.gz
+%%PERL5_MAN3%%/Test::Net::LDAP::Mock.3.gz
+%%PERL5_MAN3%%/Test::Net::LDAP::Util.3.gz
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Net/LDAP/.packlist
+%%SITE_PERL%%/Test/Net/LDAP.pm
+%%SITE_PERL%%/Test/Net/LDAP/Mixin.pm
+%%SITE_PERL%%/Test/Net/LDAP/Mock.pm
+%%SITE_PERL%%/Test/Net/LDAP/Mock/Data.pm
+%%SITE_PERL%%/Test/Net/LDAP/Mock/Node.pm
+%%SITE_PERL%%/Test/Net/LDAP/Util.pm
+ at dirrm %%SITE_PERL%%/Test/Net/LDAP/Mock
+ at dirrm %%SITE_PERL%%/Test/Net/LDAP
+ at dirrm %%SITE_PERL%%/Test/Net
+ at dirrmtry %%SITE_PERL%%/Test
+ at dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Net/LDAP
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Net
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test


More information about the svn-ports-all mailing list