Date: Sat, 31 Aug 2019 22:00:09 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r510466 - in head: devel/py-botocore textproc/py-elasticsearch-curator Message-ID: <201908312200.x7VM09hw009970@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sat Aug 31 22:00:08 2019 New Revision: 510466 URL: https://svnweb.freebsd.org/changeset/ports/510466 Log: Update RUN_DEPENDS of py-botocore and unbreak py-elasticsearch-curator botocore 1.12.209 banned docutils 0.15 (docutils != 0.15) for wrong python 2 wheel which is already fixed [1][2]. And it does not affect FreeBSD ports users. Later, botocore changed docutils from != 0.15 to < 0.15 [3]. Recent py-botocore update to 1.12.213 in r509585 fixes this problem since upstream changed the docutils version from docutils>=0.10,<0.15 to docutils>=0.10,<0.16. While I'm here, mark the upper bound of RUN_DEPENDS of py-botocore to avoid potential breakage in the future. [1] https://github.com/aws/aws-cli/issues/4332 [2] https://sourceforge.net/p/docutils/bugs/365/ [3] https://github.com/boto/botocore/commit/add5c8b6b4e208fb0eaba49302df9c3d75b604b9 PR: 239664 Submitted by: sunpoet (myself) Modified: head/devel/py-botocore/Makefile head/textproc/py-elasticsearch-curator/Makefile Modified: head/devel/py-botocore/Makefile ============================================================================== --- head/devel/py-botocore/Makefile Sat Aug 31 22:00:03 2019 (r510465) +++ head/devel/py-botocore/Makefile Sat Aug 31 22:00:08 2019 (r510466) @@ -13,10 +13,10 @@ COMMENT= Low-level, core functionality of boto 3 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:devel/py-dateutil@${PY_FLAVOR} # <3.0.0 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}jmespath>=0.7.1:devel/py-jmespath@${PY_FLAVOR} # <1.0.0 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}urllib3>=1.20:net/py-urllib3@${PY_FLAVOR} # <1.26 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}docutils>=0.10:textproc/py-docutils@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=2.1<3.0.0:devel/py-dateutil@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}jmespath>=0.7.1<1.0.0:devel/py-jmespath@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}urllib3>=1.20,1<1.26,1:net/py-urllib3@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}docutils>=0.10<0.16:textproc/py-docutils@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \ Modified: head/textproc/py-elasticsearch-curator/Makefile ============================================================================== --- head/textproc/py-elasticsearch-curator/Makefile Sat Aug 31 22:00:03 2019 (r510465) +++ head/textproc/py-elasticsearch-curator/Makefile Sat Aug 31 22:00:08 2019 (r510466) @@ -12,8 +12,6 @@ COMMENT= Python index manager for Elasticsearch LICENSE= APACHE20 -BROKEN= fails to configure - BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto3>=1.7.24:www/py-boto3@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}certifi>=2018.10.15:security/py-certifi@${PY_FLAVOR} \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908312200.x7VM09hw009970>