caa46b89dd
[00:03:36] Warning: (net/nsscache@py35): Error: Duplicated origin for nsscache-0.39: net/nsscache@py35 AND net/nsscache. Rerun with -v to see which ports are depending on these. [00:03:36] Warning: (net/nsscache@py38): Error: Duplicated origin for nsscache-0.39: net/nsscache@py38 AND net/nsscache. Rerun with -v to see which ports are depending on these. [00:03:36] Warning: (net/nsscache@py36): Error: Duplicated origin for nsscache-0.39: net/nsscache@py36 AND net/nsscache. Rerun with -v to see which ports are depending on these. Pointy hat: kbowling
49 lines
1.7 KiB
Makefile
49 lines
1.7 KiB
Makefile
# Created by: Kevin Bowling <kbowling@freebsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nsscache
|
|
PORTVERSION= 0.39
|
|
DISTVERSIONPREFIX= version/
|
|
CATEGORIES= net python
|
|
|
|
MAINTAINER= kbowling@FreeBSD.org
|
|
COMMENT= Python utility to create a local cache of directory services
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}bsddb3>0:databases/py-bsddb3@${PY_FLAVOR} \
|
|
${PYTHON_SITELIBDIR}/pycurl.so:ftp/py-pycurl@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}ldap>0:net/py-ldap@${PY_FLAVOR}
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pytest-cov>0:devel/py-pytest-cov@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}mox3>0:devel/py-mox3@${PY_FLAVOR}
|
|
|
|
USES= python:3.4+
|
|
USE_PYTHON= autoplist distutils noflavors
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= google
|
|
|
|
NO_ARCH= yes
|
|
|
|
PLIST_FILES= '@sample etc/nsscache.conf.sample' '@dir /var/db/nsscache' \
|
|
man/man1/nsscache.1.gz man/man5/nsscache.conf.5.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/etc/nsscache.conf|${PREFIX}/etc/nsscache.conf|g' ${WRKSRC}/nss_cache/config.py
|
|
@${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/nsscache.conf
|
|
@${REINPLACE_CMD} -e "s|/var/lib/misc|/var/db/nsscache|g" ${WRKSRC}/nsscache.conf.5
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/nsscache.conf ${STAGEDIR}${PREFIX}/etc/nsscache.conf.sample
|
|
${INSTALL_MAN} ${WRKSRC}/nsscache.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/nsscache.conf.5 ${STAGEDIR}${MANPREFIX}/man/man5
|
|
@${MKDIR} ${STAGEDIR}/var/db/nsscache
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${PYTHON_CMD} setup.py test
|
|
|
|
|
|
.include <bsd.port.mk>
|