Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libwpe for openSUSE:Factory checked in at 2021-07-21 19:06:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libwpe (Old) and /work/SRC/openSUSE:Factory/.libwpe.new.2632 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libwpe" Wed Jul 21 19:06:11 2021 rev:6 rq:907063 version:1.10.1 Changes: -------- --- /work/SRC/openSUSE:Factory/libwpe/libwpe.changes 2021-05-12 19:32:10.099052915 +0200 +++ /work/SRC/openSUSE:Factory/.libwpe.new.2632/libwpe.changes 2021-07-21 19:07:08.451370813 +0200 @@ -1,0 +2,6 @@ +Sat Jul 17 06:56:47 UTC 2021 - Dirk M??ller <dmuel...@suse.com> + +- update to 1.10.1: + - Fix the build with versions of Python older than 3.6 + +------------------------------------------------------------------- Old: ---- libwpe-1.10.0.tar.xz New: ---- libwpe-1.10.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libwpe.spec ++++++ --- /var/tmp/diff_new_pack.JHwKLQ/_old 2021-07-21 19:07:08.859371523 +0200 +++ /var/tmp/diff_new_pack.JHwKLQ/_new 2021-07-21 19:07:08.863371529 +0200 @@ -21,7 +21,7 @@ %define sover 1_0-1 Name: libwpe -Version: 1.10.0 +Version: 1.10.1 Release: 0 Summary: General-purpose library for the WPE-flavored port of WebKit License: BSD-2-Clause ++++++ libwpe-1.10.0.tar.xz -> libwpe-1.10.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libwpe-1.10.0/CMakeLists.txt new/libwpe-1.10.1/CMakeLists.txt --- old/libwpe-1.10.0/CMakeLists.txt 2021-03-26 22:38:58.871184600 +0100 +++ new/libwpe-1.10.1/CMakeLists.txt 2021-06-10 12:33:10.071430400 +0200 @@ -15,7 +15,7 @@ # - If binary compatibility has been broken (eg removed or changed interfaces) # change to C+1:0:0 # - If the interface is the same as the previous version, change to C:R+1:A -CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 6 1 5) +CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 6 2 5) project(libwpe VERSION "${PROJECT_VERSION}") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libwpe-1.10.0/NEWS new/libwpe-1.10.1/NEWS --- old/libwpe-1.10.0/NEWS 2021-03-26 22:38:58.871184600 +0100 +++ new/libwpe-1.10.1/NEWS 2021-06-10 12:33:10.071430400 +0200 @@ -1,3 +1,9 @@ +====================== +1.10.1 - June 10, 2021 +====================== + +- Fix the build with versions of Python older than 3.6 + ======================= 1.10.0 - March 26, 2021 ======================= diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libwpe-1.10.0/include/wpe/libwpe-version.h new/libwpe-1.10.1/include/wpe/libwpe-version.h --- old/libwpe-1.10.0/include/wpe/libwpe-version.h 2021-03-26 22:38:58.871184600 +0100 +++ new/libwpe-1.10.1/include/wpe/libwpe-version.h 2021-06-10 12:33:10.074763800 +0200 @@ -10,6 +10,6 @@ #define WPE_MAJOR_VERSION 1 #define WPE_MINOR_VERSION 10 -#define WPE_MICRO_VERSION 0 +#define WPE_MICRO_VERSION 1 #endif /* !LIBWPE_VERSION_H */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libwpe-1.10.0/meson.build new/libwpe-1.10.1/meson.build --- old/libwpe-1.10.0/meson.build 2021-03-26 22:38:58.874518000 +0100 +++ new/libwpe-1.10.1/meson.build 2021-06-10 12:33:10.074763800 +0200 @@ -22,7 +22,7 @@ # - If binary compatibility has been broken (eg removed or changed interfaces) # change to [C+1, 0, 0] # - If the interface is the same as the previous version, use [C, R+1, A]. -soversion = [6, 1, 5] +soversion = [6, 2, 5] # Mangle [C, R, A] into an actual usable *soversion*. soversion_major = soversion[0] - soversion[2] # Current-Age diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libwpe-1.10.0/scripts/version.py new/libwpe-1.10.1/scripts/version.py --- old/libwpe-1.10.0/scripts/version.py 2021-03-26 22:38:58.874518000 +0100 +++ new/libwpe-1.10.1/scripts/version.py 2021-06-10 12:33:10.074763800 +0200 @@ -18,6 +18,6 @@ for line in f.readlines(): m = version_re.match(line) if m: - version[m[1]] = m[2] + version[m.group(1)] = m.group(2) print("{}.{}.{}".format(version["MAJOR"], version["MINOR"], version["MICRO"]))