svn commit: r560966 - head/security/py-google-auth

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Jan 10 08:22:27 UTC 2021


Author: sunpoet
Date: Sun Jan 10 08:22:22 2021
New Revision: 560966
URL: https://svnweb.freebsd.org/changeset/ports/560966

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

Modified:
  head/security/py-google-auth/Makefile

Modified: head/security/py-google-auth/Makefile
==============================================================================
--- head/security/py-google-auth/Makefile	Sun Jan 10 08:22:18 2021	(r560965)
+++ head/security/py-google-auth/Makefile	Sun Jan 10 08:22:22 2021	(r560966)
@@ -13,7 +13,9 @@ COMMENT=	Google Authentication Library
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pyasn1-modules>=0.2.1:devel/py-pyasn1-modules@${PY_FLAVOR} \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cachetools>=2.0.0<5.0:devel/py-cachetools@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pyasn1-modules>=0.2.1:devel/py-pyasn1-modules@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}rsa>=3.1.4<5:security/py-rsa@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR}
 
 USES=		python:3.6+
@@ -25,18 +27,6 @@ OPTIONS_DEFINE=	AIOHTTP
 OPTIONS_DEFAULT=AIOHTTP
 AIOHTTP_DESC=	Use aiohttp
 
-.include <bsd.port.pre.mk>
+AIOHTTP_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}aiohttp>=3.6.2<4.0.0:www/py-aiohttp@${PY_FLAVOR}
 
-.if ${PYTHON_REL} < 3600
-RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}cachetools3>=2.0.0<5.0:devel/py-cachetools3@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}rsa>=3.1.4<4.6:security/py-rsa@${PY_FLAVOR}
-.else
-RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}cachetools>=2.0.0<5.0:devel/py-cachetools@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}rsa>=3.1.4<5:security/py-rsa@${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>


More information about the svn-ports-all mailing list