From owner-svn-ports-all@freebsd.org Sun May 6 21:39:25 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63C3CFC8559; Sun, 6 May 2018 21:39:25 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0B90784859; Sun, 6 May 2018 21:39:25 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 025A312405; Sun, 6 May 2018 21:39:25 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w46LdOmk009759; Sun, 6 May 2018 21:39:24 GMT (envelope-from girgen@FreeBSD.org) Received: (from girgen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w46LdOvv009758; Sun, 6 May 2018 21:39:24 GMT (envelope-from girgen@FreeBSD.org) Message-Id: <201805062139.w46LdOvv009758@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: girgen set sender to girgen@FreeBSD.org using -f From: Palle Girgensohn Date: Sun, 6 May 2018 21:39:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469253 - head/net/py-ldap0 X-SVN-Group: ports-head X-SVN-Commit-Author: girgen X-SVN-Commit-Paths: head/net/py-ldap0 X-SVN-Commit-Revision: 469253 X-SVN-Commit-Repository: ports 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.25 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: Sun, 06 May 2018 21:39:25 -0000 Author: girgen Date: Sun May 6 21:39:24 2018 New Revision: 469253 URL: https://svnweb.freebsd.org/changeset/ports/469253 Log: The port only supports python 2.7 Fix pkg-descr while I'm here. Modified: head/net/py-ldap0/Makefile head/net/py-ldap0/pkg-descr Modified: head/net/py-ldap0/Makefile ============================================================================== --- head/net/py-ldap0/Makefile Sun May 6 21:36:04 2018 (r469252) +++ head/net/py-ldap0/Makefile Sun May 6 21:39:24 2018 (r469253) @@ -2,6 +2,7 @@ PORTNAME= ldap0 PORTVERSION= 0.0.60 +PORTREVISION= 1 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,11 +12,12 @@ COMMENT= Python module package for implementing LDAP c LICENSE= PSFL +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyasn1-modules>=0.2.1:devel/py-pyasn1-modules@${PY_FLAVOR} + MAKE_ENV+= INCLUDES=${LOCALBASE}/include WANT_OPENLDAP_SASL=yes -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyasn1-modules>=0.2.1:devel/py-pyasn1-modules@${PY_FLAVOR} -USES= python +USES= python:2.7 USE_OPENLDAP= yes USE_PYTHON= autoplist distutils Modified: head/net/py-ldap0/pkg-descr ============================================================================== --- head/net/py-ldap0/pkg-descr Sun May 6 21:36:04 2018 (r469252) +++ head/net/py-ldap0/pkg-descr Sun May 6 21:39:24 2018 (r469253) @@ -1,6 +1,11 @@ -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) +ldap0 provides an object-oriented API to access LDAP directory servers from +Python programs. Mainly it wraps the OpenLDAP 2.x libs for that purpose. +Additionally the package contains Python modules: +- parsing and producing LDIF +- handle LDAPURLs +- parse and handle LDAPv3 subschema +- LDAPv3 extended operations and controls +- automatic tests with OpenLDAP server This package is a non-compatible fork of + python-ldap and therefore uses the separate module name-space 'ldap0'. -WWW: https://github.com/cannatag/ldap3 +WWW: https://pypi.org/project/ldap0/#description