From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BC349158176 for ; Sun, 19 Oct 2025 18:04:04 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A857F341F67 for ; Sun, 19 Oct 2025 18:04:04 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id ECF0E110578; Sun, 19 Oct 2025 18:03:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id E39EB110578 for ; Sun, 19 Oct 2025 18:03:50 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A19E9341F64 for ; Sun, 19 Oct 2025 18:03:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E46763B1B for ; Sun, 19 Oct 2025 18:03:47 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1760896941.728b130421c9675133d8a3d6c408ab0fb71e8313.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/x265/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/x265/x265-4.1.ebuild media-libs/x265/x265-9999.ebuild X-VCS-Directories: media-libs/x265/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 728b130421c9675133d8a3d6c408ab0fb71e8313 X-VCS-Branch: master Date: Sun, 19 Oct 2025 18:03:47 +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: 9de1c9e8-d97f-4cbe-8da5-6ccb1f259067 X-Archives-Hash: edf9e3fe772729401b6bc95fe8131f36 commit: 728b130421c9675133d8a3d6c408ab0fb71e8313 Author: Paul Zander gmail com> AuthorDate: Sat Aug 9 13:37:55 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 19 18:02:21 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=728b1304 media-libs/x265: fix hardcoded vmaf model path Signed-off-by: Paul Zander gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/44229 Signed-off-by: Sam James gentoo.org> media-libs/x265/x265-4.1.ebuild | 4 ++++ media-libs/x265/x265-9999.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/media-libs/x265/x265-4.1.ebuild b/media-libs/x265/x265-4.1.ebuild index 8f1f70665bd7..902e0753e0c4 100644 --- a/media-libs/x265/x265-4.1.ebuild +++ b/media-libs/x265/x265-4.1.ebuild @@ -71,6 +71,10 @@ src_prepare() { sed -r -e 's/(set\(ARM_ARGS -O3)/# \1/g' -i CMakeLists.txt || die + # fix hardcoded path + # libvmaf ERROR could not read model from path: "/usr/local/share/model/vmaf_v0.6.1.json" + sed -e "s#/usr/local/share/model/#${EPREFIX}/usr/share/vmaf/model/#g" -i x265.h || die + # TODO check so_name via # X265_BUILD 215 } diff --git a/media-libs/x265/x265-9999.ebuild b/media-libs/x265/x265-9999.ebuild index 8926fe9b9ec9..961e78ee122b 100644 --- a/media-libs/x265/x265-9999.ebuild +++ b/media-libs/x265/x265-9999.ebuild @@ -68,6 +68,10 @@ src_prepare() { sed -r -e 's/(set\(ARM_ARGS -O3)/# \1/g' -i CMakeLists.txt || die + # fix hardcoded path + # libvmaf ERROR could not read model from path: "/usr/local/share/model/vmaf_v0.6.1.json" + sed -e "s#/usr/local/share/model/#${EPREFIX}/usr/share/vmaf/model/#g" -i x265.h || die + # TODO check so_name via # X265_BUILD 215 }