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-08-25 20:55:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libx86emu (Old) and /work/SRC/openSUSE:Factory/.libx86emu.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libx86emu" Wed Aug 25 20:55:56 2021 rev:31 rq:912933 version:3.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libx86emu/libx86emu.changes 2020-01-30 09:39:03.885415096 +0100 +++ /work/SRC/openSUSE:Factory/.libx86emu.new.1899/libx86emu.changes 2021-08-25 20:56:02.077332406 +0200 @@ -1,0 +2,7 @@ +Wed Aug 18 16:30:18 UTC 2021 - wfe...@opensuse.org + +- merge gh#wfeldt/libx86emu#35 +- Fix x86test on musl +- 3.2 + +-------------------------------------------------------------------- Old: ---- libx86emu-3.1.tar.xz New: ---- libx86emu-3.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libx86emu.spec ++++++ --- /var/tmp/diff_new_pack.EzOS63/_old 2021-08-25 20:56:03.289330815 +0200 +++ /var/tmp/diff_new_pack.EzOS63/_new 2021-08-25 20:56:03.293330809 +0200 @@ -22,7 +22,7 @@ Summary: An x86 emulation library License: BSD-3-Clause Group: Development/Libraries/C and C++ -Version: 3.1 +Version: 3.2 Release: 0 Source: %{name}-%{version}.tar.xz Url: https://github.com/wfeldt/libx86emu ++++++ libx86emu-3.1.tar.xz -> libx86emu-3.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libx86emu-3.1/VERSION new/libx86emu-3.2/VERSION --- old/libx86emu-3.1/VERSION 2020-01-28 15:19:00.000000000 +0100 +++ new/libx86emu-3.2/VERSION 2021-08-18 18:30:18.000000000 +0200 @@ -1 +1 @@ -3.1 +3.2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libx86emu-3.1/changelog new/libx86emu-3.2/changelog --- old/libx86emu-3.1/changelog 2020-01-28 15:19:00.000000000 +0100 +++ new/libx86emu-3.2/changelog 2021-08-18 18:30:18.000000000 +0200 @@ -1,3 +1,7 @@ +2021-08-18: 3.2 + - merge gh#wfeldt/libx86emu#35 + - Fix x86test on musl + 2020-01-28: 3.1 - merge gh#wfeldt/libx86emu#28 - update README to explain about library versions diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libx86emu-3.1/test/x86test.c new/libx86emu-3.2/test/x86test.c --- old/libx86emu-3.1/test/x86test.c 2020-01-28 15:19:00.000000000 +0100 +++ new/libx86emu-3.2/test/x86test.c 2021-08-18 18:30:18.000000000 +0200 @@ -84,7 +84,7 @@ unsigned dump_flags; struct { - unsigned stderr:1; + unsigned print_to_stderr:1; } show; FILE *log_file; @@ -151,7 +151,7 @@ break; case 1004: - opt.show.stderr = 1; + opt.show.print_to_stderr = 1; break; default: @@ -499,7 +499,7 @@ if(!file) return 1; - opt.log_file = opt.show.stderr ? stderr : fopen(build_file_name(file, ".log"), "w"); + opt.log_file = opt.show.print_to_stderr ? stderr : fopen(build_file_name(file, ".log"), "w"); ok = vm_init(vm, file);