Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libxcvt for openSUSE:Factory checked in at 2022-07-21 11:32:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libxcvt (Old) and /work/SRC/openSUSE:Factory/.libxcvt.new.1523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libxcvt" Thu Jul 21 11:32:36 2022 rev:3 rq:990112 version:0.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libxcvt/libxcvt.changes 2021-11-12 00:09:01.514329319 +0100 +++ /work/SRC/openSUSE:Factory/.libxcvt.new.1523/libxcvt.changes 2022-07-21 11:32:43.830913841 +0200 @@ -1,0 +2,7 @@ +Tue Jul 19 09:52:49 UTC 2022 - Stefan Dirsch <sndir...@suse.com> + +- Update to version 0.1.2 + * make xrandr report 1366x768 instead of 1360x768 + * meson: Add initial darwin_versions + +------------------------------------------------------------------- Old: ---- libxcvt-0.1.1.tar.xz New: ---- libxcvt-0.1.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libxcvt.spec ++++++ --- /var/tmp/diff_new_pack.4g3QtC/_old 2022-07-21 11:32:44.430914358 +0200 +++ /var/tmp/diff_new_pack.4g3QtC/_new 2022-07-21 11:32:44.434914361 +0200 @@ -1,7 +1,7 @@ # # spec file for package libxcvt # -# Copyright (c) 2021 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -15,9 +15,10 @@ # Please submit bugfixes or comments via https://bugs.opensuse.org/ # + Name: libxcvt %define lname libxcvt0 -Version: 0.1.1 +Version: 0.1.2 Release: 0 Summary: CVT standard timing modeline generator License: MIT ++++++ libxcvt-0.1.1.tar.xz -> libxcvt-0.1.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libxcvt-0.1.1/lib/libxcvt.c new/libxcvt-0.1.2/lib/libxcvt.c --- old/libxcvt-0.1.1/lib/libxcvt.c 2021-10-27 11:05:35.262287600 +0200 +++ new/libxcvt-0.1.2/lib/libxcvt.c 2022-07-18 09:23:34.000000000 +0200 @@ -292,7 +292,8 @@ mode_info->mode_flags |= LIBXCVT_MODE_FLAG_INTERLACE; /* FWXGA hack adapted from hw/xfree86/modes/xf86EdidModes.c, because you can't say 1366 */ - if (mode_info->hdisplay == 1366 && mode_info->vdisplay == 768) { + if (mode_info->hdisplay == 1360 && mode_info->vdisplay == 768) { + mode_info->hdisplay = 1366; mode_info->hsync_start--; mode_info->hsync_end--; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libxcvt-0.1.1/lib/meson.build new/libxcvt-0.1.2/lib/meson.build --- old/libxcvt-0.1.1/lib/meson.build 2021-10-27 11:05:35.262287600 +0200 +++ new/libxcvt-0.1.2/lib/meson.build 2022-07-18 09:23:34.000000000 +0200 @@ -3,4 +3,5 @@ libxcvt_sources, include_directories : inc, version: meson.project_version(), + darwin_versions : ['1.0.0', '1.0.0' ], install : true) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libxcvt-0.1.1/meson.build new/libxcvt-0.1.2/meson.build --- old/libxcvt-0.1.1/meson.build 2021-10-27 11:05:35.262287600 +0200 +++ new/libxcvt-0.1.2/meson.build 2022-07-18 09:23:34.000000000 +0200 @@ -1,5 +1,5 @@ project('libxcvt', 'c', - version: '0.1.1', + version: '0.1.2', meson_version: '>= 0.40.0', default_options: ['warning_level=1', 'buildtype=debugoptimized'])