The Python library for Arista's eAPI command API implementation provides a client API work using eAPI and communicating with EOS nodes. The Python library can be used to communicate with EOS either locally (on-box) or remotely (off-box). It uses a standard INI-style configuration file to specify one or more nodes and connection properties. w/ and ok sthen@
26 lines
484 B
Makefile
26 lines
484 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2018/04/25 14:20:06 jasper Exp $
|
|
|
|
COMMENT = Python client for Arista eAPI
|
|
|
|
MODPY_EGG_VERSION = 0.8.2
|
|
DISTNAME = pyeapi-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME:S/py//}
|
|
|
|
CATEGORIES = net
|
|
|
|
MAINTAINER = Jasper Lievisse Adriaanse <jasper@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/python
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
RUN_DEPENDS = net/py-netaddr${MODPY_FLAVOR}
|
|
|
|
.include <bsd.port.mk>
|