[packages/aubio] - added 3 patches from Fedora to fix internal waflib for python 3.9+

qboosh qboosh at pld-linux.org
Sat Mar 22 21:57:56 CET 2025


commit ae877bb5f1c2648bd8689dfeaf0da142796c6fa6
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Sat Mar 22 21:54:38 2025 +0100

    - added 3 patches from Fedora to fix internal waflib for python 3.9+

 aubio-imp-removed.patch             | 22 +++++++++++++++++++++
 aubio-invalid-escape-sequence.patch | 39 +++++++++++++++++++++++++++++++++++++
 aubio-python39.patch                | 35 +++++++++++++++++++++++++++++++++
 aubio.spec                          |  6 ++++++
 4 files changed, 102 insertions(+)
---
diff --git a/aubio.spec b/aubio.spec
index fee6e71..36f2764 100644
--- a/aubio.spec
+++ b/aubio.spec
@@ -18,6 +18,9 @@ Group:		Libraries
 Source0:	https://aubio.org/pub/%{name}-%{version}.tar.bz2
 # Source0-md5:	50c9c63b15a2692378af5d602892f16a
 Patch0:		ffmpeg6.patch
+Patch1:		%{name}-python39.patch
+Patch2:		%{name}-invalid-escape-sequence.patch
+Patch3:		%{name}-imp-removed.patch
 URL:		https://aubio.org/
 # libavcodec >= 54.35.0, libavformat >= 52.3.0, libavutil >= 52.3.0, libswresample >= 1.2.0 || libavresample >= 1.0.1
 BuildRequires:	ffmpeg-devel >= 1.1
@@ -156,6 +159,9 @@ Wiązania Pythona 3 do biblioteki aubio.
 %prep
 %setup -q
 %patch -P 0 -p1
+%patch -P 1 -p1
+%patch -P 2 -p1
+%patch -P 3 -p1
 
 %build
 export CC="%{__cc}"
