From owner-svn-ports-all@freebsd.org Wed Jun 7 10:49:24 2017 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 C1D70C09597; Wed, 7 Jun 2017 10:49:24 +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 91FF46F00C; Wed, 7 Jun 2017 10:49:24 +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 v57AnNjF037048; Wed, 7 Jun 2017 10:49:23 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v57AnN7T037045; Wed, 7 Jun 2017 10:49:23 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201706071049.v57AnN7T037045@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:49:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442826 - in head/security: . py-certifi py3-certifi 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.23 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: Wed, 07 Jun 2017 10:49:24 -0000 Author: koobs Date: Wed Jun 7 10:49:23 2017 New Revision: 442826 URL: https://svnweb.freebsd.org/changeset/ports/442826 Log: [NEW] security/py3-certifi: Create Python 3.x port of py-certifi 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 Approved by: koobs (python, with hat) Added: head/security/py3-certifi/ - copied from r442817, head/security/py-certifi/ Deleted: head/security/py3-certifi/distinfo head/security/py3-certifi/pkg-descr Modified: head/security/Makefile head/security/py-certifi/Makefile head/security/py3-certifi/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Jun 7 10:44:55 2017 (r442825) +++ head/security/Makefile Wed Jun 7 10:49:23 2017 (r442826) @@ -963,6 +963,7 @@ SUBDIR += py-zope.securitypolicy SUBDIR += py-zope.session SUBDIR += py-zxcvbn-python + SUBDIR += py3-certifi SUBDIR += py3-libnacl SUBDIR += py3-pycrypto SUBDIR += qtkeychain-qt4 Modified: head/security/py-certifi/Makefile ============================================================================== --- head/security/py-certifi/Makefile Wed Jun 7 10:44:55 2017 (r442825) +++ head/security/py-certifi/Makefile Wed Jun 7 10:49:23 2017 (r442826) @@ -13,7 +13,7 @@ COMMENT= Mozilla SSL certificates LICENSE= ISCL NO_ARCH= yes -USES= python +USES?= python USE_PYTHON= autoplist distutils .include Modified: head/security/py3-certifi/Makefile ============================================================================== --- head/security/py-certifi/Makefile Wed Jun 7 04:06:33 2017 (r442817) +++ head/security/py3-certifi/Makefile Wed Jun 7 10:49:23 2017 (r442826) @@ -1,19 +1,8 @@ # Created by: Olivier Duchateau # $FreeBSD$ -PORTNAME= certifi -PORTVERSION= 2017.4.17 -CATEGORIES= security python -MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +MASTERDIR= ${.CURDIR}/../py-certifi -MAINTAINER= python@FreeBSD.org -COMMENT= Mozilla SSL certificates +USES= python:3.3+ -LICENSE= ISCL - -NO_ARCH= yes -USES= python -USE_PYTHON= autoplist distutils - -.include +.include "${MASTERDIR}/Makefile"