From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2083015800A for ; Sat, 15 Jul 2023 22:12:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 428E8E086A; Sat, 15 Jul 2023 22:12:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 28734E086A for ; Sat, 15 Jul 2023 22:12:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4CC9F340B29 for ; Sat, 15 Jul 2023 22:12:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B4F8A36 for ; Sat, 15 Jul 2023 22:12:21 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1689459131.4d9d50d4346a0a584780a3da20e1366d49231051.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mpv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/mpv/mpv-9999.ebuild X-VCS-Directories: media-video/mpv/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 4d9d50d4346a0a584780a3da20e1366d49231051 X-VCS-Branch: master Date: Sat, 15 Jul 2023 22:12:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5f81f63f-43dc-4ee5-847c-18299f1f6c01 X-Archives-Hash: 382ea80a29d1cd9ea9b198a271ff6d5b commit: 4d9d50d4346a0a584780a3da20e1366d49231051 Author: Ionen Wolkens gentoo org> AuthorDate: Sat Jul 15 21:57:51 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sat Jul 15 22:12:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d9d50d4 media-video/mpv: loosen libplacebo requirement in live Using a older libplacebo is possible, but gpu-next support will be missing. Lower bound felt harmless to ensure all features, but other packages (e.g. ffmpeg) could potentially need to set temporary upper bounds like mpv-0.35 did and this will create conflicts. Not that it matters that much while this is only in mpv-9999. Signed-off-by: Ionen Wolkens gentoo.org> media-video/mpv/mpv-9999.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index 946f87643e68..3290819e1b60 100644 --- a/media-video/mpv/mpv-9999.ebuild +++ b/media-video/mpv/mpv-9999.ebuild @@ -86,7 +86,7 @@ COMMON_DEPEND=" lcms? ( media-libs/lcms:2 ) libcaca? ( media-libs/libcaca ) libplacebo? ( - >=media-libs/libplacebo-5.266:=[opengl?,vulkan?] + >=media-libs/libplacebo-4.157:=[opengl?,vulkan?] egl? ( media-libs/libplacebo[opengl] ) ) lua? ( ${LUA_DEPS} ) @@ -204,7 +204,6 @@ src_configure() { $(meson_feature jpeg) $(meson_feature libcaca caca) $(meson_feature libplacebo) - $(meson_feature libplacebo libplacebo-next) $(meson_feature mmal rpi-mmal) $(meson_feature sdl sdl2-video) $(meson_feature sixel) @@ -242,10 +241,14 @@ src_configure() { # notable options left to automagic #dmabuf-wayland: USE="drm wayland" + plus memfd_create support + #libplacebo-next: USE="libplacebo" + >=libplacebo-5.266 #vulkan-interop: USE="libplacebo vulkan" + ffmpeg-9999 currently # TODO?: perhaps few more similar compound options should be left auto ) + has_version '>=media-libs/libplacebo-5.266' || + ewarn "${PN}'s gpu-next video output requires ${_} to be used" + meson_src_configure }