git: 1ff91d7d1b1c - main - sysutils/ansible: Update to 11.4.0

From: Cy Schubert <cy_at_FreeBSD.org>
Date: Wed, 09 Apr 2025 18:28:47 UTC
The branch main has been updated by cy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=1ff91d7d1b1c3e00fd647b2254293eaecd2c26a1

commit 1ff91d7d1b1c3e00fd647b2254293eaecd2c26a1
Author:     Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2025-04-09 18:15:18 +0000
Commit:     Cy Schubert <cy@FreeBSD.org>
CommitDate: 2025-04-09 18:28:17 +0000

    sysutils/ansible: Update to 11.4.0
---
 sysutils/ansible/Makefile                            |  6 ++----
 sysutils/ansible/distinfo                            |  6 +++---
 ..._utils_plugins_plugin__utils_base_ipaddr_utils.py | 20 --------------------
 3 files changed, 5 insertions(+), 27 deletions(-)

diff --git a/sysutils/ansible/Makefile b/sysutils/ansible/Makefile
index 63e0411387af..563ddc2227ca 100644
--- a/sysutils/ansible/Makefile
+++ b/sysutils/ansible/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	ansible
-DISTVERSION=	9.6.0
+DISTVERSION=	11.4.0
 CATEGORIES=	sysutils python
 MASTER_SITES=	PYPI
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -18,9 +18,7 @@ USES=		ansible:env cpe python:3.10+ shebangfix
 CPE_VENDOR=	redhat
 USE_PYTHON=	autoplist concurrent distutils
 
-SHEBANG_FILES=	ansible_collections/community/zabbix/roles/zabbix_proxy/files/install_semodule.bsx \
-		ansible_collections/community/zabbix/roles/zabbix_server/files/install_semodule.bsx \
-		ansible_collections/ovirt/ovirt/roles/disaster_recovery/files/ovirt-dr \
+SHEBANG_FILES=	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
 # either unversioned or absent.
diff --git a/sysutils/ansible/distinfo b/sysutils/ansible/distinfo
index c3a6854698a8..9053b5268964 100644
--- a/sysutils/ansible/distinfo
+++ b/sysutils/ansible/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1716350791
-SHA256 (ansible-9.6.0.tar.gz) = 58732a4ad74a746d299ecfa48b7a91cb217e2c0bd3a44493f2d9f29af2f3ab61
-SIZE (ansible-9.6.0.tar.gz) = 45088874
+TIMESTAMP = 1744221588
+SHA256 (ansible-11.4.0.tar.gz) = d25a7f26bf5821f8043bc806019822fd2810bd65e6b6bafb698bbeedadba72bf
+SIZE (ansible-11.4.0.tar.gz) = 42407185
diff --git a/sysutils/ansible/files/patch-ansible__collections_ansible_utils_plugins_plugin__utils_base_ipaddr_utils.py b/sysutils/ansible/files/patch-ansible__collections_ansible_utils_plugins_plugin__utils_base_ipaddr_utils.py
deleted file mode 100644
index e89669b4830c..000000000000
--- a/sysutils/ansible/files/patch-ansible__collections_ansible_utils_plugins_plugin__utils_base_ipaddr_utils.py
+++ /dev/null
@@ -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(),