mirror of
https://git.freebsd.org/ports.git
synced 2025-05-19 10:33:12 -04:00
This NetBox plugin is intented for Telephone Number Management. It currently implements a Number abstraction representing a single telephone number of an arbitrary format. A Number can consist of valid DTMF characters and leading plus sign for E.164 support: * Leading Plus ("+") sign (optional) * Digits 0-9 * Characters A, B, C, D * Pound sign ("#") * Asterisk sign ("*") Support for Bulk Edit/Delete operations for Numbers and the following voice circuit types is included as well: * SIP Trunk. * Digital Voice Circuit (PRI/BRI/etc). * Analog Voice Circuit (CO lines/etc). The plugin also introduces a NetBox REST API extension which is compatible with pynetbox. WWW: https://github.com/iDebugAll/phonebox_plugin Requested by: Mike Geiger (via e-mail)
22 lines
456 B
Makefile
22 lines
456 B
Makefile
PORTNAME= phonebox-plugin
|
|
DISTVERSION= 0.0.3b8
|
|
CATEGORIES= net-mgmt python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= phonebox_plugin-${DISTVERSION}
|
|
|
|
MAINTAINER= kai@FreeBSD.org
|
|
COMMENT= Phone numbers management plugin for NetBox
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= python:3.6+
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= PYTHON_VER=${PYTHON_VER}
|
|
|
|
.include <bsd.port.mk>
|