Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libva-utils for openSUSE:Factory 
checked in at 2022-10-14 15:42:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libva-utils (Old)
 and      /work/SRC/openSUSE:Factory/.libva-utils.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libva-utils"

Fri Oct 14 15:42:38 2022 rev:20 rq:1010607 version:2.16.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/libva-utils/libva-utils.changes  2022-07-09 
17:05:25.268921348 +0200
+++ /work/SRC/openSUSE:Factory/.libva-utils.new.2275/libva-utils.changes        
2022-10-14 15:43:56.644059144 +0200
@@ -1,0 +2,16 @@
+Thu Oct 13 19:43:17 UTC 2022 - Dirk M??ller <dmuel...@suse.com>
+
+- update to 2.16.0:
+  * trace: print the display being attempted
+  * ci: upgrade FreeBSD to 13.1
+  * meson: Search for threads in top-level meson.build
+  * meson: produce summary() when 0.53.0 is present
+
+-------------------------------------------------------------------
+Mon Jul 11 11:26:50 UTC 2022 - Stefan Dirsch <sndir...@suse.com>
+
+- No code changes
+- Update to version 2.15.0 was part of Intel oneVPL GPU Runtime
+  2022Q2 Release 22.4.4
+
+-------------------------------------------------------------------

Old:
----
  libva-utils-2.15.0.tar.gz

New:
----
  libva-utils-2.16.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libva-utils.spec ++++++
--- /var/tmp/diff_new_pack.r1RfWk/_old  2022-10-14 15:43:57.132059959 +0200
+++ /var/tmp/diff_new_pack.r1RfWk/_new  2022-10-14 15:43:57.136059966 +0200
@@ -17,14 +17,13 @@
 
 
 Name:           libva-utils
-Version:        2.15.0
+Version:        2.16.0
 Release:        0
 Summary:        A collection of utilities and examples to exercise VA-API
 License:        EPL-1.0 AND MIT
 Group:          Development/Tools/Other
 URL:            https://github.com/intel/libva-utils
 Source0:        %{url}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
-
 BuildRequires:  gcc-c++
 BuildRequires:  meson
 BuildRequires:  pkgconfig

++++++ libva-utils-2.15.0.tar.gz -> libva-utils-2.16.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libva-utils-2.15.0/.github/workflows/freebsd.yml 
new/libva-utils-2.16.0/.github/workflows/freebsd.yml
--- old/libva-utils-2.15.0/.github/workflows/freebsd.yml        2022-07-01 
09:52:28.000000000 +0200
+++ new/libva-utils-2.16.0/.github/workflows/freebsd.yml        2022-10-08 
04:42:07.000000000 +0200
@@ -12,7 +12,7 @@
 
 jobs:
   freebsd:
-    runs-on: macos-10.15
+    runs-on: macos-12
     steps:
     - name: checkout libva
       uses: actions/checkout@v2
@@ -24,7 +24,7 @@
       with:
         path: libva-utils
     - name: test
-      uses: vmactions/freebsd-vm@v0.1.5
+      uses: vmactions/freebsd-vm@v0
       with:
         prepare: |
           pkg install -y meson pkgconf libdrm libXext libXfixes wayland
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libva-utils-2.15.0/NEWS new/libva-utils-2.16.0/NEWS
--- old/libva-utils-2.15.0/NEWS 2022-07-01 09:52:28.000000000 +0200
+++ new/libva-utils-2.16.0/NEWS 2022-10-08 04:42:07.000000000 +0200
@@ -1,6 +1,12 @@
-libva-utils NEWS -- summary of changes.  2022-7-1
+libva-utils NEWS -- summary of changes.  2022-10-8
 Copyright (C) 2009-2022 Intel Corporation
 
