Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Jul 2018 17:50:13 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r474026 - in head/net: . py-ldappool
Message-ID:  <201807061750.w66HoDrg018725@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Fri Jul  6 17:50:13 2018
New Revision: 474026
URL: https://svnweb.freebsd.org/changeset/ports/474026

Log:
  ldappool keeps LDAP connectors alive and let you reuse them, drastically
  reducing the time spent to initiate a ldap connection.
  
  The pool has useful features like:
  
  - transparent reconnection on failures or server restarts
  - configurable pool size and connectors timeouts
  - configurable max lifetime for connectors
  - a context manager to simplify acquiring and releasing a connector
  
  WWW: https://pypi.org/project/ldappool/
  
  PR:		228847
  Submitted by:	freebsd_ports@k-worx.org
  Sponsored by:	iXsystems Inc.

Added:
  head/net/py-ldappool/
  head/net/py-ldappool/Makefile   (contents, props changed)
  head/net/py-ldappool/distinfo   (contents, props changed)
  head/net/py-ldappool/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Fri Jul  6 17:49:21 2018	(r474025)
+++ head/net/Makefile	Fri Jul  6 17:50:13 2018	(r474026)
@@ -1065,6 +1065,7 @@
     SUBDIR += py-ldap
     SUBDIR += py-ldap0
     SUBDIR += py-ldap3
+    SUBDIR += py-ldappool
     SUBDIR += py-ldaptor
     SUBDIR += py-libcloud
     SUBDIR += py-libdnet

Added: head/net/py-ldappool/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-ldappool/Makefile	Fri Jul  6 17:50:13 2018	(r474026)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	ldappool
+DISTVERSION=	2.2.0
+CATEGORIES=	net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	freebsd_ports@k-worx.org
+COMMENT=	Simple connector pool for py-ldap
+
+LICENSE=	MPL20
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}ldap>=2.4.20:net/py-ldap@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/net/py-ldappool/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-ldappool/distinfo	Fri Jul  6 17:50:13 2018	(r474026)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1527764519
+SHA256 (ldappool-2.2.0.tar.gz) = c97390692cd77dbb483957abd90b5bf18259602ac53a1bc58e5c493de36d760d
+SIZE (ldappool-2.2.0.tar.gz) = 15847

Added: head/net/py-ldappool/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-ldappool/pkg-descr	Fri Jul  6 17:50:13 2018	(r474026)
@@ -0,0 +1,11 @@
+ldappool keeps LDAP connectors alive and let you reuse them, drastically
+reducing the time spent to initiate a ldap connection.
+
+The pool has useful features like:
+
+- transparent reconnection on failures or server restarts
+- configurable pool size and connectors timeouts
+- configurable max lifetime for connectors
+- a context manager to simplify acquiring and releasing a connector
+
+WWW: https://pypi.org/project/ldappool/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807061750.w66HoDrg018725>