Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libx86emu for openSUSE:Factory checked in at 2021-11-06 18:13:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libx86emu (Old) and /work/SRC/openSUSE:Factory/.libx86emu.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libx86emu" Sat Nov 6 18:13:16 2021 rev:33 rq:928965 version:3.4 Changes: -------- --- /work/SRC/openSUSE:Factory/libx86emu/libx86emu.changes 2021-10-11 15:31:03.850791766 +0200 +++ /work/SRC/openSUSE:Factory/.libx86emu.new.1890/libx86emu.changes 2021-11-06 18:13:30.464743359 +0100 @@ -1,0 +2,7 @@ +Wed Oct 20 12:13:20 UTC 2021 - wfe...@opensuse.org + +- merge gh#wfeldt/libx86emu#39 +- fix test suite for 32-bit architectures +- 3.4 + +-------------------------------------------------------------------- Old: ---- libx86emu-3.3.tar.xz New: ---- libx86emu-3.4.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libx86emu.spec ++++++ --- /var/tmp/diff_new_pack.dogUKb/_old 2021-11-06 18:13:31.880744101 +0100 +++ /var/tmp/diff_new_pack.dogUKb/_new 2021-11-06 18:13:31.884744102 +0100 @@ -22,7 +22,7 @@ Summary: An x86 emulation library License: BSD-3-Clause Group: Development/Libraries/C and C++ -Version: 3.3 +Version: 3.4 Release: 0 Source: %{name}-%{version}.tar.xz Url: https://github.com/wfeldt/libx86emu ++++++ libx86emu-3.3.tar.xz -> libx86emu-3.4.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libx86emu-3.3/VERSION new/libx86emu-3.4/VERSION --- old/libx86emu-3.3/VERSION 2021-10-01 15:16:19.000000000 +0200 +++ new/libx86emu-3.4/VERSION 2021-10-20 14:13:20.000000000 +0200 @@ -1 +1 @@ -3.3 +3.4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libx86emu-3.3/changelog new/libx86emu-3.4/changelog --- old/libx86emu-3.3/changelog 2021-10-01 15:16:19.000000000 +0200 +++ new/libx86emu-3.4/changelog 2021-10-20 14:13:20.000000000 +0200 @@ -1,3 +1,7 @@ +2021-10-20: 3.4 + - merge gh#wfeldt/libx86emu#39 + - fix test suite for 32-bit architectures + 2021-10-01: 3.3 - merge gh#wfeldt/libx86emu#34 - Migrate CI to GitHub Actions diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libx86emu-3.3/test/prepare_test new/libx86emu-3.4/test/prepare_test --- old/libx86emu-3.3/test/prepare_test 2021-10-01 15:16:19.000000000 +0200 +++ new/libx86emu-3.4/test/prepare_test 2021-10-20 14:13:20.000000000 +0200 @@ -414,7 +414,9 @@ $n = ((int rand 0x1000000) & 0xffff00) << 8; $n += int((rand 0x1000000) / 11); - return $n; + # Limit the result to a 32 bit number but avoid '&' to ensure it works + # with 32 bit perl. + return $n % 2 ** 32; }