Date: Mon, 26 Feb 2018 22:31:41 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463076 - head/devel/py-flake8 Message-ID: <201802262231.w1QMVfmQ027135@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Mon Feb 26 22:31:41 2018 New Revision: 463076 URL: https://svnweb.freebsd.org/changeset/ports/463076 Log: Simplify Makefile: use PY_ENUM34 With hat: python Modified: head/devel/py-flake8/Makefile Modified: head/devel/py-flake8/Makefile ============================================================================== --- head/devel/py-flake8/Makefile Mon Feb 26 22:31:36 2018 (r463075) +++ head/devel/py-flake8/Makefile Mon Feb 26 22:31:41 2018 (r463076) @@ -13,7 +13,8 @@ COMMENT= Code checking using pep8 and pyflakes LICENSE= MIT BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mccabe>=0.5.0:devel/py-mccabe@${FLAVOR} \ +RUN_DEPENDS= ${PY_ENUM34} \ + ${PYTHON_PKGNAMEPREFIX}mccabe>=0.5.0:devel/py-mccabe@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pycodestyle>=2.0.0:devel/py-pycodestyle@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyflakes>=0.8.1:devel/py-pyflakes@${FLAVOR} @@ -25,9 +26,6 @@ NO_ARCH= yes .if ${PYTHON_REL} < 3200 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}configparser>0:devel/py-configparser@${FLAVOR} -.endif -.if ${PYTHON_REL} < 3400 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py-enum34@${FLAVOR} .endif .include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802262231.w1QMVfmQ027135>