commit:     dec1097a31e440bec592599d3679d53f060b823c
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Thu Mar  7 19:38:41 2024 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Mar  7 19:54:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dec1097a

media-libs/oneVPL: drop 2023.3.1, 2023.4.0

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 media-libs/oneVPL/Manifest               |  2 -
 media-libs/oneVPL/oneVPL-2023.3.1.ebuild | 82 --------------------------------
 media-libs/oneVPL/oneVPL-2023.4.0.ebuild | 82 --------------------------------
 3 files changed, 166 deletions(-)

diff --git a/media-libs/oneVPL/Manifest b/media-libs/oneVPL/Manifest
index 55e2cd4410de..1ab9b30a5434 100644
--- a/media-libs/oneVPL/Manifest
+++ b/media-libs/oneVPL/Manifest
@@ -1,3 +1 @@
 DIST oneVPL-2.10.2.tar.gz 11872075 BLAKE2B 
6d9b6ba66b1e1c191a309ff26ec54a5bb62fa542ca9eab042a437eca9a82cf9d7e3056247a8110b49e28388bdbd8e4c0793dda8dd84d229937524faa96b10f37
 SHA512 
e4f6e1656371a8edb54a3a67726439d97dd5e8225fa37fdfc309602dd83c51e4a2b4e72bdb18b81dc6691f666a8857b460c45392cf030a8309abd368037be49d
-DIST oneVPL-2023.3.1.tar.gz 6322962 BLAKE2B 
3e688886d03ee90c27e42204f926bbb4eb7fb0926f1bbb4f8dfdd0427adccda3cb3138dbed5d2fc9ea3aa7af78aadced4a242c16aede27d1f1fe781ecb83e58c
 SHA512 
1e8cc143f33438d3a4e1d65aa57dca4e0ebc1a47741b7a124a273cc609cc4ce789c0e230db3244010f5f1ca54f42cdd2e17d132b2c904af41607a2a0527c38ed
-DIST oneVPL-2023.4.0.tar.gz 11592938 BLAKE2B 
e2f264a4729b6c2dd88cc690d78d4106112cc4957c216f52c1381ff3ff7b994e696c969adb6227422160950e4918f8e24c94346b1290515bcd951f814875876a
 SHA512 
240ebcee8c57699c6fdbaf5939ed059758dc9b7e2bd5631138a07b44e8f3007ebd99e7791e648f9ed2f08336063272ea157d55dfdde32bce8a88d62a1a34b1d7

diff --git a/media-libs/oneVPL/oneVPL-2023.3.1.ebuild 
b/media-libs/oneVPL/oneVPL-2023.3.1.ebuild
deleted file mode 100644
index 0758b6389a95..000000000000
--- a/media-libs/oneVPL/oneVPL-2023.3.1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib optfeature
-
-DESCRIPTION="oneAPI Video Processing Library, dispatcher, tools, and examples"
-HOMEPAGE="https://github.com/oneapi-src/oneVPL";
-SRC_URI="https://github.com/oneapi-src/oneVPL/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="dri drm examples experimental tools test vaapi wayland X"
-RESTRICT="!test? ( test )"
-# Tools fails to compile on 32-bit
-REQUIRED_USE="
-       dri? ( X drm )
-       X? ( vaapi )
-       wayland? ( drm )
-       abi_x86_32? ( !tools )
-       abi_x86_x32? ( !tools )
-"
-
-RDEPEND="
-       x11-libs/libpciaccess[${MULTILIB_USEDEP}]
-       vaapi? ( media-libs/libva[X?,wayland?,drm(+)?,${MULTILIB_USEDEP}] )
-       drm? ( x11-libs/libdrm[${MULTILIB_USEDEP}] )
-       wayland? (
-               dev-libs/wayland[${MULTILIB_USEDEP}]
-       )
-       X? (
-               x11-libs/libX11[${MULTILIB_USEDEP}]
-               x11-libs/libxcb[${MULTILIB_USEDEP}]
-       )
-"
-DEPEND="${RDEPEND}
-       wayland? (
-               dev-libs/wayland-protocols
-       )
-"
-BDEPEND="virtual/pkgconfig"
-
-multilib_src_configure() {
-       local mycmakeargs=(
-               -DBUILD_SHARED_LIBS=ON
-               -DBUILD_DISPATCHER=ON
-               # Headers, cmake and pkgconfig files
-               -DBUILD_DEV=ON
-               -DBUILD_EXAMPLES="$(usex examples)"
-               -DINSTALL_EXAMPLE_CODE="$(usex examples)"
-               -DBUILD_PREVIEW="$(usex experimental)"
-               -DBUILD_DISPATCHER_ONEVPL_EXPERIMENTAL="$(usex experimental)"
-               # Fails to build with experimental tools off if tools on
-               -DBUILD_TOOLS_ONEVPL_EXPERIMENTAL="$(usex tools)"
-               -DBUILD_TESTS="$(usex test)"
-               -DBUILD_TOOLS="$(usex tools)"
-               -DENABLE_WAYLAND="$(usex wayland)"
-               -DENABLE_X11="$(usex X)"
-               -DENABLE_DRI3="$(usex dri)"
-               -DENABLE_VA="$(usex vaapi)"
-               -DENABLE_DRM="$(usex drm)"
-               -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
-               -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc"
-       )
-       cmake_src_configure
-}
-
-multilib_src_install() {
-       cmake_src_install
-       # Remove these license files
-       rm -r "${ED}/usr/share/vpl/licensing" || die
-}
-
-pkg_postinst() {
-       optfeature_header "This package provides only the dispatcher, to use it 
install one or more implementations"
-       optfeature "CPUs" media-libs/oneVPL-cpu
-       optfeature "Intel GPUs newer then, and including, Intel Xe" 
media-libs/oneVPL-intel-gpu
-       optfeature "Intel GPUs older then Intel Xe" media-libs/intel-mediasdk
-}

