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 1961A158090 for ; Thu, 19 May 2022 22:46:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 421CEE090E; Thu, 19 May 2022 22:46:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 20405E090E for ; Thu, 19 May 2022 22:46:05 +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 0E37034131B for ; Thu, 19 May 2022 22:46:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53394430 for ; Thu, 19 May 2022 22:46:02 +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: <1653000342.be42b487bdbb8acdb5c3765710a3a785f2e38c9e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/xine-lib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/xine-lib/xine-lib-1.2.11-r1.ebuild media-libs/xine-lib/xine-lib-1.2.11.ebuild media-libs/xine-lib/xine-lib-1.2.9999.ebuild X-VCS-Directories: media-libs/xine-lib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: be42b487bdbb8acdb5c3765710a3a785f2e38c9e X-VCS-Branch: master Date: Thu, 19 May 2022 22:46:02 +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: 5fc47573-f3bc-4c2e-b1e9-bc77cc858fac X-Archives-Hash: 33cef0f0d0bda44ab38cb30c1ff0dcb2 commit: be42b487bdbb8acdb5c3765710a3a785f2e38c9e Author: Sam James gentoo org> AuthorDate: Thu May 19 22:40:15 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu May 19 22:45:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be42b487 media-libs/xine-lib: disable dav1d for 1.2.11 1.2.12 has dav1d support enabled properly (and a patch for >= 1.0.0) but in 1.2.11, it was automagic. Let's just disable it entirely in 1.2.11 given that it fails to build and we've had to mask (for now) 1.2.12 because of crashes. Closes: https://bugs.gentoo.org/846398 Bug: https://bugs.gentoo.org/835791 Bug: https://bugs.gentoo.org/845396 Signed-off-by: Sam James gentoo.org> .../xine-lib/{xine-lib-1.2.11.ebuild => xine-lib-1.2.11-r1.ebuild} | 5 +++-- media-libs/xine-lib/xine-lib-1.2.9999.ebuild | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/media-libs/xine-lib/xine-lib-1.2.11.ebuild b/media-libs/xine-lib/xine-lib-1.2.11-r1.ebuild similarity index 98% rename from media-libs/xine-lib/xine-lib-1.2.11.ebuild rename to media-libs/xine-lib/xine-lib-1.2.11-r1.ebuild index 24c2b15d14e6..de062653a998 100644 --- a/media-libs/xine-lib/xine-lib-1.2.11.ebuild +++ b/media-libs/xine-lib/xine-lib-1.2.11-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -49,7 +49,7 @@ RDEPEND="${NLS_RDEPEND} gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) - jpeg? ( virtual/jpeg:0 ) + jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) @@ -156,6 +156,7 @@ src_configure() { --with-real-codecs-path=/usr/$(get_libdir)/codecs --with-w32-path=${win32dir} --with-xv-path=/usr/$(get_libdir) + --without-dav1d --without-esound --without-fusionsound $(use_enable a52 a52dec) diff --git a/media-libs/xine-lib/xine-lib-1.2.9999.ebuild b/media-libs/xine-lib/xine-lib-1.2.9999.ebuild index 4552c8b34a71..e9acbf2c1072 100644 --- a/media-libs/xine-lib/xine-lib-1.2.9999.ebuild +++ b/media-libs/xine-lib/xine-lib-1.2.9999.ebuild @@ -50,7 +50,7 @@ RDEPEND=" gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) - jpeg? ( virtual/jpeg:0 ) + jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= )