From: "Andrew Ammerlaan" <andrewammerlaan@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/oneVPL-intel-gpu/
Date: Wed, 14 Feb 2024 12:47:23 +0000 (UTC) [thread overview]
Message-ID: <1707914834.6af3d773b0ff1c17203387aa80f331c17149fd2d.andrewammerlaan@gentoo> (raw)
commit: 6af3d773b0ff1c17203387aa80f331c17149fd2d
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 14 12:46:55 2024 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Feb 14 12:47:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6af3d773
media-libs/oneVPL-intel-gpu: add 24.1.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
media-libs/oneVPL-intel-gpu/Manifest | 1 +
.../oneVPL-intel-gpu-24.1.3.ebuild | 46 ++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/media-libs/oneVPL-intel-gpu/Manifest b/media-libs/oneVPL-intel-gpu/Manifest
index eb42bdb4c95d..57d3d37e192f 100644
--- a/media-libs/oneVPL-intel-gpu/Manifest
+++ b/media-libs/oneVPL-intel-gpu/Manifest
@@ -1,3 +1,4 @@
DIST oneVPL-intel-gpu-23.4.1.tar.gz 9048865 BLAKE2B 8a743e9a5b045a3c1ee07d08ac2bd82815cc0b41bff27b1f7700e9d6cb5ef111ea37152d5611effc277f1b32a49f156c84c4fbaaf7a92ce9e5342eec8bad24ba SHA512 ad2c154bae1ea30b94cd5916265dbf217b20f89d20410731a70c4460d1f3a8439e1773503b9fd7fe56040efa77894c3b50f08a46a57316ea56f037220997f32e
DIST oneVPL-intel-gpu-23.4.3.tar.gz 9048461 BLAKE2B b182a6bb9c9f7ca28dc1b806f52915f1f09ddae96c9b5630149b48677cfe58ec0db159005c1e0905ef337a5dbeddbeec0dc3232fd3bb431c0013c635a77526f2 SHA512 7dcdf04b68bf8fba68832d258a347b07066de5c5ee4fefa0ea94d64611c3f19caeebbc57b44ba63a349e82c6031f2ffd664d18cea1d139260a69247b21afc03f
DIST oneVPL-intel-gpu-24.1.1.tar.gz 9052853 BLAKE2B 3b41e4da58550c95617b8089f2a6a06498cecd256ff09e9cf275c53c9eabb3526f83e9e645b12352771a7eccf302ada727bc6c64847e4d5ee1fba2908bd6206e SHA512 6bb4ea1c6f8e6d591ecf96cbd24e4c278f5e4c61c543b6c1537157e69e5597963671e687829a60bd64ea860741c22c8510b478bcdcbf5d3de1df02f8ea6c502a
+DIST oneVPL-intel-gpu-24.1.3.tar.gz 9055096 BLAKE2B 63f4b14660ef897f9b67675f7b54bd0f48097570d69cc9206e7cc21476854537df5e0c925de413dc6267ab08ca59a3b72a08070b0a0652baa9a7c02f1976a98c SHA512 d885e1076fafa82da5433d38c729b3a5016a8b39f30511c8eff2f695d53ef6d7835b366db8c9cb6d1bd5f30ce47ea84e1a31fb85a536daef0a0c4cd6a874c37d
diff --git a/media-libs/oneVPL-intel-gpu/oneVPL-intel-gpu-24.1.3.ebuild b/media-libs/oneVPL-intel-gpu/oneVPL-intel-gpu-24.1.3.ebuild
new file mode 100644
index 000000000000..faf2827d97cf
--- /dev/null
+++ b/media-libs/oneVPL-intel-gpu/oneVPL-intel-gpu-24.1.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="oneAPI Video Processing Library Intel GPU implementation"
+HOMEPAGE="https://github.com/oneapi-src/oneVPL-intel-gpu"
+SRC_URI="https://github.com/oneapi-src/oneVPL-intel-gpu/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/libva
+ x11-libs/libdrm[video_cards_intel]
+"
+# At runtime we need a dispatcher, oneVPL is preferred but mediasdk also works
+RDEPEND="${DEPEND}
+ >=media-libs/libva-intel-media-driver-${PV}
+ || (
+ media-libs/oneVPL[drm,vaapi]
+ 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
+}
next reply other threads:[~2024-02-14 12:47 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-14 12:47 Andrew Ammerlaan [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-18 10:41 [gentoo-commits] repo/gentoo:master commit in: media-libs/oneVPL-intel-gpu/ Nowa Ammerlaan
2024-11-13 10:05 Nowa Ammerlaan
2024-09-29 15:02 Andrew Ammerlaan
2024-09-29 15:02 Andrew Ammerlaan
2024-07-31 18:48 Andrew Ammerlaan
2024-05-17 14:13 Andrew Ammerlaan
2024-05-17 14:13 Andrew Ammerlaan
2024-04-26 10:38 Andrew Ammerlaan
2024-04-26 10:38 Andrew Ammerlaan
2024-04-04 9:21 Andrew Ammerlaan
2024-03-15 10:40 Andrew Ammerlaan
2024-03-15 10:40 Andrew Ammerlaan
2024-03-07 19:55 Andrew Ammerlaan
2024-02-14 12:47 Andrew Ammerlaan
2024-01-15 11:14 Andrew Ammerlaan
2024-01-15 11:14 Andrew Ammerlaan
2023-12-27 9:31 Andrew Ammerlaan
2023-11-27 13:09 Andrew Ammerlaan
2023-11-27 13:09 Andrew Ammerlaan
2023-10-20 15:54 Andrew Ammerlaan
2023-10-20 15:54 Andrew Ammerlaan
2023-09-06 9:35 Andrew Ammerlaan
2023-09-06 9:35 Andrew Ammerlaan
2023-08-30 7:37 Andrew Ammerlaan
2023-08-17 7:49 Andrew Ammerlaan
2023-06-14 20:06 Andrew Ammerlaan
2023-06-14 20:04 Andrew Ammerlaan
2023-05-31 6:55 Andrew Ammerlaan
2023-05-31 6:55 Andrew Ammerlaan
2023-05-11 15:27 Andrew Ammerlaan
2023-04-30 9:05 Andrew Ammerlaan
2023-04-30 9:05 Andrew Ammerlaan
2023-04-01 15:38 Andrew Ammerlaan
2023-04-01 15:38 Andrew Ammerlaan
2023-03-21 20:56 Andrew Ammerlaan
2023-03-06 10:22 Andrew Ammerlaan
2023-02-23 9:27 Andrew Ammerlaan
2023-02-23 9:27 Andrew Ammerlaan
2023-01-03 19:32 Andrew Ammerlaan
2022-12-06 18:09 Andrew Ammerlaan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1707914834.6af3d773b0ff1c17203387aa80f331c17149fd2d.andrewammerlaan@gentoo \
--to=andrewammerlaan@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox