package/libva-intel-driver: bump version to 2.4.5

https://github.com/irql-notlessorequal/intel-vaapi-driver/blob/2.4.5/NEWS

This bump follows
39d2ff612f

"Intel archived intel/intel-vaapi-driver at 2.4.1 and advises forking.
 irql-notlessorequal/intel-vaapi-driver is the active continuation (119
 commits ahead, tagged releases, Chromium fixes), so track it at 2.4.5.
 [...]
 The fork renamed the wayland meson option, so switch with_wayland to
 with_wayland_drm in all DISPLAYSERVER branches. Also drop the dead
 01.org PKG_SITE."

Updated license file and hash due to upstream commit:
7343767d87

Also switch build system to meson.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Bernd Kuhls
2026-07-05 20:20:16 +02:00
committed by Thomas Petazzoni
parent 7241fb2db0
commit cf95721d00
3 changed files with 11 additions and 15 deletions

View File

@@ -12,7 +12,7 @@ config BR2_PACKAGE_LIBVA_INTEL_DRIVER
help
VA-API back-end driver for Intel graphics chips
https://01.org/vaapi
https://github.com/irql-notlessorequal/intel-vaapi-driver
comment "libva intel driver needs a toolchain w/ threads, dynamic library"
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS

View File

@@ -1,5 +1,3 @@
# From https://github.com/intel/intel-vaapi-driver/releases
sha1 c998e06f13238c6419bb38ede9a13e453312737b intel-vaapi-driver-2.4.1.tar.bz2
# Locally computed
sha256 0081fce08eb3a83f7d99c3b853c8fdfa0af437b8f5b0fb7c66faeb83bcbe0c19 intel-vaapi-driver-2.4.1.tar.bz2
sha256 c86a782ee845b52472dae9b9d79fb915d333628ac0efe49cdce63644814931de COPYING
sha256 f89f77bc46ec6f46392c1b90b9bf34d09f908bf33c9d16d385897b1fe282bacc libva-intel-driver-2.4.5.tar.gz
sha256 b3a55fe5734da7831d7b359e52f8f7026e05216d58479981407c184afb8b24f9 LICENSE

View File

@@ -4,26 +4,24 @@
#
################################################################################
LIBVA_INTEL_DRIVER_VERSION = 2.4.1
LIBVA_INTEL_DRIVER_SOURCE = intel-vaapi-driver-$(LIBVA_INTEL_DRIVER_VERSION).tar.bz2
LIBVA_INTEL_DRIVER_SITE = \
https://github.com/intel/intel-vaapi-driver/releases/download/$(LIBVA_INTEL_DRIVER_VERSION)
LIBVA_INTEL_DRIVER_VERSION = 2.4.5
LIBVA_INTEL_DRIVER_SITE = $(call github,irql-notlessorequal,intel-vaapi-driver,$(LIBVA_INTEL_DRIVER_VERSION))
LIBVA_INTEL_DRIVER_LICENSE = MIT
LIBVA_INTEL_DRIVER_LICENSE_FILES = COPYING
LIBVA_INTEL_DRIVER_LICENSE_FILES = LICENSE
LIBVA_INTEL_DRIVER_DEPENDENCIES = host-pkgconf libdrm libva
ifeq ($(BR2_PACKAGE_XORG7),y)
LIBVA_INTEL_DRIVER_DEPENDENCIES += xlib_libX11 xlib_libXext xlib_libXfixes
LIBVA_INTEL_DRIVER_CONF_OPTS += --enable-x11
LIBVA_INTEL_DRIVER_CONF_OPTS += -Dwith_x11=yes
else
LIBVA_INTEL_DRIVER_CONF_OPTS += --disable-x11
LIBVA_INTEL_DRIVER_CONF_OPTS += -Dwith_x11=no
endif
ifeq ($(BR2_PACKAGE_WAYLAND),y)
LIBVA_INTEL_DRIVER_DEPENDENCIES += wayland
LIBVA_INTEL_DRIVER_CONF_OPTS += --enable-wayland
LIBVA_INTEL_DRIVER_CONF_OPTS += -Dwith_wayland_drm=yes
else
LIBVA_INTEL_DRIVER_CONF_OPTS += --disable-wayland
LIBVA_INTEL_DRIVER_CONF_OPTS += -Dwith_wayland_drm=no
endif
$(eval $(autotools-package))
$(eval $(meson-package))