View | Details | Raw Unified | Return to bug 224342 | Differences between
and this patch

Collapse All | Expand All

(-)net-mgmt/Makefile (+1 lines)
Lines 302-307 Link Here
302
    SUBDIR += py-dnsdiag
302
    SUBDIR += py-dnsdiag
303
    SUBDIR += py-ipcalc
303
    SUBDIR += py-ipcalc
304
    SUBDIR += py-ipy
304
    SUBDIR += py-ipy
305
    SUBDIR += py-ncclient
305
    SUBDIR += py-msrest
306
    SUBDIR += py-msrest
306
    SUBDIR += py-msrestazure
307
    SUBDIR += py-msrestazure
307
    SUBDIR += py-pdagent
308
    SUBDIR += py-pdagent
(-)net-mgmt/py-ncclient/Makefile (+23 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	ncclient
4
PORTVERSION=	0.5.3
5
CATEGORIES=	net-mgmt python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	sergey@akhmatov.ru
10
COMMENT=	Python library for NETCONF clients
11
12
LICENSE=		APACHE20
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}lxml>=3.3.0:devel/py-lxml@${FLAVOR} \
16
				${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} \
17
				${PYTHON_PKGNAMEPREFIX}paramiko>=1.7:security/py-paramiko@${FLAVOR}
18
19
USES=		python
20
USE_PYTHON=	autoplist distutils
21
NO_ARCH=	yes
22
23
.include <bsd.port.mk>
(-)net-mgmt/py-ncclient/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1513262382
2
SHA256 (ncclient-0.5.3.tar.gz) = fe6b9c16ed5f1b21f5591da74bfdd91a9bdf69eb4e918f1c06b3c8db307bd32b
3
SIZE (ncclient-0.5.3.tar.gz) = 63151
(-)net-mgmt/py-ncclient/pkg-descr (+13 lines)
Line 0 Link Here
1
ncclient is a Python library for NETCONF clients. It aims to offer
2
an intuitive API that sensibly maps the XML-encoded nature of
3
NETCONF to Python constructs and idioms, and make writing
4
network-management scripts easier. Other key features are:
5
6
- Supports all operations and capabilities defined in RFC 4741.
7
- Request pipelining.
8
- Asynchronous RPC requests.
9
- Keeping XML out of the way unless really needed.
10
- Extensible. New transport mappings and capabilities/operations
11
  can be easily added.
12
13
WWW: https://github.com/ncclient/ncclient

Return to bug 224342