1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00

Remove PYTHON_REL check after r559531 (USES=python:3.6+)

This commit is contained in:
Sunpoet Po-Chuan Hsieh 2021-01-10 08:23:28 +00:00
parent b0ebe4c8de
commit b8ef2d7950
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=560978

View File

@ -12,7 +12,8 @@ COMMENT= Utilities for Google Media Downloads and Resumable Uploads
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}google-crc32c>=1.0<2.0:devel/py-google-crc32c@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
USES= python:3.6+
USE_PYTHON= autoplist concurrent distutils
@ -24,20 +25,7 @@ OPTIONS_DEFAULT=AIOHTTP REQUESTS
AIOHTTP_DESC= Use aiohttp
REQUESTS_DESC= Use requests
AIOHTTP_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>=3.6.2<4.0.0:www/py-aiohttp@${PY_FLAVOR}
REQUESTS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.18.0:www/py-requests@${PY_FLAVOR}
.include <bsd.port.pre.mk>
.if ${PYTHON_REL} < 3000
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}crcmod>=1.7:devel/py-crcmod@${PY_FLAVOR}
.endif
.if ${PYTHON_REL} >= 3500
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}google-crc32c>=1.0<2.0:devel/py-google-crc32c@${PY_FLAVOR}
.endif
.if ${PORT_OPTIONS:MAIOHTTP} && ${PYTHON_REL} >= 3600
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}aiohttp>=3.6.2<4.0.0:www/py-aiohttp@${PY_FLAVOR}
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>