svn commit: r504482 - branches/2019Q2/devel/py-flake8

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Jun 18 12:42:06 UTC 2019


Author: amdmi3
Date: Tue Jun 18 12:42:05 2019
New Revision: 504482
URL: https://svnweb.freebsd.org/changeset/ports/504482

Log:
  MFH: r504481
  
  - Add missing depend for ancient python versions
  
  PR:		238503
  Submitted by:	john at saltant.com
  Approved by:	ports-secteam (with hat)

Modified:
  branches/2019Q2/devel/py-flake8/Makefile
Directory Properties:
  branches/2019Q2/   (props changed)

Modified: branches/2019Q2/devel/py-flake8/Makefile
==============================================================================
--- branches/2019Q2/devel/py-flake8/Makefile	Tue Jun 18 12:40:14 2019	(r504481)
+++ branches/2019Q2/devel/py-flake8/Makefile	Tue Jun 18 12:42:05 2019	(r504482)
@@ -3,6 +3,7 @@
 
 PORTNAME=	flake8
 PORTVERSION=	3.7.7
+PORTREVISION=	2
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -27,7 +28,12 @@ NO_ARCH=	yes
 .include <bsd.port.pre.mk>
 
 .if ${PYTHON_REL} < 3200
-RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}configparser>0:devel/py-configparser@${PY_FLAVOR}
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}configparser>0:devel/py-configparser@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}functools32>0:devel/py-functools32@${PY_FLAVOR}
+.endif
+
+.if ${PYTHON_REL} < 3400
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}typing>0:devel/py-typing@${PY_FLAVOR}
 .endif
 
 .include <bsd.port.post.mk>


More information about the svn-ports-branches mailing list