From 4c87890bb452c7f3cd228383e067ca11e1c498af Mon Sep 17 00:00:00 2001 From: Kubilay Kocak Date: Wed, 7 Jun 2017 10:49:23 +0000 Subject: [PATCH] [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) --- security/Makefile | 1 + security/py-certifi/Makefile | 2 +- security/py3-certifi/Makefile | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 security/py3-certifi/Makefile diff --git a/security/Makefile b/security/Makefile index fd1164d80cbb..202856f8f64e 100644 --- a/security/Makefile +++ b/security/Makefile @@ -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 diff --git a/security/py-certifi/Makefile b/security/py-certifi/Makefile index 2e1242831897..7ba850a57fcc 100644 --- a/security/py-certifi/Makefile +++ b/security/py-certifi/Makefile @@ -13,7 +13,7 @@ COMMENT= Mozilla SSL certificates LICENSE= ISCL NO_ARCH= yes -USES= python +USES?= python USE_PYTHON= autoplist distutils .include diff --git a/security/py3-certifi/Makefile b/security/py3-certifi/Makefile new file mode 100644 index 000000000000..1340cdbcac58 --- /dev/null +++ b/security/py3-certifi/Makefile @@ -0,0 +1,8 @@ +# Created by: Olivier Duchateau +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-certifi + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile"