From owner-svn-ports-head@freebsd.org Thu Sep 22 16:08:55 2016 Return-Path: Delivered-To: svn-ports-head@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 474EABE53C2; Thu, 22 Sep 2016 16:08:55 +0000 (UTC) (envelope-from rm@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 1897B257; Thu, 22 Sep 2016 16:08:55 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8MG8sxC080251; Thu, 22 Sep 2016 16:08:54 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8MG8swA080248; Thu, 22 Sep 2016 16:08:54 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201609221608.u8MG8swA080248@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 22 Sep 2016 16:08:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422632 - in head/dns: . py-dnspython py3-dnspython X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 16:08:55 -0000 Author: rm Date: Thu Sep 22 16:08:53 2016 New Revision: 422632 URL: https://svnweb.freebsd.org/changeset/ports/422632 Log: Add dns/py3-dnspython This is the slave port for py-dnspython, that is built against python3. Submitted by: kp (via ports@ ML) Added: head/dns/py3-dnspython/ head/dns/py3-dnspython/Makefile (contents, props changed) Modified: head/dns/Makefile head/dns/py-dnspython/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Thu Sep 22 15:38:53 2016 (r422631) +++ head/dns/Makefile Thu Sep 22 16:08:53 2016 (r422632) @@ -179,6 +179,7 @@ SUBDIR += py-pywdns SUBDIR += py-tldextract SUBDIR += py-twistedNames + SUBDIR += py3-dnspython SUBDIR += radns SUBDIR += rbldnsd SUBDIR += rbllookup Modified: head/dns/py-dnspython/Makefile ============================================================================== --- head/dns/py-dnspython/Makefile Thu Sep 22 15:38:53 2016 (r422631) +++ head/dns/py-dnspython/Makefile Thu Sep 22 16:08:53 2016 (r422632) @@ -11,7 +11,7 @@ MAINTAINER= rm@FreeBSD.org COMMENT= DNS toolkit for Python NO_ARCH= yes -USES= python:2.7+ +USES?= python:2.7+ USE_PYTHON= autoplist distutils OPTIONS_DEFINE= DOCS EXAMPLES PYCRYPTO Added: head/dns/py3-dnspython/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py3-dnspython/Makefile Thu Sep 22 16:08:53 2016 (r422632) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-dnspython + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile"