The py-flake8 port is missing some run dependencies that flake8 requires: devel/py-configparser devel/py-enum34
Both dependencies are conditional (as per setup.py:requires): if sys.version_info < (3, 4): requires.append("enum34") if sys.version_info < (3, 2): requires.append("configparser")
Created attachment 188461 [details] Patch Add missing dependencies. portlint: No error testport: No error (11.1-RELEASE, amd64, py27 and py36 flavors) Although portlint reports "no port directory" warnings caused by ${FLAVOR} in RUN_DEPENDS, the port builds and installs successfully.
*** Bug 224043 has been marked as a duplicate of this bug. ***
A commit references this bug: Author: wg Date: Mon Dec 4 12:12:58 UTC 2017 New revision: 455509 URL: https://svnweb.freebsd.org/changeset/ports/455509 Log: devel/py-flake8: add missing dependencies PR: 219648 Submitted by: asomers Changes: head/devel/py-flake8/Makefile
thanks!