svn commit: r390021 - in head/net: . py-ldap3
Ruslan Makhmatkhanov
rm at FreeBSD.org
Thu Jun 18 07:07:39 UTC 2015
Author: rm
Date: Thu Jun 18 07:07:37 2015
New Revision: 390021
URL: https://svnweb.freebsd.org/changeset/ports/390021
Log:
ldap3 is a pure Python LDAP 3 client library strictly conforming to RFC4511
released under the LGPL v3 open source license. RFC4511 is the current LDAP
specification (June 2006) from IETF and obsoletes the previous LDAP RFCs
2251, 2830, 3771 (December 1997)
WWW: https://github.com/cannatag/ldap3
Added:
head/net/py-ldap3/
head/net/py-ldap3/Makefile (contents, props changed)
head/net/py-ldap3/distinfo (contents, props changed)
head/net/py-ldap3/pkg-descr (contents, props changed)
Modified:
head/net/Makefile
Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile Thu Jun 18 06:43:46 2015 (r390020)
+++ head/net/Makefile Thu Jun 18 07:07:37 2015 (r390021)
@@ -915,6 +915,7 @@
SUBDIR += py-iplib
SUBDIR += py-kombu
SUBDIR += py-ldap2
+ SUBDIR += py-ldap3
SUBDIR += py-ldaptor
SUBDIR += py-libcloud
SUBDIR += py-libdnet
Added: head/net/py-ldap3/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-ldap3/Makefile Thu Jun 18 07:07:37 2015 (r390021)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME= ldap3
+PORTVERSION= 0.9.8.4
+CATEGORIES= net python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= rm at FreeBSD.org
+COMMENT= Strictly RFC 4511 conforming LDAP V3 pure Python client
+
+LICENSE= GPLv3
+LICENSE_FILE= ${WRKSRC}/COPYING.txt
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1>0:${PORTSDIR}/devel/py-asn1
+
+NO_ARCH= yes
+USES= python
+USE_PYTHON= autoplist distutils
+
+.include <bsd.port.mk>
Added: head/net/py-ldap3/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-ldap3/distinfo Thu Jun 18 07:07:37 2015 (r390021)
@@ -0,0 +1,2 @@
+SHA256 (ldap3-0.9.8.4.tar.gz) = d9efa7f6d4bd4e83201229c6200dcac852e61f23272840065c6ef23b115a0c6a
+SIZE (ldap3-0.9.8.4.tar.gz) = 263317
Added: head/net/py-ldap3/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-ldap3/pkg-descr Thu Jun 18 07:07:37 2015 (r390021)
@@ -0,0 +1,6 @@
+ldap3 is a pure Python LDAP 3 client library strictly conforming to RFC4511
+released under the LGPL v3 open source license. RFC4511 is the current LDAP
+specification (June 2006) from IETF and obsoletes the previous LDAP RFCs
+2251, 2830, 3771 (December 1997)
+
+WWW: https://github.com/cannatag/ldap3
More information about the svn-ports-head
mailing list