From owner-svn-ports-all@freebsd.org Tue May 31 12:03:08 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7AAD4B54039; Tue, 31 May 2016 12:03:08 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 322EB1D7E; Tue, 31 May 2016 12:03:08 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4VC373O095800; Tue, 31 May 2016 12:03:07 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4VC37mC095796; Tue, 31 May 2016 12:03:07 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201605311203.u4VC37mC095796@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Tue, 31 May 2016 12:03:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416193 - in head/dns: . py-pycares X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 May 2016 12:03:08 -0000 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 +# $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 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