Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package weston for openSUSE:Factory checked in at 2024-10-09 22:12:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/weston (Old) and /work/SRC/openSUSE:Factory/.weston.new.19354 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "weston" Wed Oct 9 22:12:14 2024 rev:35 rq:1206381 version:14.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/weston/weston.changes 2024-04-25 20:50:49.869694563 +0200 +++ /work/SRC/openSUSE:Factory/.weston.new.19354/weston.changes 2024-10-09 22:12:33.121265895 +0200 @@ -1,0 +2,7 @@ +Wed Sep 4 09:23:01 UTC 2024 - Jan Engelhardt <jengelh@inai.de> + +- Update to release 14 + * Add support for FreeRDP 3.x +- Add wsp-deps.patch to resolve FTBFS + +------------------------------------------------------------------- Old: ---- weston-13.0.1.tar.xz weston-13.0.1.tar.xz.sig New: ---- _scmsync.obsinfo build.specials.obscpio weston-14.0.0.tar.xz weston-14.0.0.tar.xz.sig wsp-deps.patch BETA DEBUG BEGIN: New: * Add support for FreeRDP 3.x - Add wsp-deps.patch to resolve FTBFS BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ weston.spec ++++++ --- /var/tmp/diff_new_pack.xy4DYf/_old 2024-10-09 22:12:34.553325602 +0200 +++ /var/tmp/diff_new_pack.xy4DYf/_new 2024-10-09 22:12:34.553325602 +0200 @@ -18,8 +18,8 @@ Name: weston %define lname libweston0 -%define major 13 -Version: 13.0.1 +%define major 14 +Version: 14.0.0 Release: 0 Summary: Wayland Reference Compositor License: CC-BY-SA-3.0 AND MIT @@ -29,6 +29,7 @@ #Git-Web: https://cgit.freedesktop.org/wayland/weston/ Source: https://gitlab.freedesktop.org/wayland/weston/-/releases/%version/downloads/... Source2: https://gitlab.freedesktop.org/wayland/weston/-/releases/%version/downloads/... +Patch1: wsp-deps.patch BuildRequires: Mesa-libGLESv3-devel BuildRequires: gcc-c++ BuildRequires: glibc-devel >= 2.27 @@ -48,6 +49,7 @@ BuildRequires: pkgconfig(gbm) BuildRequires: pkgconfig(glesv2) BuildRequires: pkgconfig(lcms2) >= 2.9 +BuildRequires: pkgconfig(libdisplay-info) BuildRequires: pkgconfig(libdrm) >= 2.4.108 BuildRequires: pkgconfig(libevdev) BuildRequires: pkgconfig(libinput) >= 0.8.0 ++++++ _scmsync.obsinfo ++++++ mtime: 1728409282 commit: 499e88f7322073b4b728e930c2a718a247c03d55e764bae324f78ec3637eea35 url: https://src.opensuse.org/jengelh/weston revision: master ++++++ weston-13.0.1.tar.xz -> weston-14.0.0.tar.xz ++++++ ++++ 47503 lines of diff (skipped) ++++++ wsp-deps.patch ++++++ From f86ff8c07d9951672cee089ad626eb0898815bf0 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt <jengelh@inai.de> Date: Tue, 8 Oct 2024 19:18:24 +0200 Subject: [PATCH] build: insert missing wayland-server-protocol dependency References: https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1623 A new build error sprung up in weston-14 compared to 13.0.0. Fix it. FAILED: tests/liblib_lcms_util.a.p/lcms_util.c.o cc -Itests/liblib_lcms_util.a.p -Itests -I../tests -I. -I.. -Iinclude -I../include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -Wpedantic -std=gnu99 -Wmissing-prototypes -Wno-unused-parameter -Wno-shift-negative-value -Wno-missing-field-initializers -Wno-pedantic -Wundef -fvisibility=hidden -O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=return-type -flto=auto -g -fPIC -MD -MQ tests/liblib_lcms_util.a.p/lcms_util.c.o -MF tests/liblib_lcms_util.a.p/lcms_util.c.o.d -o tests/liblib_lcms_util.a.p/lcms_util.c.o -c ../tests/lcms_util.c In file included from ../tests/lcms_util.c:35: ../include/libweston/matrix.h:33:10: fatal error: wayland-server-protocol.h: No such file or directory 33 | #include <wayland-server-protocol.h> Signed-off-by: Jan Engelhardt <jengelh@inai.de> --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 45b475c3..f5f34b2b 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -74,7 +74,7 @@ lib_lcms_util = static_library( [ 'lcms_util.c' ], include_directories: common_inc, dependencies: [ - dep_lcms2, dep_libm + dep_lcms2, dep_libm, dep_wayland_server ], build_by_default: false, install: false, -- 2.46.1