diff options
author | Mateusz Piotrowski <0mp@FreeBSD.org> | 2021-05-17 18:54:15 +0800 |
---|---|---|
committer | Mateusz Piotrowski <0mp@FreeBSD.org> | 2021-05-17 19:22:32 +0800 |
commit | f00563e317170fdc1d1c3c07e0e8b2b6108174fd (patch) | |
tree | af84a0b87635670e2a64d94ca3d7bc3c694d9f55 /sysutils | |
parent | fa564838212dbe634d9bdcb259357666ea6c1e9c (diff) | |
download | freebsd-ports-gnome-f00563e317170fdc1d1c3c07e0e8b2b6108174fd.tar.gz freebsd-ports-gnome-f00563e317170fdc1d1c3c07e0e8b2b6108174fd.tar.zst freebsd-ports-gnome-f00563e317170fdc1d1c3c07e0e8b2b6108174fd.zip |
sysutils/py-ansible-{base,core}: Fix run dependencies
It's been reported that a ping test to a group of hosts results in the
following warning:
[WARNING]: packaging Python module unavailable; unable to validate collection Ansible version requirements
Add devel/py-packaging to RUN_DEPENDS to fix this issue. This also
matches the requirements.txt files of the modified ports.
Reported by: Tom Weustink <t.weustink@outlook.com>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/py-ansible-base/Makefile | 4 | ||||
-rw-r--r-- | sysutils/py-ansible-core/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sysutils/py-ansible-base/Makefile b/sysutils/py-ansible-base/Makefile index 85e799441a66..69138ed1798e 100644 --- a/sysutils/py-ansible-base/Makefile +++ b/sysutils/py-ansible-base/Makefile @@ -1,6 +1,6 @@ PORTNAME= ansible-base DISTVERSION= 2.10.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,13 +15,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}resolvelib>0:devel/py-resolvelib@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bcrypt>=0:security/py-bcrypt@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}passlib>0:security/py-passlib@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pycrypto>=0:security/py-pycrypto@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest-mock>0:devel/py-pytest-mock@${PY_FLAVOR} \ diff --git a/sysutils/py-ansible-core/Makefile b/sysutils/py-ansible-core/Makefile index 4a5075c92a94..ba2301474a0e 100644 --- a/sysutils/py-ansible-core/Makefile +++ b/sysutils/py-ansible-core/Makefile @@ -1,6 +1,6 @@ PORTNAME= ansible-core DISTVERSION= 2.11.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,13 +13,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}resolvelib>0:devel/py-resolvelib@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bcrypt>=0:security/py-bcrypt@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}passlib>0:security/py-passlib@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pycrypto>=0:security/py-pycrypto@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest-mock>0:devel/py-pytest-mock@${PY_FLAVOR} \ |