Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package wayland-protocols for
openSUSE:Factory checked in at 2021-11-13 22:48:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/wayland-protocols (Old)
and /work/SRC/openSUSE:Factory/.wayland-protocols.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wayland-protocols"
Sat Nov 13 22:48:08 2021 rev:25 rq:930483 version:1.23
Changes:
--------
--- /work/SRC/openSUSE:Factory/wayland-protocols/wayland-protocols.changes
2021-10-20 20:23:10.557337025 +0200
+++
/work/SRC/openSUSE:Factory/.wayland-protocols.new.1890/wayland-protocols.changes
2021-11-13 22:48:14.337236751 +0100
@@ -1,0 +2,9 @@
+Thu Nov 4 07:19:04 UTC 2021 - Yifan Jiang <[email protected]>
+
+- Add
wayland-protocols-disable-pedantic-test-unstable-xdg-decoration-on-ppc64.patch:
+ Temporarily disable the unstable xdg-decoration pedantic test on
+ ppc64 until the upstream issue is more clearly diagnosed:
+
+ https://gitlab.freedesktop.org/wayland/wayland-protocols/-/issues/48
+
+-------------------------------------------------------------------
New:
----
wayland-protocols-disable-pedantic-test-unstable-xdg-decoration-on-ppc64.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ wayland-protocols.spec ++++++
--- /var/tmp/diff_new_pack.U4QSul/_old 2021-11-13 22:48:14.953237224 +0100
+++ /var/tmp/diff_new_pack.U4QSul/_new 2021-11-13 22:48:14.953237224 +0100
@@ -27,9 +27,11 @@
Source:
https://wayland.freedesktop.org/releases/%{name}-%{version}.tar.xz
Source2:
https://wayland.freedesktop.org/releases/%{name}-%{version}.tar.xz.sig
Source3: %{name}.keyring
+# PATCH-FIX-OPENSUSE
wayland-protocols-disable-pedantic-test-unstable-xdg-decoration-on-ppc64.patch
bsc#1192209 glfd#wayland/wayland-protocols#48 [email protected] -- Temporarily
disable the unstable xdg-decoration pedantic test on ppc64 until the upstream
issue is more clearly diagnosed
+Patch0:
wayland-protocols-disable-pedantic-test-unstable-xdg-decoration-on-ppc64.patch
-BuildRequires: c_compiler
BuildRequires: c++_compiler
+BuildRequires: c_compiler
BuildRequires: meson >= 0.54.0
BuildRequires: pkgconfig
BuildRequires: pkgconfig(wayland-scanner)
@@ -54,7 +56,7 @@
wayland-protocols.
%prep
-%autosetup
+%autosetup -p1
%build
%meson
++++++
wayland-protocols-disable-pedantic-test-unstable-xdg-decoration-on-ppc64.patch
++++++
Index: wayland-protocols-1.23/tests/meson.build
===================================================================
--- wayland-protocols-1.23.orig/tests/meson.build
+++ wayland-protocols-1.23/tests/meson.build
@@ -6,6 +6,8 @@ libwayland = [
dependency('wayland-server'),
]
+message('Build Machine CPU:' + build_machine.cpu_family())
+
# Check that each protocol passes through the scanner
foreach protocol_file : protocol_files
protocol_path = join_paths(wayland_protocols_srcdir, protocol_file)
@@ -111,7 +113,12 @@ foreach protocol_file : protocol_files
install: false,
native: true,
)
- test(test_name, pedantic_test_executable)
+
+ if test_name ==
'test-build-pedantic-unstable_xdg_decoration_xdg_decoration_unstable_v1_xml'
and build_machine.cpu_family() == 'ppc64'
+ message('Skip
test-build-pedantic-unstable_xdg_decoration_xdg_decoration_unstable_v1_xml on
ppc64/ppc64le')
+ else
+ test(test_name, pedantic_test_executable)
+ endif
# Check that the header
if not protocol_file.contains('xdg-foreign-unstable-v1')