29 lines
572 B
Makefile
29 lines
572 B
Makefile
# $OpenBSD: Makefile,v 1.12 2021/11/14 12:43:33 sthen Exp $
|
|
|
|
COMMENT = Python library for NETCONF clients
|
|
|
|
MODPY_EGG_VERSION = 0.6.12
|
|
DISTNAME = ncclient-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = https://ncclient.readthedocs.io/en/latest/
|
|
|
|
# Apache2
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
FLAVORS = python3
|
|
FLAVOR = python3
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
NO_TEST = Yes
|
|
|
|
RUN_DEPENDS = security/py-paramiko${MODPY_FLAVOR} \
|
|
devel/py-six${MODPY_FLAVOR} \
|
|
textproc/py-lxml${MODPY_FLAVOR}
|
|
|
|
.include <bsd.port.mk>
|