View | Details | Raw Unified | Return to bug 280219
Collapse All | Expand All

(-)b/sysutils/iocage/Makefile (-1 / +1 lines)
Lines 1-6 Link Here
1
PORTNAME=	iocage
1
PORTNAME=	iocage
2
PORTVERSION=	1.2
2
PORTVERSION=	1.2
3
PORTREVISION=	12
3
PORTREVISION=	13
4
CATEGORIES=	sysutils python
4
CATEGORIES=	sysutils python
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
6
(-)b/sysutils/iocage/files/patch-iocage__lib_ioc__common.py (+11 lines)
Added Link Here
1
--- iocage_lib/ioc_common.py.orig	2024-07-10 17:23:47 UTC
2
+++ iocage_lib/ioc_common.py
3
@@ -77,7 +77,7 @@ def callback(_log, callback_exception):
4
         else:
5
             if not isinstance(message, str) and isinstance(
6
                 message,
7
-                collections.Iterable
8
+                collections.abc.Iterable
9
             ):
10
                 message = '\n'.join(message)
11
 
(-)b/sysutils/iocage/files/patch-iocage__lib_ioc__exceptions.py (-1 / +11 lines)
Added Link Here
0
- 
1
--- iocage_lib/ioc_exceptions.py.orig	2024-07-10 17:22:46 UTC
2
+++ iocage_lib/ioc_exceptions.py
3
@@ -31,7 +31,7 @@ class ExceptionWithMsg(Exception):
4
     def __init__(self, message):
5
         if not isinstance(message, str) and not isinstance(
6
             message,
7
-            collections.Iterable
8
+            collections.abc.Iterable
9
         ):
10
             message = [message]
11
 

Return to bug 280219