diff --git a/media-libs/oneVPL/oneVPL-2023.4.0.ebuild 
b/media-libs/oneVPL/oneVPL-2023.4.0.ebuild
deleted file mode 100644
index a669bf8ca480..000000000000
--- a/media-libs/oneVPL/oneVPL-2023.4.0.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib optfeature
-
-DESCRIPTION="oneAPI Video Processing Library, dispatcher, tools, and examples"
-HOMEPAGE="https://github.com/intel/libvpl/";
-SRC_URI="https://github.com/intel/libvpl//archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/libvpl-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="dri drm examples experimental tools test vaapi wayland X"
-RESTRICT="!test? ( test )"
-
-REQUIRED_USE="
-       dri? ( X drm )
-       X? ( vaapi )
-       wayland? ( drm )
-"
-
-RDEPEND="
-       x11-libs/libpciaccess[${MULTILIB_USEDEP}]
-       vaapi? ( media-libs/libva[X?,wayland?,drm(+)?,${MULTILIB_USEDEP}] )
-       drm? ( x11-libs/libdrm[${MULTILIB_USEDEP}] )
-       wayland? (
-               dev-libs/wayland[${MULTILIB_USEDEP}]
-       )
-       X? (
-               x11-libs/libX11[${MULTILIB_USEDEP}]
-               x11-libs/libxcb[${MULTILIB_USEDEP}]
-       )
-"
-DEPEND="${RDEPEND}
-       wayland? (
-               dev-libs/wayland-protocols
-       )
-"
-BDEPEND="virtual/pkgconfig"
-
-multilib_src_configure() {
-       local mycmakeargs=(
-               -DBUILD_SHARED_LIBS=ON
-               -DBUILD_DISPATCHER=ON
-               # Headers, cmake and pkgconfig files
-               -DBUILD_DEV=ON
-               -DBUILD_EXAMPLES="$(usex examples)"
-               -DINSTALL_EXAMPLE_CODE="$(usex examples)"
-               -DBUILD_PREVIEW="$(usex experimental)"
-               -DBUILD_DISPATCHER_ONEVPL_EXPERIMENTAL="$(usex experimental)"
-               # Fails to build with experimental tools off if tools on
-               -DBUILD_TOOLS_ONEVPL_EXPERIMENTAL="$(multilib_native_usex 
tools)"
-               -DBUILD_TESTS="$(usex test)"
-               # Tools fails to compile for 32 bit
-               -DBUILD_TOOLS="$(multilib_native_usex tools)"
-               -DENABLE_WAYLAND="$(usex wayland)"
-               -DENABLE_X11="$(usex X)"
-               -DENABLE_DRI3="$(usex dri)"
-               -DENABLE_VA="$(usex vaapi)"
-               -DENABLE_DRM="$(usex drm)"
-               -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
-               -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc"
-       )
-       cmake_src_configure
-}
-
-multilib_src_install() {
-       cmake_src_install
-       # Remove these license files
-       rm -r "${ED}/usr/share/vpl/licensing" || die
-}
-
-pkg_postinst() {
-       optfeature_header "This package provides only the dispatcher, to use it 
install one or more implementations"
-       optfeature "CPUs" media-libs/oneVPL-cpu
-       optfeature "Intel GPUs newer then, and including, Intel Xe" 
media-libs/oneVPL-intel-gpu
-       optfeature "Intel GPUs older then Intel Xe" media-libs/intel-mediasdk
-}

Reply via email to