+Version 2.16.0 - 8.Oct.2022
+* trace: print the display being attempted
+* ci: upgrade FreeBSD to 13.1
+* meson: Search for threads in top-level meson.build
+* meson: produce summary() when 0.53.0 is present
+
 Version 2.15.0 - 1.Jul.2022
 * add: Added HDR10 Tone Mapping sample code including H2H and H2S config files.
 * add: Support lowpower for HEVC Encoding
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libva-utils-2.15.0/common/va_display.c 
new/libva-utils-2.16.0/common/va_display.c
--- old/libva-utils-2.15.0/common/va_display.c  2022-07-01 09:52:28.000000000 
+0200
+++ new/libva-utils-2.16.0/common/va_display.c  2022-10-08 04:42:07.000000000 
+0200
@@ -151,6 +151,7 @@
             continue;
         if (!g_display_hooks->open_display)
             continue;
+        printf("Trying display: %s\n", g_display_hooks->name);
         va_dpy = g_display_hooks->open_display();
     }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libva-utils-2.15.0/configure.ac 
new/libva-utils-2.16.0/configure.ac
--- old/libva-utils-2.15.0/configure.ac 2022-07-01 09:52:28.000000000 +0200
+++ new/libva-utils-2.16.0/configure.ac 2022-10-08 04:42:07.000000000 +0200
@@ -29,7 +29,7 @@
 # - micro version is libva_micro_version
 # - pre version is libva_pre_version, usually development version
 m4_define([libva_utils_major_version], [2])
-m4_define([libva_utils_minor_version], [15])
+m4_define([libva_utils_minor_version], [16])
 m4_define([libva_utils_micro_version], [0])
 m4_define([libva_utils_pre_version],   [0])
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libva-utils-2.15.0/encode/meson.build 
new/libva-utils-2.16.0/encode/meson.build
--- old/libva-utils-2.15.0/encode/meson.build   2022-07-01 09:52:28.000000000 
+0200
+++ new/libva-utils-2.16.0/encode/meson.build   2022-10-08 04:42:07.000000000 
+0200
@@ -1,4 +1,3 @@
-threads = dependency('threads')
 m = c.find_library('m')
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libva-utils-2.15.0/meson.build 
new/libva-utils-2.16.0/meson.build
--- old/libva-utils-2.15.0/meson.build  2022-07-01 09:52:28.000000000 +0200
+++ new/libva-utils-2.16.0/meson.build  2022-10-08 04:42:07.000000000 +0200
@@ -1,5 +1,5 @@
 project('libva-utils', 'c', 'cpp',
-        version : '2.15.0',
+        version : '2.16.0',
         default_options : [
           'warning_level=2',
           'c_std=gnu99',
@@ -10,11 +10,15 @@
 
 c = meson.get_compiler('c')
 
+threads = dependency('threads')
+
 libva_dep = dependency('libva', version: '>= 1.1.0')
 
 libva_utils_flags = [ '-Wno-unused-parameter',
                       '-Wno-sign-compare' ]
 
+backends = ''
+
 # DRM
 use_drm = false
 if get_option('drm') != 'false'
@@ -30,6 +34,7 @@
     endif
   endforeach
   if use_drm
+    backends += ' drm'
     libva_utils_flags += [ '-DHAVE_VA_DRM=1' ]
   endif
 endif
@@ -49,6 +54,7 @@
     endif
   endforeach
   if use_x11
+    backends += ' x11'
     libva_utils_flags += [ '-DHAVE_VA_X11=1' ]
   endif
 endif
@@ -68,6 +74,7 @@
     endif
   endforeach
   if use_wayland
+    backends += ' wayland'
     libva_utils_flags += [ '-DHAVE_VA_WAYLAND=1' ]
   endif
 endif
@@ -87,3 +94,12 @@
 if get_option('tests')
   subdir('test')
 endif
+
+if meson.version().version_compare('>= 0.53')
+  summary({
+    'Libva VA-API version' : libva_dep.version(),
+    'Installation prefix' : get_option('prefix'),
+    'Extra window systems' : backends,
+    'Enable Unit-tests': get_option('tests')
+  }, bool_yn: true)
+endif

Reply via email to