sysutils/azure-agent: sync with upstream

Taken from: FreeBSD
This commit is contained in:
Franco Fichtner 2025-01-07 13:59:32 +01:00
parent 54ecb7e334
commit 243aa64cbf
3 changed files with 4 additions and 16 deletions

View file

@ -1,6 +1,5 @@
PORTNAME= azure-agent
PORTVERSION= 2.8.0.11
PORTREVISION= 1
PORTVERSION= 2.12.0.2
DISTVERSIONPREFIX= v
CATEGORIES= sysutils

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1671076332
SHA256 (Azure-WALinuxAgent-v2.8.0.11_GH0.tar.gz) = dbb36994d1df610943cd49609a49bf4ec6524520d88709891d282cec3607a31b
SIZE (Azure-WALinuxAgent-v2.8.0.11_GH0.tar.gz) = 1576330
TIMESTAMP = 1733935955
SHA256 (Azure-WALinuxAgent-v2.12.0.2_GH0.tar.gz) = e7a2507c7815d6ad49227c6dd4259949ae01efbfd8ccd7bf8e79bdf051851fb0
SIZE (Azure-WALinuxAgent-v2.12.0.2_GH0.tar.gz) = 2144003

View file

@ -1,11 +0,0 @@
--- azurelinuxagent/common/utils/textutil.py.orig 2024-08-20 23:23:16 UTC
+++ azurelinuxagent/common/utils/textutil.py
@@ -445,7 +445,7 @@ def format_exception(exception):
if tb is None or (sys.version_info[0] == 2 and e != exception):
msg += "[Traceback not available]"
else:
- msg += ''.join(traceback.format_exception(etype=type(exception), value=exception, tb=tb))
+ msg += ''.join(traceback.format_exception(type(exception), value=exception, tb=tb))
return msg