Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Jun 2019 12:42:06 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r504482 - branches/2019Q2/devel/py-flake8
Message-ID:  <201906181242.x5ICg6xb028257@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906181242.x5ICg6xb028257>