svn commit: r532731 - in head/net-mgmt: . py-arouteserver

Muhammad Moinur Rahman bofh at FreeBSD.org
Fri Apr 24 04:43:51 UTC 2020


Author: bofh
Date: Fri Apr 24 04:43:50 2020
New Revision: 532731
URL: https://svnweb.freebsd.org/changeset/ports/532731

Log:
  [NEW] net-mgmt/py-arouteserver: Tool to automatically build configurations for BGP route servers
  
  A Python tool to automatically build (and test) feature-rich configurations for
  BGP route servers.
  
  WWW: https://github.com/pierky/arouteserver

Added:
  head/net-mgmt/py-arouteserver/
  head/net-mgmt/py-arouteserver/Makefile   (contents, props changed)
  head/net-mgmt/py-arouteserver/distinfo   (contents, props changed)
  head/net-mgmt/py-arouteserver/pkg-descr   (contents, props changed)
Modified:
  head/net-mgmt/Makefile

Modified: head/net-mgmt/Makefile
==============================================================================
--- head/net-mgmt/Makefile	Fri Apr 24 03:59:42 2020	(r532730)
+++ head/net-mgmt/Makefile	Fri Apr 24 04:43:50 2020	(r532731)
@@ -300,6 +300,7 @@
     SUBDIR += pushgateway
     SUBDIR += py-adal
     SUBDIR += py-aggregate6
+    SUBDIR += py-arouteserver
     SUBDIR += py-ciscoconfparse
     SUBDIR += py-dnsdiag
     SUBDIR += py-ipcalc

Added: head/net-mgmt/py-arouteserver/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/py-arouteserver/Makefile	Fri Apr 24 04:43:50 2020	(r532731)
@@ -0,0 +1,45 @@
+# Created by: Muhammad Moinur Rahman <bofh at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	arouteserver
+PORTVERSION=	0.24.1
+CATEGORIES=	net-mgmt python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	bofh at FreeBSD.org
+COMMENT=	Tool to automatically build configurations for BGP route servers
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	bash>0:shells/bash \
+		bgpq4>0:net-mgmt/bgpq4 \
+		ca_root_nss>0:security/ca_root_nss \
+		${PYTHON_PKGNAMEPREFIX}Jinja2>=2.9.4:devel/py-Jinja2@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}aggregate6>=1.0.12:net-mgmt/py-aggregate6@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}packaging>0:devel/py-packaging@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}requests>=2.18.4:www/py-requests@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}yaml>=3.13:devel/py-yaml@${PY_FLAVOR}
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}nose>=1.3.7:devel/py-nose@${PY_FLAVOR}
+
+USES=		python shebangfix
+USE_PYTHON=	autoplist concurrent distutils
+
+SHEBANG_FILES=	pierky/arouteserver/config.d/rtt_getter.sh
+NO_ARCH=	yes
+
+.include <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} < 3300
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}ipaddr>=2.1.11:devel/py-ipaddr@${PY_FLAVOR}
+.endif
+
+post-patch:
+	${REINPLACE_CMD} -e 's|#bgpq3_path: "bgpq3"|bgpq3_path: "bgpq4"|' \
+		${WRKSRC}/pierky/arouteserver/config.d/arouteserver.yml
+
+do-test:
+	@(cd ${WRKSRC} && ${SETENV} nosetests -vs --tests=tests/external_resources/)
+
+.include <bsd.port.post.mk>

Added: head/net-mgmt/py-arouteserver/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/py-arouteserver/distinfo	Fri Apr 24 04:43:50 2020	(r532731)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1587701333
+SHA256 (arouteserver-0.24.1.tar.gz) = 841cf90c02bab878b6cf873976bef9cbdd6f9bf8a04261f7833aa14c9b21784a
+SIZE (arouteserver-0.24.1.tar.gz) = 200996

Added: head/net-mgmt/py-arouteserver/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/py-arouteserver/pkg-descr	Fri Apr 24 04:43:50 2020	(r532731)
@@ -0,0 +1,4 @@
+A Python tool to automatically build (and test) feature-rich configurations for
+BGP route servers.
+
+WWW: https://github.com/pierky/arouteserver


More information about the svn-ports-all mailing list