mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 04:16:27 -04:00
Any missed ports, feel free to bump. Any ports that need setuptools at runtime can have the devel/py-setuptools manually added back to RUN_DEPENDS, but understand that this practice is deprecated; see CHANGES for details.
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
PORTNAME= ldap0
|
|
PORTVERSION= 1.4.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= net python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= girgen@FreeBSD.org
|
|
COMMENT= Module package for implementing LDAP clients
|
|
WWW= https://gitlab.com/ae-dir/python-ldap0
|
|
|
|
LICENSE= PSFL
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyasn1>=0.4.5:devel/py-pyasn1@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pyasn1-modules>=0.2.5:devel/py-pyasn1-modules@${PY_FLAVOR}
|
|
# Cyrus needs PLAIN / CRAM-MD5 / DIGEST-MD5 enabled
|
|
TEST_DEPENDS= ${LOCALBASE}/libexec/slapd:net/openldap${OPENLDAP_VER}-server
|
|
|
|
USES= ldap:24 localbase python
|
|
USE_LOCALE= en_US.UTF-8
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
USE_GITLAB= yes
|
|
GL_ACCOUNT= ae-dir
|
|
GL_PROJECT= python-ldap0
|
|
GL_TAGNAME= 70b3aad8593d34c82f6bca1eca53f1c8938d345d
|
|
|
|
PYDISTUTILS_BUILD_TARGET= build_ext
|
|
PYDISTUTILS_BUILDARGS+= --inplace
|
|
|
|
# Add LOGLEVEL=DEBUG to debug tests
|
|
TEST_ENV= LDAPNOINIT=1 \
|
|
SLAPD=${LOCALBASE}/libexec/slapd \
|
|
SCHEMA=${LOCALBASE}/etc/openldap/schema \
|
|
BIN=${LOCALBASE}/bin \
|
|
SBIN=${LOCALBASE}/sbin \
|
|
TMP=${WRKDIR}
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_libldap0*.so
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.mk>
|