Date: Mon, 1 Jul 2019 06:40:11 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r505543 - branches/2019Q2/devel/py-osprofiler Message-ID: <201907010640.x616eBaO043417@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Mon Jul 1 06:40:11 2019 New Revision: 505543 URL: https://svnweb.freebsd.org/changeset/ports/505543 Log: MFH: r505006 devel/py-osprofiler: Add missing dependency osprofiler requires pbr>=1.8 at build time, and fails with the following error at configure time when it is not available: distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr>=1.8') Reported by: poudriere: pbr reverse dependents bulk (exp) run Approved by: portmgr (blanket(s): missing dependencies, build fix) Approved by: ports-secteam (blanket: build fix, dependencies) Modified: branches/2019Q2/devel/py-osprofiler/Makefile branches/2019Q2/devel/py-osprofiler/pkg-descr (contents, props changed) Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/devel/py-osprofiler/Makefile ============================================================================== --- branches/2019Q2/devel/py-osprofiler/Makefile Mon Jul 1 06:32:43 2019 (r505542) +++ branches/2019Q2/devel/py-osprofiler/Makefile Mon Jul 1 06:40:11 2019 (r505543) @@ -13,6 +13,7 @@ COMMENT= OpenStack Profiler Library LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.8:devel/py-pbr@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}oslo.utils>=3.16.0:devel/py-oslo.utils@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}webob>=1.6.0:www/py-webob@${PY_FLAVOR} \ Modified: branches/2019Q2/devel/py-osprofiler/pkg-descr ============================================================================== --- branches/2019Q2/devel/py-osprofiler/pkg-descr Mon Jul 1 06:32:43 2019 (r505542) +++ branches/2019Q2/devel/py-osprofiler/pkg-descr Mon Jul 1 06:40:11 2019 (r505543) @@ -6,4 +6,4 @@ through all involved services. This trace can then be build a tree of calls which can be quite handy for a variety of reasons (for example in isolating cross-project performance issues). -WWW: https://https://docs.openstack.org/osprofiler/ +WWW: https://docs.openstack.org/osprofiler/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907010640.x616eBaO043417>