diff options
author | Matt Turner <mattst88@gentoo.org> | 2023-02-02 17:13:06 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-02-02 17:14:15 -0500 |
commit | b811f2eef5f85460b1c77eae77fdbe21ffd8cb3e (patch) | |
tree | 5631a8264cb9e3fac71d84f357092e051ed75cda /media-video | |
parent | media-libs/libva: Drop old versions (diff) | |
download | gentoo-b811f2eef5f85460b1c77eae77fdbe21ffd8cb3e.tar.gz gentoo-b811f2eef5f85460b1c77eae77fdbe21ffd8cb3e.tar.bz2 gentoo-b811f2eef5f85460b1c77eae77fdbe21ffd8cb3e.zip |
media-video/libva-utils: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'media-video')
4 files changed, 0 insertions, 222 deletions
diff --git a/media-video/libva-utils/Manifest b/media-video/libva-utils/Manifest index 8aeb4cf33bb7..5af9a28bbe3b 100644 --- a/media-video/libva-utils/Manifest +++ b/media-video/libva-utils/Manifest @@ -1,4 +1,2 @@ -DIST libva-utils-2.14.0.tar.gz 1241072 BLAKE2B 17f1e0badb05e39f3979bde652dfe6832e8bfb2accd99fd6c5d972090cfce630e2a93ad96e5d17bc7bd9c393b12c2a7b066cb60a715c2dbb128dd263c480bcca SHA512 631e9becf5b2f6d083906962c004c9080d2e2b2d98b6003638a31dde8ad4e2549606301b97e88822471e29007232fc470a2116be09dc0c55d3cc2df6a45a7be1 -DIST libva-utils-2.15.0.tar.gz 1245559 BLAKE2B 92fe1e7dbd3c953eecb351625213c2b537ad640f61534f3316d3a46070cb3818b4acafbc7a666e24b51d0900cea044074a7a6519f3c4aba6d2a38cf6ed0b2d66 SHA512 90cfa83fb7443fc90558c148c740c9c272796197fba49ff0179af94c40e97c830fc26c534e9a74fa58f597075f9ba68b477aabc784148c14dc09bde07f23cdeb DIST libva-utils-2.16.0.tar.gz 1245723 BLAKE2B 3ce3b54f9b8d1e5960fdb7587da9dc4fa9754f3612155e86d99f2f120e31e0e69a40482d7a4571fefc0a8079ba987303cbb433203de9ef6e203e9419b6d91b91 SHA512 d5395c1de4b95f4d0a86621b0338852250a3893b732c6fd69d0622c989bff530461a183c151f322469b1ed7e4815173dbbcf36cc390db9ebbae6fb7d7a90cb9c DIST libva-utils-2.17.1.tar.gz 1276454 BLAKE2B bde2b784c6470721b113d5a4429ac0b02b922a6bf37d3554d4c088736d184cb8d8107b714e37d0ba517fd9a52ba43247cd4985604421b5e63af841b649786366 SHA512 db89f70c6efb34d0e390a443b29d706ac6339e157e6451a96aa50d4246ce08b8276608874f20d115a2576b8876c95a2e34abba8fe0a446f6736a807779517c6c diff --git a/media-video/libva-utils/files/libva-utils-2.15.0-fix-threads-option.patch b/media-video/libva-utils/files/libva-utils-2.15.0-fix-threads-option.patch deleted file mode 100644 index 4683dcbdd557..000000000000 --- a/media-video/libva-utils/files/libva-utils-2.15.0-fix-threads-option.patch +++ /dev/null @@ -1,29 +0,0 @@ -https://bugs.gentoo.org/835508 -https://github.com/intel/libva-utils/pull/261 - -From 83fb9c9bbda86f1bd224b20b082aff6e9f3d6ff6 Mon Sep 17 00:00:00 2001 -From: Matt Turner <mattst88@gmail.com> -Date: Fri, 18 Mar 2022 10:52:29 -0700 -Subject: [PATCH] meson: Search for threads in top-level meson.build - -In Gentoo we allow disabling the tools and putsuface separately, so -moving the threads check out of the encode subdirectory helps. ---- a/encode/meson.build -+++ b/encode/meson.build -@@ -1,4 +1,3 @@ --threads = dependency('threads') - m = c.find_library('m') - - ---- a/meson.build -+++ b/meson.build -@@ -10,6 +10,8 @@ project('libva-utils', 'c', 'cpp', - - c = meson.get_compiler('c') - -+threads = dependency('threads') -+ - libva_dep = dependency('libva', version: '>= 1.1.0') - - libva_utils_flags = [ '-Wno-unused-parameter', - diff --git a/media-video/libva-utils/libva-utils-2.14.0.ebuild b/media-video/libva-utils/libva-utils-2.14.0.ebuild deleted file mode 100644 index 9127cfb38dd5..000000000000 --- a/media-video/libva-utils/libva-utils-2.14.0.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit meson - -DESCRIPTION="Collection of utilities and tests for VA-API" -HOMEPAGE="https://01.org/linuxmedia/vaapi" -if [[ ${PV} = *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/intel/libva-utils" -else - SRC_URI="https://github.com/intel/libva-utils/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm64 ppc64 ~riscv x86 ~amd64-linux ~x86-linux" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="examples putsurface test +vainfo wayland X" -RESTRICT="test" # Tests must be run manually - -REQUIRED_USE=" - putsurface? ( || ( wayland X ) ) - || ( examples putsurface test vainfo ) -" - -BDEPEND="virtual/pkgconfig" - -if [[ ${PV} = *9999 ]] ; then - DEPEND="~media-libs/libva-${PV}:=[drm(+),wayland?,X?]" -else - DEPEND=">=media-libs/libva-$(ver_cut 1-2).0:=[drm(+),wayland?,X?]" -fi - -DEPEND+=" - wayland? ( >=dev-libs/wayland-1.0.6 ) - X? ( >=x11-libs/libX11-1.6.2 ) -" -RDEPEND="${DEPEND}" - -src_prepare() { - default - - local sed_args=() - - # Fix broken dependency check - # https://github.com/intel/libva-utils/pull/260 - sed_args+=(-e "s/dependency('drm'/dependency('libdrm'/") - - if ! use examples ; then - sed_args+=( - -e "/^subdir('decode')$/d" - -e "/^subdir('encode')$/d" - -e "/^subdir('videoprocess')$/d" - -e "/^subdir('vendor\/intel')$/d" - -e "/^subdir('vendor\/intel\/sfcsample')$/d" - ) - fi - - if ! use putsurface ; then - sed_args+=(-e "/^subdir('putsurface')$/d") - fi - - if ! use vainfo ; then - sed_args+=(-e "/^subdir('vainfo')$/d") - fi - - if [[ ${#sed_args[@]} -gt 0 ]] ; then - sed "${sed_args[@]}" -i meson.build || die - fi -} - -src_configure() { - local emesonargs=( - -Ddrm=true - $(meson_use X x11) - $(meson_use wayland) - $(meson_use test tests) - ) - meson_src_configure -} - -src_install() { - meson_src_install - - if ! use test ; then - rm -f "${ED}"/usr/bin/test_va_api || die - fi -} - -pkg_postinst() { - if use test ; then - elog "Tests must be run manually with the test_va_api binary" - fi -} diff --git a/media-video/libva-utils/libva-utils-2.15.0.ebuild b/media-video/libva-utils/libva-utils-2.15.0.ebuild deleted file mode 100644 index 908a4fa7da64..000000000000 --- a/media-video/libva-utils/libva-utils-2.15.0.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson - -DESCRIPTION="Collection of utilities and tests for VA-API" -HOMEPAGE="https://01.org/linuxmedia/vaapi" -if [[ ${PV} = *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/intel/libva-utils" -else - SRC_URI="https://github.com/intel/libva-utils/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm64 ppc64 ~riscv x86 ~amd64-linux ~x86-linux" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="examples putsurface test +vainfo wayland X" -RESTRICT="test" # Tests must be run manually - -REQUIRED_USE=" - putsurface? ( || ( wayland X ) ) - || ( examples putsurface test vainfo ) -" - -DEPEND=" - x11-libs/libdrm - wayland? ( >=dev-libs/wayland-1.0.6 ) - X? ( >=x11-libs/libX11-1.6.2 ) -" -if [[ ${PV} = *9999 ]] ; then - DEPEND+="~media-libs/libva-${PV}:=[drm(+),wayland?,X?]" -else - DEPEND+=">=media-libs/libva-$(ver_cut 1-2).0:=[drm(+),wayland?,X?]" -fi -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${P}-fix-threads-option.patch -) - -src_prepare() { - default - - local sed_args=() - - if ! use examples ; then - sed_args+=( - -e "/^subdir('decode')$/d" - -e "/^subdir('encode')$/d" - -e "/^subdir('videoprocess')$/d" - -e "/^subdir('vendor\/intel')$/d" - -e "/^subdir('vendor\/intel\/sfcsample')$/d" - ) - fi - - if ! use putsurface ; then - sed_args+=(-e "/^subdir('putsurface')$/d") - fi - - if ! use vainfo ; then - sed_args+=(-e "/^subdir('vainfo')$/d") - fi - - if [[ ${#sed_args[@]} -gt 0 ]] ; then - sed "${sed_args[@]}" -i meson.build || die - fi -} - -src_configure() { - local emesonargs=( - -Ddrm=true - $(meson_use X x11) - $(meson_use wayland) - $(meson_use test tests) - ) - meson_src_configure -} - -src_install() { - meson_src_install - - if ! use test ; then - rm -f "${ED}"/usr/bin/test_va_api || die - fi -} - -pkg_postinst() { - if use test ; then - elog "Tests must be run manually with the test_va_api binary" - fi -} |