From 40a355a42d4a9444dc753c04c6608dade2f06a23 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 03:13:27 +0200 Subject: Adding upstream version 125.0.1. Signed-off-by: Daniel Baumann --- media/libaom/cmakeparser.py | 4 ++-- media/libaom/moz.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'media/libaom') diff --git a/media/libaom/cmakeparser.py b/media/libaom/cmakeparser.py index b93a313bce..261f05fb17 100644 --- a/media/libaom/cmakeparser.py +++ b/media/libaom/cmakeparser.py @@ -83,7 +83,7 @@ def substs(variables, values): # Safe substitute leaves unrecognized variables in place. # We replace them with the empty string. - new_values.append(re.sub('\$\{\w+\}', '', new_value)) + new_values.append(re.sub(r'\$\{\w+\}', '', new_value)) return new_values @@ -240,7 +240,7 @@ def evaluate_boolean(variables, arguments): # If statements can have old-style variables which are not demarcated # like ${VARIABLE}. Attempt to look up the variable both ways. try: - if re.search('\$\{\w+\}', argument): + if re.search(r'\$\{\w+\}', argument): try: t = Template(argument) value = t.substitute(variables) diff --git a/media/libaom/moz.yaml b/media/libaom/moz.yaml index cc01efbd27..b06ee5115a 100644 --- a/media/libaom/moz.yaml +++ b/media/libaom/moz.yaml @@ -20,11 +20,11 @@ origin: # Human-readable identifier for this version/release # Generally "version NNN", "tag SSS", "bookmark SSS" - release: 8cb8ebb5a1b4f8c361baf4cde9a55733ade3e723 (Thu Jan 11 17:13:41 2024 -0800). + release: 11631186b36e96afce18808ebebb17cc23a010ef (Fri Jan 19 23:29:34 2024 +0000). # Revision to pull in # Must be a long or short commit SHA (long preferred) - revision: 8cb8ebb5a1b4f8c361baf4cde9a55733ade3e723 + revision: 11631186b36e96afce18808ebebb17cc23a010ef # The package's license, where possible using the mnemonic from # https://spdx.org/licenses/ -- cgit v1.2.3