Date: Tue, 31 May 2016 12:03:07 +0000 (UTC) From: Dmitry Sivachenko <demon@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416193 - in head/dns: . py-pycares Message-ID: <201605311203.u4VC37mC095796@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: demon Date: Tue May 31 12:03:06 2016 New Revision: 416193 URL: https://svnweb.freebsd.org/changeset/ports/416193 Log: New port: py-cares, python interface for c-ares async resolver. Added: head/dns/py-pycares/ head/dns/py-pycares/Makefile (contents, props changed) head/dns/py-pycares/distinfo (contents, props changed) head/dns/py-pycares/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Tue May 31 11:03:52 2016 (r416192) +++ head/dns/Makefile Tue May 31 12:03:06 2016 (r416193) @@ -172,6 +172,7 @@ SUBDIR += py-namebench SUBDIR += py-publicsuffix SUBDIR += py-py3dns + SUBDIR += py-pycares SUBDIR += py-pydnstable SUBDIR += py-pywdns SUBDIR += py-tldextract Added: head/dns/py-pycares/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-pycares/Makefile Tue May 31 12:03:06 2016 (r416193) @@ -0,0 +1,21 @@ +# Created by: Dmitry Sivachenko <mitya@yandex-team.ru> +# $FreeBSD$ + +PORTNAME= pycares +PORTVERSION= 2.0.1 +CATEGORIES= dns python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= demon@FreeBSD.org +COMMENT= Python interface to c-ares + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist + +PYDISTUTILS_BUILD_TARGET= build_ext +PYDISTUTILS_BUILDARGS= --inplace --force + +.include <bsd.port.mk> Added: head/dns/py-pycares/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-pycares/distinfo Tue May 31 12:03:06 2016 (r416193) @@ -0,0 +1,3 @@ +TIMESTAMP = 1464695332 +SHA256 (pycares-2.0.1.tar.gz) = 3a684c09b753e143d86190b57d71bd82d24492062d11d6ab6acc21349d2da34d +SIZE (pycares-2.0.1.tar.gz) = 225788 Added: head/dns/py-pycares/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-pycares/pkg-descr Tue May 31 12:03:06 2016 (r416193) @@ -0,0 +1,5 @@ +pycares is a Python module which provides an interface to c-ares. +c-ares is a C library that performs DNS requests and name +resolutions asynchronously. + +WWW: https://pypi.python.org/pypi/pycares
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605311203.u4VC37mC095796>