From ba3bf15be283c751865ed504d00e4eb0891c9f5a Mon Sep 17 00:00:00 2001 From: Domagoj Stolfa Date: Mon, 3 May 2021 18:17:02 +0100 Subject: [PATCH] ansible-base: add python3-packaging as a runtime dependency Running the current ansible package results in a warning: "[WARNING]: packaging Python module unavailable; unable to validate collection Ansible version requirements" A simple web search leads to the Ansible developers stating that python3-packaging is a dependency for ansible-base[1], and this commit adds it. [1]: https://github.com/ansible/ansible/issues/72117 --- srcpkgs/ansible-base/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ansible-base/template b/srcpkgs/ansible-base/template index 195856106a84..68036326c93d 100644 --- a/srcpkgs/ansible-base/template +++ b/srcpkgs/ansible-base/template @@ -5,7 +5,7 @@ revision=1 build_style=python3-module hostmakedepends="python3-setuptools" depends="${hostmakedepends} python3-cryptography python3-Jinja2 python3-paramiko - python3-yaml" + python3-yaml python3-packaging" short_desc="Simple deployment, configuration management and execution framework" maintainer="Jan Christian Grünhage " license="GPL-3.0-or-later"