svn commit: r442826 - in head/security: . py-certifi py3-certifi

Kubilay Kocak koobs at FreeBSD.org
Wed Jun 7 10:49:24 UTC 2017


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 <bsd.port.mk>

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 <duchateau.olivier at gmail.com>
 # $FreeBSD$
 
-PORTNAME=	certifi
-PORTVERSION=	2017.4.17
-CATEGORIES=	security python
-MASTER_SITES=	CHEESESHOP
-PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+MASTERDIR=      ${.CURDIR}/../py-certifi
 
-MAINTAINER=	python at FreeBSD.org
-COMMENT=	Mozilla SSL certificates
+USES=   python:3.3+
 
-LICENSE=	ISCL
-
-NO_ARCH=	yes
-USES=		python
-USE_PYTHON=	autoplist distutils
-
-.include <bsd.port.mk>
+.include "${MASTERDIR}/Makefile"


More information about the svn-ports-all mailing list