svn commit: r502293 - in head/dns: . py-ns1-python

Dave Cottlehuber dch at FreeBSD.org
Wed May 22 21:23:38 UTC 2019


Author: dch
Date: Wed May 22 21:23:36 2019
New Revision: 502293
URL: https://svnweb.freebsd.org/changeset/ports/502293

Log:
  dns/py-ns1-python: new port - NS1 DNS API from python
  
  Approved by:	jrm (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20355

Added:
  head/dns/py-ns1-python/
  head/dns/py-ns1-python/Makefile   (contents, props changed)
  head/dns/py-ns1-python/distinfo   (contents, props changed)
  head/dns/py-ns1-python/pkg-descr   (contents, props changed)
Modified:
  head/dns/Makefile

Modified: head/dns/Makefile
==============================================================================
--- head/dns/Makefile	Wed May 22 21:20:02 2019	(r502292)
+++ head/dns/Makefile	Wed May 22 21:23:36 2019	(r502293)
@@ -194,6 +194,7 @@
     SUBDIR += py-ldns
     SUBDIR += py-localzone
     SUBDIR += py-namebench
+    SUBDIR += py-ns1-python
     SUBDIR += py-publicsuffix
     SUBDIR += py-publicsuffixlist
     SUBDIR += py-py3dns

Added: head/dns/py-ns1-python/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/py-ns1-python/Makefile	Wed May 22 21:23:36 2019	(r502293)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	ns1-python
+DISTVERSION=	0.9.19
+CATEGORIES=	dns python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dch at FreeBSD.org
+COMMENT=	Python SDK for accessing NS1, the Data Driven DNS platform
+
+LICENSE=	MIT
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/dns/py-ns1-python/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/py-ns1-python/distinfo	Wed May 22 21:23:36 2019	(r502293)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1557965605
+SHA256 (ns1-python-0.9.19.tar.gz) = a6c6f2f66a0c7a1df69cce599fd6f8f2481e3c76bdb03422dec64aeb32bb691e
+SIZE (ns1-python-0.9.19.tar.gz) = 16732

Added: head/dns/py-ns1-python/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/py-ns1-python/pkg-descr	Wed May 22 21:23:36 2019	(r502293)
@@ -0,0 +1,6 @@
+Python SDK for accessing the NS1 DNS platform, including a simple NS1
+REST API wrapper, as well as a higher level interface for managing zones,
+records, data feeds, and more. It supports synchronous and asynchronous
+transports.
+
+WWW: https://github.com/ns1/ns1-python


More information about the svn-ports-head mailing list