diff options
author | Rene Ladan <rene@FreeBSD.org> | 2021-01-11 19:36:17 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2021-01-11 19:36:17 +0000 |
commit | 75d659b385e30935a659f6c63b86195f2b975175 (patch) | |
tree | 91ba938db95d41ba75ac2883a0f16259e0ecaa4a /irc/py-irc | |
parent | 3aaf6bb5547bf9e4cb3bfc37dab67b12e7323222 (diff) |
Remove logic for Python < 3.6 for ports using Python 3.6+
Notes
Notes:
svn path=/head/; revision=561252
Diffstat (limited to 'irc/py-irc')
-rw-r--r-- | irc/py-irc/Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/irc/py-irc/Makefile b/irc/py-irc/Makefile index 9c24c7fd1864..0fbfea24c00e 100644 --- a/irc/py-irc/Makefile +++ b/irc/py-irc/Makefile @@ -17,7 +17,8 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hgtools>0:devel/py-hgtools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}jaraco.util>0:devel/py-jaraco.util@${PY_FLAVOR} USES= python:3.6+ shebangfix USE_PYTHON= distutils autoplist @@ -37,12 +38,4 @@ post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_SCRIPT} ${PORTEXAMPLES:S,^,${WRKSRC}/scripts/,} ${STAGEDIR}${EXAMPLESDIR}/ -.include <bsd.port.pre.mk> - -.if ${PYTHON_REL} < 3600 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}jaraco.util13>0:devel/py-jaraco.util13@${PY_FLAVOR} -.else -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}jaraco.util>0:devel/py-jaraco.util@${PY_FLAVOR} -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> |