diff options
author | woodsb02 <woodsb02@FreeBSD.org> | 2017-06-10 11:21:13 +0800 |
---|---|---|
committer | woodsb02 <woodsb02@FreeBSD.org> | 2017-06-10 11:21:13 +0800 |
commit | 58d954eb65afd92343a45f57ed6c46de5eb7394a (patch) | |
tree | 338c9e97f3994aeeb4649058b7b6765081f8e3e6 /net | |
parent | 1106d32adc9962a847ad51e36616aa497c2e71aa (diff) | |
download | freebsd-ports-gnome-58d954eb65afd92343a45f57ed6c46de5eb7394a.tar.gz freebsd-ports-gnome-58d954eb65afd92343a45f57ed6c46de5eb7394a.tar.zst freebsd-ports-gnome-58d954eb65afd92343a45f57ed6c46de5eb7394a.zip |
net/py-urllib3: Fix build with Python 3.3
PR: 219833
Reported by: koobs
Approved by: portmgr blanket
Diffstat (limited to 'net')
-rw-r--r-- | net/py-urllib3/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/py-urllib3/Makefile b/net/py-urllib3/Makefile index 1d06e32c2900..bf85161c7b7b 100644 --- a/net/py-urllib3/Makefile +++ b/net/py-urllib3/Makefile @@ -29,8 +29,10 @@ SUB_FILES= pkg-message RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}ipaddress>=0:net/py-ipaddress .endif -.if ${PYTHON_REL} < 3400 +.if ${PYTHON_REL} < 3300 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}certifi>=0:security/py-certifi +.elif ${PYTHON_REL} < 3400 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}certifi>=0:security/py3-certifi .endif .include <bsd.port.post.mk> |