View | Details | Raw Unified | Return to bug 228847
Collapse All | Expand All

(-)py-ldappool/Makefile (+22 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	ldappool
4
DISTVERSION=	2.2.0
5
CATEGORIES=	net python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	freebsd_ports@k-worx.org
10
COMMENT=	Simple connector pool for py-ldap
11
12
LICENSE=	MPL20
13
14
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR}
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}ldap>=2.4.20:net/py-ldap@${PY_FLAVOR} \
16
		${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
17
18
USES=		python
19
USE_PYTHON=	distutils autoplist
20
NO_ARCH=	yes
21
22
.include <bsd.port.mk>
(-)py-ldappool/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1527764519
2
SHA256 (ldappool-2.2.0.tar.gz) = c97390692cd77dbb483957abd90b5bf18259602ac53a1bc58e5c493de36d760d
3
SIZE (ldappool-2.2.0.tar.gz) = 15847
(-)py-ldappool/pkg-descr (+11 lines)
Line 0 Link Here
1
ldappool keeps LDAP connectors alive and let you reuse them, drastically
2
reducing the time spent to initiate a ldap connection.
3
4
The pool has useful features like:
5
6
- transparent reconnection on failures or server restarts
7
- configurable pool size and connectors timeouts
8
- configurable max lifetime for connectors
9
- a context manager to simplify acquiring and releasing a connector
10
11
WWW: https://pypi.org/project/ldappool/

Return to bug 228847