diff --git a/aubio-imp-removed.patch b/aubio-imp-removed.patch
new file mode 100644
index 0000000..58fc2a1
--- /dev/null
+++ b/aubio-imp-removed.patch
@@ -0,0 +1,22 @@
+diff --git a/waflib/Context.py b/waflib/Context.py
+index ab6b154..ac858d6 100644
+--- a/waflib/Context.py
++++ b/waflib/Context.py
+@@ -2,7 +2,7 @@
+ # encoding: utf-8
+ # WARNING! Do not edit! https://waf.io/book/index.html#_obtaining_the_waf_file
+ 
+-import os,re,imp,sys
++import os,re,types,sys
+ from waflib import Utils,Errors,Logs
+ import waflib.Node
+ HEXVERSION=0x2000e00
+@@ -344,7 +344,7 @@ def load_module(path,encoding=None):
+ 		return cache_modules[path]
+ 	except KeyError:
+ 		pass
+-	module=imp.new_module(WSCRIPT_FILE)
++	module=types.ModuleType(WSCRIPT_FILE)
+ 	try:
+ 		code=Utils.readf(path,m='r',encoding=encoding)
+ 	except EnvironmentError:
diff --git a/aubio-invalid-escape-sequence.patch b/aubio-invalid-escape-sequence.patch
new file mode 100644
index 0000000..acc7d3e
--- /dev/null
+++ b/aubio-invalid-escape-sequence.patch
@@ -0,0 +1,39 @@
+diff --git a/waflib/ConfigSet.py b/waflib/ConfigSet.py
+index 8212586..94a08d7 100644
+--- a/waflib/ConfigSet.py
++++ b/waflib/ConfigSet.py
+@@ -4,7 +4,7 @@
+ 
+ import copy,re,os
+ from waflib import Logs,Utils
+-re_imp=re.compile('^(#)*?([^#=]*?)\ =\ (.*?)$',re.M)
++re_imp=re.compile(r'^(#)*?([^#=]*?)\ =\ (.*?)$',re.M)
+ class ConfigSet(object):
+ 	__slots__=('table','parent')
+ 	def __init__(self,filename=None):
+diff --git a/waflib/Utils.py b/waflib/Utils.py
+index 273ebb0..d7f9436 100644
+--- a/waflib/Utils.py
++++ b/waflib/Utils.py
+@@ -440,7 +440,7 @@ def unversioned_sys_platform():
+ 		return s
+ 	if s=='cli'and os.name=='nt':
+ 		return'win32'
+-	return re.split('\d+$',s)[0]
++	return re.split(r'\d+$',s)[0]
+ def nada(*k,**kw):
+ 	pass
+ class Timer(object):
+diff --git a/waflib/ansiterm.py b/waflib/ansiterm.py
+index 1d8bc78..1ab9c5c 100644
+--- a/waflib/ansiterm.py
++++ b/waflib/ansiterm.py
+@@ -175,7 +175,7 @@ else:
+ 			self._csinfo.bVisible=0
+ 			windll.kernel32.SetConsoleCursorInfo(self.hconsole,byref(self._csinfo))
+ 		ansi_command_table={'A':move_up,'B':move_down,'C':move_right,'D':move_left,'E':next_line,'F':prev_line,'G':set_column,'H':set_cursor,'f':set_cursor,'J':clear_screen,'K':clear_line,'h':show_cursor,'l':hide_cursor,'m':set_color,'s':push_cursor,'u':pop_cursor,}
+-		ansi_tokens=re.compile('(?:\x1b\[([0-9?;]*)([a-zA-Z])|([^\x1b]+))')
++		ansi_tokens=re.compile(r'(?:\x1b\[([0-9?;]*)([a-zA-Z])|([^\x1b]+))')
+ 		def write(self,text):
+ 			try:
+ 				wlock.acquire()
diff --git a/aubio-python39.patch b/aubio-python39.patch
new file mode 100644
index 0000000..b78ac2d
--- /dev/null
+++ b/aubio-python39.patch
@@ -0,0 +1,35 @@
+diff --git a/waflib/ConfigSet.py b/waflib/ConfigSet.py
+index 8212586..8142817 100644
+--- a/waflib/ConfigSet.py
++++ b/waflib/ConfigSet.py
+@@ -146,7 +146,7 @@ class ConfigSet(object):
+ 		Utils.writef(filename,''.join(buf))
+ 	def load(self,filename):
+ 		tbl=self.table
+-		code=Utils.readf(filename,m='rU')
++		code=Utils.readf(filename,m='r')
+ 		for m in re_imp.finditer(code):
+ 			g=m.group
+ 			tbl[g(2)]=eval(g(3))
+diff --git a/waflib/Context.py b/waflib/Context.py
+index ab6b154..cbe16c1 100644
+--- a/waflib/Context.py
++++ b/waflib/Context.py
+@@ -106,7 +106,7 @@ class Context(ctx):
+ 				cache[node]=True
+ 				self.pre_recurse(node)
+ 				try:
+-					function_code=node.read('rU',encoding)
++					function_code=node.read('r',encoding)
+ 					exec(compile(function_code,node.abspath(),'exec'),self.exec_dict)
+ 				finally:
+ 					self.post_recurse(node)
+@@ -346,7 +346,7 @@ def load_module(path,encoding=None):
+ 		pass
+ 	module=imp.new_module(WSCRIPT_FILE)
+ 	try:
+-		code=Utils.readf(path,m='rU',encoding=encoding)
++		code=Utils.readf(path,m='r',encoding=encoding)
+ 	except EnvironmentError:
+ 		raise Errors.WafError('Could not read the file %r'%path)
+ 	module_dir=os.path.dirname(path)
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/aubio.git/commitdiff/ae877bb5f1c2648bd8689dfeaf0da142796c6fa6



More information about the pld-cvs-commit mailing list