Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libnvidia-egl-wayland for openSUSE:Factory checked in at 2025-08-13 16:23:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libnvidia-egl-wayland (Old) and /work/SRC/openSUSE:Factory/.libnvidia-egl-wayland.new.1085 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libnvidia-egl-wayland" Wed Aug 13 16:23:29 2025 rev:21 rq:1299157 version:1.1.20 Changes: -------- --- /work/SRC/openSUSE:Factory/libnvidia-egl-wayland/libnvidia-egl-wayland.changes 2025-05-23 14:30:38.196790329 +0200 +++ /work/SRC/openSUSE:Factory/.libnvidia-egl-wayland.new.1085/libnvidia-egl-wayland.changes 2025-08-13 16:29:59.851115193 +0200 @@ -1,0 +2,6 @@ +Tue Aug 12 13:57:44 UTC 2025 - Stefan Dirsch <sndir...@suse.com> + +- update to version 1.1.20 (needed by 580.76.05 driver, boo#1247907) + * Add support for tegradisp-drm + +------------------------------------------------------------------- Old: ---- egl-wayland-1.1.19.tar.gz New: ---- egl-wayland-1.1.20.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libnvidia-egl-wayland.spec ++++++ --- /var/tmp/diff_new_pack.YVtkHI/_old 2025-08-13 16:30:02.883241259 +0200 +++ /var/tmp/diff_new_pack.YVtkHI/_new 2025-08-13 16:30:02.887241426 +0200 @@ -1,7 +1,7 @@ # # spec file for package libnvidia-egl-wayland # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,7 +20,7 @@ %define lname libnvidia-egl-wayland%{so_ver} %define rname egl-wayland Name: libnvidia-egl-wayland -Version: 1.1.19 +Version: 1.1.20 Release: 0 Summary: The EGLStream-based Wayland external platform License: MIT ++++++ egl-wayland-1.1.19.tar.gz -> egl-wayland-1.1.20.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/egl-wayland-1.1.19/configure.ac new/egl-wayland-1.1.20/configure.ac --- old/egl-wayland-1.1.19/configure.ac 2025-04-07 21:09:42.000000000 +0200 +++ new/egl-wayland-1.1.20/configure.ac 2025-07-07 17:46:55.000000000 +0200 @@ -2,7 +2,7 @@ m4_define([wayland_eglstream_major_version], [1]) m4_define([wayland_eglstream_minor_version], [1]) -m4_define([wayland_eglstream_micro_version], [19]) +m4_define([wayland_eglstream_micro_version], [20]) m4_define([wayland_eglstream_version], [wayland_eglstream_major_version.wayland_eglstream_minor_version.wayland_eglstream_micro_version]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/egl-wayland-1.1.19/include/wayland-external-exports.h new/egl-wayland-1.1.20/include/wayland-external-exports.h --- old/egl-wayland-1.1.19/include/wayland-external-exports.h 2025-04-07 21:09:42.000000000 +0200 +++ new/egl-wayland-1.1.20/include/wayland-external-exports.h 2025-07-07 17:46:55.000000000 +0200 @@ -53,7 +53,7 @@ #define WAYLAND_EXTERNAL_VERSION_MINOR 0 #endif -#define WAYLAND_EXTERNAL_VERSION_MICRO 19 +#define WAYLAND_EXTERNAL_VERSION_MICRO 20 #define EGL_EXTERNAL_PLATFORM_VERSION_MAJOR WAYLAND_EXTERNAL_VERSION_MAJOR diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/egl-wayland-1.1.19/meson.build new/egl-wayland-1.1.20/meson.build --- old/egl-wayland-1.1.19/meson.build 2025-04-07 21:09:42.000000000 +0200 +++ new/egl-wayland-1.1.20/meson.build 2025-07-07 17:46:55.000000000 +0200 @@ -1,5 +1,5 @@ project('wayland-eglstream', 'c', - version : '1.1.19', + version : '1.1.20', default_options : [ 'buildtype=debugoptimized', 'c_std=gnu99', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/egl-wayland-1.1.19/src/wayland-egldisplay.c new/egl-wayland-1.1.20/src/wayland-egldisplay.c --- old/egl-wayland-1.1.19/src/wayland-egldisplay.c 2025-04-07 21:09:42.000000000 +0200 +++ new/egl-wayland-1.1.20/src/wayland-egldisplay.c 2025-07-07 17:46:55.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2022, NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2014-2025, NVIDIA CORPORATION. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -914,6 +914,7 @@ version = drmGetVersion(fd); if (version != NULL && version->name != NULL) { if (strcmp(version->name, "nvidia-drm") == 0 + || strcmp(version->name, "tegradisp-drm") == 0 || strcmp(version->name, "tegra-udrm") == 0 || strcmp(version->name, "tegra") == 0) { result = EGL_TRUE;