Date: Wed, 20 Jun 2018 16:58:30 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472881 - in head: astro/py-astLib devel/py-Jinja2 devel/py-jenkins-job-builder devel/py-oslo.i18n devel/py-pathtools devel/py-stevedore devel/py-watchdog graphics/py-actdiag graphics/p... Message-ID: <201806201658.w5KGwUFi040073@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Wed Jun 20 16:58:29 2018 New Revision: 472881 URL: https://svnweb.freebsd.org/changeset/ports/472881 Log: Use the correct variable for dependency lines. PKGNAMEPREFIX the name of the current package prefix, it is not correct to use it for other package names. Sponsored by: Absolight Modified: head/astro/py-astLib/Makefile (contents, props changed) head/devel/py-Jinja2/Makefile (contents, props changed) head/devel/py-jenkins-job-builder/Makefile (contents, props changed) head/devel/py-oslo.i18n/Makefile (contents, props changed) head/devel/py-pathtools/Makefile (contents, props changed) head/devel/py-stevedore/Makefile (contents, props changed) head/devel/py-watchdog/Makefile (contents, props changed) head/graphics/py-actdiag/Makefile (contents, props changed) head/graphics/py-blockdiag/Makefile (contents, props changed) head/graphics/py-blockdiagcontrib-cisco/Makefile (contents, props changed) head/graphics/py-gdal/Makefile (contents, props changed) head/graphics/py-nwdiag/Makefile (contents, props changed) head/graphics/py-seqdiag/Makefile (contents, props changed) head/textproc/py-genshi/Makefile (contents, props changed) head/textproc/py-sphinx-intl/Makefile (contents, props changed) head/textproc/py-sphinx_numfig/Makefile (contents, props changed) head/textproc/py-sphinx_wikipedia/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-adadomain/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-bitbucket/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-fulltoc/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-httpdomain/Makefile (contents, props changed) head/www/py-py-restclient/Makefile (contents, props changed) head/www/py-pywikibot/Makefile (contents, props changed) head/www/py-qt5-webkit/Makefile (contents, props changed) head/www/py-restclient/Makefile (contents, props changed) Modified: head/astro/py-astLib/Makefile ============================================================================== --- head/astro/py-astLib/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/astro/py-astLib/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,11 +13,11 @@ COMMENT= Astronomy modules for Python LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}astropy>=1.1:astro/py-astropy@${FLAVOR} \ - ${PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astropy>=1.1:astro/py-astropy@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${FLAVOR} \ ${PYNUMPY} \ - ${PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${FLAVOR} \ - ${PKGNAMEPREFIX}scipy>=0.7.0:science/py-scipy@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.7.0:science/py-scipy@${FLAVOR} PORTSCOUT= skipv:0.15,0.17,0.17.1 # incorrect versioning upstream Modified: head/devel/py-Jinja2/Makefile ============================================================================== --- head/devel/py-Jinja2/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-Jinja2/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -40,7 +40,7 @@ PY2TO3_ARGS= --fix=all --no-diffs --nobackups --verbos .include <bsd.port.pre.mk> .if ${PKGNAMESUFFIX} == "-doc" -BUILD_DEPENDS+= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} PORTDOCS= * PORT_OPTIONS:= ${PORT_OPTIONS:NEXAMPLES} Modified: head/devel/py-jenkins-job-builder/Makefile ============================================================================== --- head/devel/py-jenkins-job-builder/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-jenkins-job-builder/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,15 +12,15 @@ COMMENT= Manage Jenkins jobs with YAML LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>0:devel/py-pbr@${FLAVOR} -RUN_DEPENDS= ${PKGNAMEPREFIX}yaml>0:devel/py-yaml@${FLAVOR} \ - ${PKGNAMEPREFIX}pbr>0:devel/py-pbr@${FLAVOR} \ - ${PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} \ - ${PKGNAMEPREFIX}stevedore>0:devel/py-stevedore@${FLAVOR} \ - ${PKGNAMEPREFIX}python-jenkins>0:devel/py-python-jenkins@${FLAVOR} \ - ${PKGNAMEPREFIX}fasteners>0:devel/py-fasteners@${FLAVOR} \ - ${PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${FLAVOR} \ - ${PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>0:devel/py-pbr@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pbr>0:devel/py-pbr@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}stevedore>0:devel/py-stevedore@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-jenkins>0:devel/py-python-jenkins@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}fasteners>0:devel/py-fasteners@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} USES= python USE_PYTHON= autoplist distutils Modified: head/devel/py-oslo.i18n/Makefile ============================================================================== --- head/devel/py-oslo.i18n/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-oslo.i18n/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,7 +12,7 @@ COMMENT= Oslo i18n library LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=2.3.4:devel/py-babel@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${FLAVOR} Modified: head/devel/py-pathtools/Makefile ============================================================================== --- head/devel/py-pathtools/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-pathtools/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -20,7 +20,7 @@ USE_PYTHON= distutils autoplist .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MDOCS} -BUILD_DEPENDS+= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} post-build: Modified: head/devel/py-stevedore/Makefile ============================================================================== --- head/devel/py-stevedore/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-stevedore/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,8 +13,8 @@ COMMENT= Manage dynamic plugins for Python application LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${FLAVOR} -RUN_DEPENDS= ${PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${FLAVOR} NO_ARCH= yes USES= python Modified: head/devel/py-watchdog/Makefile ============================================================================== --- head/devel/py-watchdog/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-watchdog/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,12 +12,12 @@ COMMENT= Python API library to monitor file system eve LICENSE= APACHE20 -RUN_DEPENDS= ${PKGNAMEPREFIX}argh>=0.26.1:devel/py-argh@${FLAVOR} \ - ${PKGNAMEPREFIX}pathtools>=0.1.2:devel/py-pathtools@${FLAVOR} \ - ${PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argh>=0.26.1:devel/py-argh@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pathtools>=0.1.2:devel/py-pathtools@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml@${FLAVOR} -DOCS_BUILD_DEPENDS= ${PKGNAMEPREFIX}pathtools>=0.1.2:devel/py-pathtools@${FLAVOR} \ - ${PKGNAMEPREFIX}sphinx>=1.4.4:textproc/py-sphinx@${FLAVOR} +DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pathtools>=0.1.2:devel/py-pathtools@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinx>=1.4.4:textproc/py-sphinx@${FLAVOR} DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} GH_ACCOUNT= gorakhargosh Modified: head/graphics/py-actdiag/Makefile ============================================================================== --- head/graphics/py-actdiag/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-actdiag/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,9 +13,9 @@ COMMENT= Simple activity-diagram image generator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ - ${PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} \ - ${PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} USES= python:-3.4 USE_PYTHON= autoplist distutils Modified: head/graphics/py-blockdiag/Makefile ============================================================================== --- head/graphics/py-blockdiag/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-blockdiag/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,9 +13,9 @@ COMMENT= Simple block-diagram image generator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ - ${PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ - ${PKGNAMEPREFIX}webcolors>=0:graphics/py-webcolors@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}webcolors>=0:graphics/py-webcolors@${FLAVOR} USES= python:-3.4 USE_PYTHON= autoplist distutils @@ -33,7 +33,7 @@ PDF_DESC= Enable PDF output OPTIONS_DEFAULT= PDF IPAFONT_RUN_DEPENDS= ${LOCALBASE}/share/font-ipa/ipag.otf:japanese/font-ipa -PDF_RUN_DEPENDS= ${PKGNAMEPREFIX}reportlab>0:print/py-reportlab@${FLAVOR} +PDF_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}reportlab>0:print/py-reportlab@${FLAVOR} post-patch: ${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/src/blockdiag/utils/bootstrap.py Modified: head/graphics/py-blockdiagcontrib-cisco/Makefile ============================================================================== --- head/graphics/py-blockdiagcontrib-cisco/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-blockdiagcontrib-cisco/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -10,7 +10,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= kuriyama@FreeBSD.org COMMENT= Networking shapes for blockdiag designed by Cisco -RUN_DEPENDS= ${PKGNAMEPREFIX}blockdiag>=0.8.0:graphics/py-blockdiag@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}blockdiag>=0.8.0:graphics/py-blockdiag@${FLAVOR} USES= python:2.7 USE_PYTHON= distutils autoplist Modified: head/graphics/py-gdal/Makefile ============================================================================== --- head/graphics/py-gdal/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-gdal/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -27,8 +27,8 @@ WRKSRC_SUBDIR= swig/python SHEBANG_FILES= scripts/*.py -NUMPY_BUILD_DEPENDS= ${PKGNAMEPREFIX}numpy>=1.0.0,1:math/py-numpy@${FLAVOR} -NUMPY_RUN_DEPENDS= ${PKGNAMEPREFIX}numpy>=1.0.0,1:math/py-numpy@${FLAVOR} +NUMPY_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.0.0,1:math/py-numpy@${FLAVOR} +NUMPY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.0.0,1:math/py-numpy@${FLAVOR} NUMPY_USES= fortran post-install: Modified: head/graphics/py-nwdiag/Makefile ============================================================================== --- head/graphics/py-nwdiag/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-nwdiag/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,9 +13,9 @@ COMMENT= Simple network-diagram image generator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ - ${PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ - ${PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} USES= python:-3.4 USE_PYTHON= autoplist distutils Modified: head/graphics/py-seqdiag/Makefile ============================================================================== --- head/graphics/py-seqdiag/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-seqdiag/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,9 +13,9 @@ COMMENT= Simple sequence-diagram image generator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ - ${PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ - ${PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} USES= python:-3.4 USE_PYTHON= autoplist distutils Modified: head/textproc/py-genshi/Makefile ============================================================================== --- head/textproc/py-genshi/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-genshi/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -20,6 +20,6 @@ BABEL_DESC= I18n support through the Babel plugin USES= python USE_PYTHON= distutils autoplist -BABEL_RUN_DEPENDS= ${PKGNAMEPREFIX}Babel>=0.9.6:devel/py-babel@${FLAVOR} +BABEL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=0.9.6:devel/py-babel@${FLAVOR} .include <bsd.port.mk> Modified: head/textproc/py-sphinx-intl/Makefile ============================================================================== --- head/textproc/py-sphinx-intl/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinx-intl/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -14,9 +14,9 @@ COMMENT= Sphinx-intl translation features LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} \ - ${PKGNAMEPREFIX}polib>=1.0.6:devel/py-polib@${FLAVOR} \ - ${PKGNAMEPREFIX}six>=1.8.0:devel/py-six@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}polib>=1.0.6:devel/py-polib@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.8.0:devel/py-six@${FLAVOR} USES= python USE_PYTHON= autoplist distutils Modified: head/textproc/py-sphinx_numfig/Makefile ============================================================================== --- head/textproc/py-sphinx_numfig/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinx_numfig/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,7 +12,7 @@ COMMENT= Autonumbering figures in Sphinx LICENSE= BSD3CLAUSE -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.3.1:textproc/py-sphinx@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.3.1:textproc/py-sphinx@${FLAVOR} USES= python:2.7 tar:tgz USE_PYTHON= flavors Modified: head/textproc/py-sphinx_wikipedia/Makefile ============================================================================== --- head/textproc/py-sphinx_wikipedia/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinx_wikipedia/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -11,7 +11,7 @@ COMMENT= Sphinx extension which adds role to create li LICENSE= BSD3CLAUSE -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.3.1:textproc/py-sphinx@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.3.1:textproc/py-sphinx@${FLAVOR} USES= python USE_PYTHON= flavors Modified: head/textproc/py-sphinxcontrib-adadomain/Makefile ============================================================================== --- head/textproc/py-sphinxcontrib-adadomain/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinxcontrib-adadomain/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -14,7 +14,7 @@ COMMENT= Sphinx Adadomain Extension LICENSE= BSD2CLAUSE -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/textproc/py-sphinxcontrib-bitbucket/Makefile ============================================================================== --- head/textproc/py-sphinxcontrib-bitbucket/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinxcontrib-bitbucket/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -11,7 +11,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= nivit@FreeBSD.org COMMENT= Sphinx/BitBucket integration -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/textproc/py-sphinxcontrib-fulltoc/Makefile ============================================================================== --- head/textproc/py-sphinxcontrib-fulltoc/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinxcontrib-fulltoc/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,8 +12,8 @@ COMMENT= Sphinx Fulltoc Extension LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>=1.8.1:devel/py-pbr@${FLAVOR} -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.8.1:devel/py-pbr@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/textproc/py-sphinxcontrib-httpdomain/Makefile ============================================================================== --- head/textproc/py-sphinxcontrib-httpdomain/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinxcontrib-httpdomain/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -10,7 +10,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wg@FreeBSD.org COMMENT= Sphinx domain for HTTP APIs -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/www/py-py-restclient/Makefile ============================================================================== --- head/www/py-py-restclient/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/www/py-py-restclient/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -11,7 +11,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wen@FreeBSD.org COMMENT= Python REST Client -RUN_DEPENDS= ${PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/www/py-pywikibot/Makefile ============================================================================== --- head/www/py-pywikibot/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/www/py-pywikibot/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,7 +12,7 @@ COMMENT= Wikipedia bot for Python LICENSE= MIT -RUN_DEPENDS= ${PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} USES= dos2unix python USE_PYTHON= autoplist distutils Modified: head/www/py-qt5-webkit/Makefile ============================================================================== --- head/www/py-qt5-webkit/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/www/py-qt5-webkit/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -8,7 +8,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtWebKit module BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:devel/py-sip@${FLAVOR} -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT5_VERSION}:x11-toolkits/py-qt5-gui@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gui>=${PYQT5_VERSION}:x11-toolkits/py-qt5-gui@${FLAVOR} CONFIGURE_ARGS= --enable QtWebKit PYQT_DIST= yes Modified: head/www/py-restclient/Makefile ============================================================================== --- head/www/py-restclient/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/www/py-restclient/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,7 +13,7 @@ COMMENT= Convenient library for writing REST clients LICENSE= BSD3CLAUSE -RUN_DEPENDS= ${PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${FLAVOR} USES= python USE_PYTHON= distutils autoplist
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806201658.w5KGwUFi040073>