972d18d61b
version 0.6.10 ------------- * NETCONF call-home (RFC8071) support * YANG 1.1 `action` support * Nokia SR OS device handler support * Removal of old ALU base-r13 API documentation * Increased test coverage * Variety of bugfixes and minor enhancements from a variety of contributors since 0.6.9 (see commit history) * Thanks to all contributors! version 0.6.9 ------------- * Resiolved breaking API change
28 lines
850 B
Makefile
28 lines
850 B
Makefile
# $NetBSD: Makefile,v 1.15 2021/03/07 07:46:01 adam Exp $
|
|
|
|
DISTNAME= ncclient-0.6.10
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=n/ncclient/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/ncclient/ncclient
|
|
COMMENT= NETCONF Python client
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-lxml>=3.3.0:../../textproc/py-lxml
|
|
DEPENDS+= ${PYPKGPREFIX}-paramiko>=1.15.0:../../security/py-paramiko
|
|
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
.if ${_PYTHON_VERSION} == 27
|
|
DEPENDS+= ${PYPKGPREFIX}-selectors2>=2.0.1:../../devel/py-selectors2
|
|
.endif
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONED_DEPENDENCIES+= setuptools
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../lang/python/versioned_dependencies.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|