From b99cdcdcd32d88f10ec000b71ca3bf460ad2d7b1 Mon Sep 17 00:00:00 2001 From: Nowa Ammerlaan Date: Fri, 22 May 2026 21:48:36 +0200 Subject: [PATCH] media-libs/vpl-gpu-rt: drop 25.2.2 Signed-off-by: Nowa Ammerlaan --- media-libs/vpl-gpu-rt/Manifest | 1 - .../vpl-gpu-rt/vpl-gpu-rt-25.2.2.ebuild | 50 ------------------- 2 files changed, 51 deletions(-) delete mode 100644 media-libs/vpl-gpu-rt/vpl-gpu-rt-25.2.2.ebuild diff --git a/media-libs/vpl-gpu-rt/Manifest b/media-libs/vpl-gpu-rt/Manifest index f8268afdbc827..f5c4b3775e9d1 100644 --- a/media-libs/vpl-gpu-rt/Manifest +++ b/media-libs/vpl-gpu-rt/Manifest @@ -1,4 +1,3 @@ -DIST vpl-gpu-rt-25.2.2.tar.gz 9194348 BLAKE2B c21f4876cbaab42085d7af5b151fe09509dae10ffbc22814225c82d4df113ba48705844431e7b0ce828c3b293ea1d1731ba60e5e05c6089d5fb1ae4d64f14f83 SHA512 7d32dec65b059e22bc10d6b82cee16fdd9eeddc4cec03fd0f078f6f696e81d8614c14f48c88a8587107f1255d28f6f08f505db6ceda7e3403d570740967ba2d9 DIST vpl-gpu-rt-25.4.3.tar.gz 9198630 BLAKE2B 634ef08e020e2e18fd7f33fe81a65c69dbbac02c4d151531a682d5895f26bfa96ffcaee040820cdd174862ca5583f980336a474a3933f8b594aa7971a678de78 SHA512 84808e4acc11b86d00243d80034ef6e981213b04619d95b74d99e9ff93daabb2328155f3934500b12f4cd2431cff3c9f19f57452000859068d9c5933f7f85944 DIST vpl-gpu-rt-26.1.1.tar.gz 9201014 BLAKE2B 432f9f8a4fd072b6f7708a98aa2fdb664e4991754401c03f18d4a827843186de93ee8db043e65b0217ccb6ebae5aa65d68d9a3eb38532f5993328b9dfb2213b8 SHA512 2a2c9bb7835f6dbacd60b53d6388f04bba5e0b56ca916926dc31f7b7099855afe7bf398ca467f92cd96a5b54802b6d7ba94995bff04fc8cc56f11a586797182b DIST vpl-gpu-rt-26.2.0.tar.gz 9202837 BLAKE2B c386cb7811a54b57ea26f70a18967efd5fabf53cf8f6b042582a00d06fd5d18c6d5d407fa6f5a355413079061f27f775510c1ec93ead7a04c897c8012e7e432b SHA512 96bbe85f8f35eb99d96094d452aa86abc36b2b0e8f11f972c06f9a5fa9532584c6b1d11e15f3ac9d1feff5430ed03ba3f9146a901810872a7cc7eb7a75aa47ae diff --git a/media-libs/vpl-gpu-rt/vpl-gpu-rt-25.2.2.ebuild b/media-libs/vpl-gpu-rt/vpl-gpu-rt-25.2.2.ebuild deleted file mode 100644 index aaefd1d2372b8..0000000000000 --- a/media-libs/vpl-gpu-rt/vpl-gpu-rt-25.2.2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 2022-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# NOTE: please bump with the other parts of intel's media stack, listed below -# https://github.com/intel/vpl-gpu-rt/releases - -EAPI=8 - -inherit cmake - -DESCRIPTION="Intel Video Processing Library GPU Runtime" -HOMEPAGE="https://github.com/intel/vpl-gpu-rt/" -SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/intel-onevpl-${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-intel-onevpl-${PV}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" - -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND=" - media-libs/gmmlib - media-libs/libva - x11-libs/libdrm[video_cards_intel] -" -# At runtime we need a dispatcher, libvpl is preferred but mediasdk also works -RDEPEND="${DEPEND} - >=media-libs/libva-intel-media-driver-${PV} - || ( - media-libs/libvpl - media-libs/intel-mediasdk - ) -" -BDEPEND="virtual/pkgconfig" - -src_configure() { - local mycmakeargs=( - -DBUILD_RUNTIME=ON - # To build the kernels we need to package the cm-compiler, use pre-built instead - -DBUILD_KERNELS=OFF - -DBUILD_TESTS="$(usex test)" - # This only seems to do something if we BUILD_KERNELS=ON - #-DBUILD_TOOLS="$(usex tools)" - # OpenCL only has an effect if we build kernels - -DENABLE_OPENCL=OFF - ) - cmake_src_configure -}