Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 May 2017 06:03:58 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r440230 - in head/dns: . py-dns-lexicon
Message-ID:  <201705060603.v4663wwG082213@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Sat May  6 06:03:58 2017
New Revision: 440230
URL: https://svnweb.freebsd.org/changeset/ports/440230

Log:
  Lexicon provides a way to manipulate DNS records on multiple DNS providers in a
  standardized way. Lexicon has a CLI but it can also be used as a python library.
  
  Lexicon was designed to be used in automation, specifically letsencrypt.
  
  WWW: https://github.com/AnalogJ/lexicon
  
  PR:		218792
  Submitted by:	Goran Meki <meka@tilda.center>

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

Modified: head/dns/Makefile
==============================================================================
--- head/dns/Makefile	Sat May  6 06:00:23 2017	(r440229)
+++ head/dns/Makefile	Sat May  6 06:03:58 2017	(r440230)
@@ -168,6 +168,7 @@
     SUBDIR += powerdns-recursor
     SUBDIR += public_suffix_list
     SUBDIR += py-dns
+    SUBDIR += py-dns-lexicon
     SUBDIR += py-dnschain
     SUBDIR += py-dnspython
     SUBDIR += py-easyzone

Added: head/dns/py-dns-lexicon/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/py-dns-lexicon/Makefile	Sat May  6 06:03:58 2017	(r440230)
@@ -0,0 +1,23 @@
+# Created by: Goran Mekić <meka@tilda.center>
+# $FreeBSD$
+
+PORTNAME=	dns-lexicon
+PORTVERSION=	2.0.7
+CATEGORIES=	dns python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	meka@tilda.center
+COMMENT=	Manipulate DNS records on various DNS providers in a standardized way
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}future>=0.16:devel/py-future \
+		${PYTHON_PKGNAMEPREFIX}tldextract>=1.7.5:dns/py-tldextract \
+		${PYTHON_PKGNAMEPREFIX}requests>=2.11:www/py-requests
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ACRH=	yes
+
+.include <bsd.port.mk>

Added: head/dns/py-dns-lexicon/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/py-dns-lexicon/distinfo	Sat May  6 06:03:58 2017	(r440230)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1492705960
+SHA256 (dns-lexicon-2.0.7.tar.gz) = e22b5ce4476e6c1658dc5e504b268403e752212abe3c0710fbc1c4d89cfa2a8f
+SIZE (dns-lexicon-2.0.7.tar.gz) = 26225

Added: head/dns/py-dns-lexicon/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/py-dns-lexicon/pkg-descr	Sat May  6 06:03:58 2017	(r440230)
@@ -0,0 +1,6 @@
+Lexicon provides a way to manipulate DNS records on multiple DNS providers in a
+standardized way. Lexicon has a CLI but it can also be used as a python library.
+
+Lexicon was designed to be used in automation, specifically letsencrypt.
+
+WWW: https://github.com/AnalogJ/lexicon



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705060603.v4663wwG082213>