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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E13FE139694 for ; Sun, 11 Jun 2017 16:55:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2328421C0A0; Sun, 11 Jun 2017 16:55:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F2EBE21C0A0 for ; Sun, 11 Jun 2017 16:55:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 17C0334181A for ; Sun, 11 Jun 2017 16:55:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD4B1747E for ; Sun, 11 Jun 2017 16:55:54 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1497200146.3d2fe2d094750126975bf3ce3881a0d830cd00b2.kensington@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: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 3d2fe2d094750126975bf3ce3881a0d830cd00b2 X-VCS-Branch: master Date: Sun, 11 Jun 2017 16:55:54 +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-Archives-Salt: 9025f345-b04f-4bfb-ae89-45be22e42237 X-Archives-Hash: 9379c54cbdd2f29bb02abf90377ea332 commit: 3d2fe2d094750126975bf3ce3881a0d830cd00b2 Author: Ilya Tumaykin gmail com> AuthorDate: Tue May 30 17:59:44 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Jun 11 16:55:46 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d2fe2d0 media-video/mpv: warn users re txt subs change in 0.24.0 Intended for stable users only. Package-Manager: Portage-2.3.6, Repoman-2.3.2 media-video/mpv/mpv-9999.ebuild | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index adc9c06740d..51104143d76 100644 --- a/media-video/mpv/mpv-9999.ebuild +++ b/media-video/mpv/mpv-9999.ebuild @@ -295,13 +295,15 @@ pkg_preinst() { } pkg_postinst() { - local rv softvol_0_18_1=0 osc_0_21_0=0 opengl_0_25_0=0 + local rv softvol_0_18_1=0 osc_0_21_0=0 txtsubs_0_24_0=0 opengl_0_25_0=0 for rv in ${REPLACING_VERSIONS}; do version_compare ${rv} 0.18.1 [[ $? -eq 1 ]] && softvol_0_18_1=1 version_compare ${rv} 0.21.0 [[ $? -eq 1 ]] && osc_0_21_0=1 + version_compare ${rv} 0.24.0 + [[ $? -eq 1 ]] && txtsubs_0_24_0=1 version_compare ${rv} 0.25.0 [[ $? -eq 1 ]] && ! use opengl && opengl_0_25_0=1 done @@ -324,6 +326,14 @@ pkg_postinst() { elog fi + if [[ ${txtsubs_0_24_0} -eq 1 ]]; then + elog "Since version 0.24.0 subtitles with .txt extension aren't autoloaded." + elog "If you want to restore the previous behaviour, please refer to" + elog + elog "https://wiki.gentoo.org/wiki/Mpv#Subtitles_with_.txt_extension_in_0.24.0" + elog + fi + if [[ ${opengl_0_25_0} -eq 1 ]]; then elog "Since version 0.25.0 the 'opengl' USE flag is mapped to" elog "the 'opengl' video output and no longer explicitly requires"