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 01DBE15815E for ; Fri, 9 Feb 2024 09:09:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FE99E29B6; Fri, 9 Feb 2024 09:09:15 +0000 (UTC) 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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0CA59E29B6 for ; Fri, 9 Feb 2024 09:09:15 +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 01B813430B5 for ; Fri, 9 Feb 2024 09:09:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C97714BD for ; Fri, 9 Feb 2024 09:09:11 +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: <1707469725.13733f1bdf1cb5641fb1ebc53d9de38da0c7ffbe.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/qutebrowser/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/qutebrowser/qutebrowser-3.1.0.ebuild www-client/qutebrowser/qutebrowser-9999.ebuild X-VCS-Directories: www-client/qutebrowser/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 13733f1bdf1cb5641fb1ebc53d9de38da0c7ffbe X-VCS-Branch: master Date: Fri, 9 Feb 2024 09:09:11 +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: 04925b85-b7a8-40ad-9d04-b7d54aa0b87b X-Archives-Hash: 04d5dbbaf15565348100e256466e7b85 commit: 13733f1bdf1cb5641fb1ebc53d9de38da0c7ffbe Author: Ionen Wolkens gentoo org> AuthorDate: Fri Feb 9 05:51:34 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri Feb 9 09:08:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13733f1b www-client/qutebrowser: warn about qtwebengine[bindist] With the binhost gaining popularity, it may be good to warn about it. Not an issue for most packages, but losing e.g. h264 in a full web browser is not great and may leave users confused. Signed-off-by: Ionen Wolkens gentoo.org> www-client/qutebrowser/qutebrowser-3.1.0.ebuild | 8 ++++++++ www-client/qutebrowser/qutebrowser-9999.ebuild | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/www-client/qutebrowser/qutebrowser-3.1.0.ebuild b/www-client/qutebrowser/qutebrowser-3.1.0.ebuild index 1f3619d59962..8bf80f2e1370 100644 --- a/www-client/qutebrowser/qutebrowser-3.1.0.ebuild +++ b/www-client/qutebrowser/qutebrowser-3.1.0.ebuild @@ -203,4 +203,12 @@ pkg_postinst() { ewarn "chromium version. While it is relatively maintained for security, it will" ewarn "cause issues for sites/features designed with a newer version in mind." fi + + if { use qt6 && has_version 'dev-qt/qtwebengine:6[bindist]'; } || + { use !qt6 && has_version 'dev-qt/qtwebengine:5[bindist]'; } + then + ewarn + ewarn "USE=bindist is set on dev-qt/qtwebengine, be warned that this" + ewarn "will prevent playback of proprietary media formats (e.g. h264)." + fi } diff --git a/www-client/qutebrowser/qutebrowser-9999.ebuild b/www-client/qutebrowser/qutebrowser-9999.ebuild index 9d0b343f3286..0ee9fb6c0be8 100644 --- a/www-client/qutebrowser/qutebrowser-9999.ebuild +++ b/www-client/qutebrowser/qutebrowser-9999.ebuild @@ -203,4 +203,12 @@ pkg_postinst() { ewarn "chromium version. While it is relatively maintained for security, it will" ewarn "cause issues for sites/features designed with a newer version in mind." fi + + if { use qt6 && has_version 'dev-qt/qtwebengine:6[bindist]'; } || + { use !qt6 && has_version 'dev-qt/qtwebengine:5[bindist]'; } + then + ewarn + ewarn "USE=bindist is set on dev-qt/qtwebengine, be warned that this" + ewarn "will prevent playback of proprietary media formats (e.g. h264)." + fi }