public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libva-intel-media-driver/
Date: Thu, 29 Sep 2022 16:50:43 +0000 (UTC)	[thread overview]
Message-ID: <1664470237.f65f4a79170e0507509d75c170c3ec530854e825.mattst88@gentoo> (raw)

commit:     f65f4a79170e0507509d75c170c3ec530854e825
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 29 16:50:19 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Sep 29 16:50:37 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f65f4a79

x11-libs/libva-intel-media-driver: Version bump to 22.5.3.1

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 x11-libs/libva-intel-media-driver/Manifest         |  1 +
 .../libva-intel-media-driver-22.5.3.1.ebuild       | 54 ++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/x11-libs/libva-intel-media-driver/Manifest b/x11-libs/libva-intel-media-driver/Manifest
index 941c53ea5379..03b65dc3d778 100644
--- a/x11-libs/libva-intel-media-driver/Manifest
+++ b/x11-libs/libva-intel-media-driver/Manifest
@@ -1,2 +1,3 @@
 DIST intel-media-22.4.4.tar.gz 27437439 BLAKE2B 63bee317ff12c34e7a2da9f5dce51ebb21708f8b5b3f3a58618f487e72f7826f0d4afa486bac08c2db8582d8a4774de716b5bb9a3dff93ff4fc266e56d434519 SHA512 e6ed669476e42396df7714732c628aa67d90fc8040c006605b754d70bdb7ecf476c5eb5c849a8647646dd3858c5fd469ba05f5c6b02b36d2211dc4f4cc7fa77f
+DIST intel-media-22.5.3.1.tar.gz 27492012 BLAKE2B e300eba764dde8f2d6c07f4768bca253a21ae5f3bcfd829257541fb26c8a997390011a8bfdfab964eafe37fcece5db4826700bccda672ef51b2f62de2ea94d17 SHA512 aab70004aa3bd91ced7b147e4cd4bd662fe0813b2deeaa90e61f4d692d43a302a1e18dad502bbedb5102593f21f9710a56e202f0ba70a58afed139df3bf2bb78
 DIST intel-media-22.5.3.tar.gz 27488655 BLAKE2B 90d79ac8e7ab8cb97941d37fe81ce4524cef45e49e4b64e57931f00927cb2065c0b6f8b4fff5aba58cb9ea64548337261e37df13a53ba07c8ab81db160990e6e SHA512 987ca85ed95272945fd8c23a388ca68481ff5fdf74737a04659304e58c6d131c00db03ee134fc3549225a9fc33b874632335f1182d1e0c6d90fbc5ea290b486d

diff --git a/x11-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.3.1.ebuild b/x11-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.3.1.ebuild
new file mode 100644
index 000000000000..afd945b8dab0
--- /dev/null
+++ b/x11-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.3.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+if [[ ${PV} == *9999 ]] ; then
+	: ${EGIT_REPO_URI:="https://github.com/intel/media-driver"}
+	if [[ ${PV%9999} != "" ]] ; then
+		: ${EGIT_BRANCH:="release/${PV%.9999}"}
+	fi
+	inherit git-r3
+else
+	MY_PV="${PV%_pre}"
+	SRC_URI="https://github.com/intel/media-driver/archive/intel-media-${MY_PV}.tar.gz"
+	S="${WORKDIR}/media-driver-intel-media-${MY_PV}"
+	if [[ ${PV} != *_pre* ]] ; then
+		KEYWORDS="~amd64"
+	fi
+fi
+
+DESCRIPTION="Intel Media Driver for VA-API (iHD)"
+HOMEPAGE="https://github.com/intel/media-driver"
+
+LICENSE="MIT BSD redistributable? ( no-source-code )"
+SLOT="0"
+IUSE="+redistributable test X"
+
+RESTRICT="!test? ( test )"
+
+DEPEND=">=media-libs/gmmlib-22.0.0:=
+	>=x11-libs/libva-2.14.0[X?]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-21.4.2-Remove-unwanted-CFLAGS.patch
+	"${FILESDIR}"/${PN}-20.4.5_testing_in_src_test.patch
+)
+
+src_configure() {
+	local mycmakeargs=(
+		-DMEDIA_BUILD_FATAL_WARNINGS=OFF
+		-DMEDIA_RUN_TEST_SUITE=$(usex test)
+		-DBUILD_TYPE=Release
+		-DPLATFORM=linux
+		-DCMAKE_DISABLE_FIND_PACKAGE_X11=$(usex !X)
+		-DENABLE_NONFREE_KERNELS=$(usex redistributable)
+		-DLATEST_CPP_NEEDED=ON # Seems to be the best option for now
+	)
+	local CMAKE_BUILD_TYPE="Release"
+	cmake_src_configure
+}


             reply	other threads:[~2022-09-29 16:50 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-29 16:50 Matt Turner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-10-16  3:02 [gentoo-commits] repo/gentoo:master commit in: x11-libs/libva-intel-media-driver/ Matt Turner
2022-09-10 22:26 Matt Turner
2022-09-08 18:40 Jakov Smolić
2022-09-08 15:03 Matt Turner
2022-08-31 16:49 Matt Turner
2022-08-16  2:44 Matt Turner
2022-08-02  1:56 Matt Turner
2022-07-04  2:41 Matt Turner
2022-07-04  2:41 Matt Turner
2022-07-04  2:41 Matt Turner
2022-06-26  8:46 Agostino Sarubbo
2022-06-13 19:07 Matt Turner
2022-05-29 19:01 Matt Turner
2022-05-09  9:58 Jakov Smolić
2022-04-01 17:51 Matt Turner
2022-04-01 17:51 Matt Turner
2022-03-07 19:45 Conrad Kostecki
2022-03-05 13:30 Conrad Kostecki
2022-02-19  6:52 Agostino Sarubbo
2022-01-25 13:36 Jakov Smolić
2021-12-30 20:52 Matt Turner
2021-12-30 20:52 Matt Turner
2021-12-20  9:53 Conrad Kostecki
2021-12-18  5:10 Sam James
2021-12-18  5:10 Sam James
2021-12-02 18:01 Matt Turner
2021-12-02 18:01 Matt Turner
2021-12-02 18:01 Matt Turner
2021-12-02 18:01 Matt Turner
2021-11-20  7:26 Agostino Sarubbo
2021-10-30 21:24 Conrad Kostecki
2021-10-14  5:09 Sam James
2021-10-14  5:09 Sam James
2021-09-22 21:19 Sam James
2021-09-07 20:27 Sam James
2021-07-01  8:54 Sam James
2021-06-29 17:37 Sam James
2021-03-01  9:20 Agostino Sarubbo
2021-02-14 20:50 Andreas Sturmlechner
2021-01-13 18:18 Sam James
2021-01-11 20:13 Sam James
2021-01-11 20:13 Sam James
2021-01-11 19:09 Sam James
2021-01-04 16:59 Sam James
2020-07-22 12:53 Thomas Deutschmann
2020-05-18 19:34 Thomas Deutschmann
2019-02-25 10:54 Luca Barbato
2018-10-22 22:55 Luca Barbato

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=1664470237.f65f4a79170e0507509d75c170c3ec530854e825.mattst88@gentoo \
    --to=mattst88@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