From 83a7c722c6aa47eae2aab4609e070dda968df5fa Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Sat, 12 Jul 2025 23:58:59 +0000 Subject: [PATCH] waylandpp: update to 1.0.1 --- packages/wayland/waylandpp/package.mk | 4 +- ...p-0001-PR71-support-build-with-gcc13.patch | 57 ------------------- 2 files changed, 2 insertions(+), 59 deletions(-) delete mode 100644 packages/wayland/waylandpp/patches/waylandpp-0001-PR71-support-build-with-gcc13.patch diff --git a/packages/wayland/waylandpp/package.mk b/packages/wayland/waylandpp/package.mk index 533282b8e7..283968d7c4 100644 --- a/packages/wayland/waylandpp/package.mk +++ b/packages/wayland/waylandpp/package.mk @@ -2,8 +2,8 @@ # Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv) PKG_NAME="waylandpp" -PKG_VERSION="1.0.0" -PKG_SHA256="b20b45917382c6b87e9380130c9a1a1c563da2f498de5830df12fbce326dd9f5" +PKG_VERSION="1.0.1" +PKG_SHA256="49c362fa5db28ab5472968215b88f1fbe3a7b7f57818dde722fd7d38997d940a" PKG_LICENSE="GPL" PKG_SITE="https://github.com/NilsBrause/waylandpp" PKG_URL="https://github.com/NilsBrause/waylandpp/archive/${PKG_VERSION}.tar.gz" diff --git a/packages/wayland/waylandpp/patches/waylandpp-0001-PR71-support-build-with-gcc13.patch b/packages/wayland/waylandpp/patches/waylandpp-0001-PR71-support-build-with-gcc13.patch deleted file mode 100644 index b2d3755cf8..0000000000 --- a/packages/wayland/waylandpp/patches/waylandpp-0001-PR71-support-build-with-gcc13.patch +++ /dev/null @@ -1,57 +0,0 @@ -From 3c441910aa25f57df2a4db55f75f5d99cea86620 Mon Sep 17 00:00:00 2001 -From: Sergei Trofimovich -Date: Sun, 8 Jan 2023 18:24:53 +0000 -Subject: [PATCH] add missing include - -Upcoming `gcc-13` made `` leaner and does not include `` -implicitly anymore. As a result build fails without the change as: - - [ 2%] Building CXX object CMakeFiles/wayland-scanner++.dir/scanner/scanner.cpp.o - scanner/scanner.cpp:378:3: error: 'uint32_t' does not name a type - 378 | uint32_t width = 0; - | ^~~~~~~~ ---- - include/wayland-client.hpp | 1 + - scanner/scanner.cpp | 3 +++ - 2 files changed, 4 insertions(+) - -diff --git a/include/wayland-client.hpp b/include/wayland-client.hpp -index a3f782b..4598a0e 100644 ---- a/include/wayland-client.hpp -+++ b/include/wayland-client.hpp -@@ -29,6 +29,7 @@ - /** \file */ - - #include -+#include - #include - #include - #include -diff --git a/scanner/scanner.cpp b/scanner/scanner.cpp -index bebd71e..37cf7ff 100644 ---- a/scanner/scanner.cpp -+++ b/scanner/scanner.cpp -@@ -23,6 +23,7 @@ - #include - #include - #include -+#include - #include - - #include "pugixml.hpp" -@@ -1106,6 +1107,7 @@ int main(int argc, char *argv[]) - wayland_hpp << "#pragma once" << std::endl - << std::endl - << "#include " << std::endl -+ << "#include " << std::endl - << "#include " << std::endl - << "#include " << std::endl - << "#include " << std::endl -@@ -1125,6 +1127,7 @@ int main(int argc, char *argv[]) - wayland_server_hpp << "#pragma once" << std::endl - << std::endl - << "#include " << std::endl -+ << "#include " << std::endl - << "#include " << std::endl - << "#include " << std::endl - << "#include " << std::endl