Date: Tue, 29 May 2018 12:29:17 +0000 (UTC) From: "Vanilla I. Shu" <vanilla@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471091 - in head/dns: . py-aiodns Message-ID: <201805291229.w4TCTH7E001226@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: vanilla Date: Tue May 29 12:29:16 2018 New Revision: 471091 URL: https://svnweb.freebsd.org/changeset/ports/471091 Log: Add py-aiodns 1.1.1, simple DNS resolver for asyncio. PR: 228579 Submitted by: Waitman Gobble <waitman@waitman.net> Added: head/dns/py-aiodns/ head/dns/py-aiodns/Makefile (contents, props changed) head/dns/py-aiodns/distinfo (contents, props changed) head/dns/py-aiodns/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Tue May 29 09:34:18 2018 (r471090) +++ head/dns/Makefile Tue May 29 12:29:16 2018 (r471091) @@ -181,6 +181,7 @@ SUBDIR += powerdns-recursor SUBDIR += powerdns-recursor40 SUBDIR += public_suffix_list + SUBDIR += py-aiodns SUBDIR += py-cloudflare SUBDIR += py-dns SUBDIR += py-dns-lexicon Added: head/dns/py-aiodns/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-aiodns/Makefile Tue May 29 12:29:16 2018 (r471091) @@ -0,0 +1,28 @@ +# Created by: Waitman Gobble <waitman@waitman.net> +# $FreeBSD$ + +PORTNAME= aiodns +PORTVERSION= 1.1.1 +CATEGORIES= dns python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= waitman@waitman.net +COMMENT= Simple DNS resolver for asyncio + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +OPTIONS_DEFINE= DOCS + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist concurrent distutils + +PORTDOCS= README.rst + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.rst ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> Added: head/dns/py-aiodns/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-aiodns/distinfo Tue May 29 12:29:16 2018 (r471091) @@ -0,0 +1,3 @@ +TIMESTAMP = 1527547369 +SHA256 (aiodns-1.1.1.tar.gz) = d8677adc679ce8d0ef706c14d9c3d2f27a0e0cc11d59730cdbaf218ad52dd9ea +SIZE (aiodns-1.1.1.tar.gz) = 6084 Added: head/dns/py-aiodns/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-aiodns/pkg-descr Tue May 29 12:29:16 2018 (r471091) @@ -0,0 +1,4 @@ +aiodns provides a simple way for doing asynchronous DNS resolutions +with a synchronous looking interface by using pycares. + +WWW: https://pypi.org/project/aiodns/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805291229.w4TCTH7E001226>