From 14a8cd0e0311f6dcd71ecb6a9c57cb723a3de017 Mon Sep 17 00:00:00 2001 From: Packit Service Date: Dec 10 2020 05:26:31 +0000 Subject: Apply patch 0004-buildlib-Fix-a-warning-from-newer-pythons.patch patch_name: 0004-buildlib-Fix-a-warning-from-newer-pythons.patch present_in_specfile: true --- diff --git a/buildlib/check-build b/buildlib/check-build index ab8524e..4e52d0d 100755 --- a/buildlib/check-build +++ b/buildlib/check-build @@ -84,7 +84,7 @@ def get_symbol_vers(fn,exported=True): def check_lib_symver(args,fn): g = re.match(r"lib([^.]+)\.so\.(\d+)\.(\d+)\.(.*)",fn); if g.group(4) != args.PACKAGE_VERSION: - raise ValueError("Shared Library filename %r does not have the package version %r (%r)%"( + raise ValueError("Shared Library filename %r does not have the package version %r (%r)"%( fn,args.PACKAGE_VERSION,g.groups())); # umad/etc used the wrong symbol version name when they moved to soname 3.0