sysutils/ansible: Update to 11.4.0

This commit is contained in:
Cy Schubert 2025-04-09 11:15:18 -07:00
parent 64e40096bc
commit 1ff91d7d1b
3 changed files with 5 additions and 27 deletions

View file

@ -1,5 +1,5 @@
PORTNAME= ansible PORTNAME= ansible
DISTVERSION= 9.6.0 DISTVERSION= 11.4.0
CATEGORIES= sysutils python CATEGORIES= sysutils python
MASTER_SITES= PYPI MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -18,9 +18,7 @@ USES= ansible:env cpe python:3.10+ shebangfix
CPE_VENDOR= redhat CPE_VENDOR= redhat
USE_PYTHON= autoplist concurrent distutils USE_PYTHON= autoplist concurrent distutils
SHEBANG_FILES= ansible_collections/community/zabbix/roles/zabbix_proxy/files/install_semodule.bsx \ SHEBANG_FILES= ansible_collections/ovirt/ovirt/roles/disaster_recovery/files/ovirt-dr \
ansible_collections/community/zabbix/roles/zabbix_server/files/install_semodule.bsx \
ansible_collections/ovirt/ovirt/roles/disaster_recovery/files/ovirt-dr \
ansible_collections/ovirt/ovirt/roles/disaster_recovery/files/ovirt-dr ansible_collections/ovirt/ovirt/roles/disaster_recovery/files/ovirt-dr
# It's probably best to leave shebangs in modules untouched as they must be # It's probably best to leave shebangs in modules untouched as they must be
# either unversioned or absent. # either unversioned or absent.

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1716350791 TIMESTAMP = 1744221588
SHA256 (ansible-9.6.0.tar.gz) = 58732a4ad74a746d299ecfa48b7a91cb217e2c0bd3a44493f2d9f29af2f3ab61 SHA256 (ansible-11.4.0.tar.gz) = d25a7f26bf5821f8043bc806019822fd2810bd65e6b6bafb698bbeedadba72bf
SIZE (ansible-9.6.0.tar.gz) = 45088874 SIZE (ansible-11.4.0.tar.gz) = 42407185

View file

@ -1,20 +0,0 @@
--- ansible_collections/ansible/utils/plugins/plugin_utils/base/ipaddr_utils.py.orig 2023-09-07 02:17:47.000000000 -0700
+++ ansible_collections/ansible/utils/plugins/plugin_utils/base/ipaddr_utils.py 2024-05-15 08:23:34.190190000 -0700
@@ -289,7 +289,7 @@
def _private_query(v, value):
- if v.is_private():
+ if not v.ip.is_global():
return value
@@ -298,7 +298,7 @@
if all(
[
v_ip.is_unicast(),
- not v_ip.is_private(),
+ v_ip.is_global(),
not v_ip.is_loopback(),
not v_ip.is_netmask(),
not v_ip.is_hostmask(),