From owner-svn-ports-head@freebsd.org Wed Jun 7 10:34:31 2017 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 8AB1DC09167; Wed, 7 Jun 2017 10:34:31 +0000 (UTC) (envelope-from koobs@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 5B8AB6E9FA; Wed, 7 Jun 2017 10:34:31 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v57AYU5q032437; Wed, 7 Jun 2017 10:34:30 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v57AYUZR032434; Wed, 7 Jun 2017 10:34:30 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201706071034.v57AYUZR032434@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Wed, 7 Jun 2017 10:34:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442824 - in head/dns: . py-idna py3-idna 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: Wed, 07 Jun 2017 10:34:31 -0000 Author: koobs Date: Wed Jun 7 10:34:30 2017 New Revision: 442824 URL: https://svnweb.freebsd.org/changeset/ports/442824 Log: [NEW] dns/py3-idna: Create Python 3.x port of py-idna The latest www/py-requests update [1] unbundled its dependencies, now requiring chardet, idna, urllib3 and certifi from ports. www/py3-requests port was not tested during QA, which would have highlighted the need for many new py3-* ports (and their dependencies). This change creates one of those ports. [1] https://svnweb.freebsd.org/changeset/ports/442565 PR: 219833 Added: head/dns/py3-idna/ - copied from r442817, head/dns/py-idna/ Modified: head/dns/Makefile head/dns/py-idna/Makefile head/dns/py3-idna/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Wed Jun 7 10:29:30 2017 (r442823) +++ head/dns/Makefile Wed Jun 7 10:34:30 2017 (r442824) @@ -186,6 +186,7 @@ SUBDIR += py-tldextract SUBDIR += py-twistedNames SUBDIR += py3-dnspython + SUBDIR += py3-idna SUBDIR += radns SUBDIR += rbldnsd SUBDIR += rbllookup Modified: head/dns/py-idna/Makefile ============================================================================== --- head/dns/py-idna/Makefile Wed Jun 7 10:29:30 2017 (r442823) +++ head/dns/py-idna/Makefile Wed Jun 7 10:34:30 2017 (r442824) @@ -10,7 +10,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org COMMENT= Internationalized Domain Names in Applications (IDNA) -USES= python # Actually, 2.6-2.7,3.3-3.6 +USES?= python # Actually, 2.6-2.7,3.3-3.6 USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes Modified: head/dns/py3-idna/Makefile ============================================================================== --- head/dns/py-idna/Makefile Wed Jun 7 04:06:33 2017 (r442817) +++ head/dns/py3-idna/Makefile Wed Jun 7 10:34:30 2017 (r442824) @@ -1,21 +1,8 @@ # Created by: Kubilay Kocak # $FreeBSD$ -PORTNAME= idna -PORTVERSION= 2.5 -CATEGORIES= dns python -MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +MASTERDIR= ${.CURDIR}/../py-idna -MAINTAINER= koobs@FreeBSD.org -COMMENT= Internationalized Domain Names in Applications (IDNA) +USES= python:3.3+ -USES= python # Actually, 2.6-2.7,3.3-3.6 -USE_PYTHON= autoplist concurrent distutils - -NO_ARCH= yes - -do-test: - @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test - -.include +.include "${MASTERDIR}/Makefile"