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 0149E15802F for ; Tue, 7 Mar 2023 16:43:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6609E0875; Tue, 7 Mar 2023 16:43:57 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 818E7E0875 for ; Tue, 7 Mar 2023 16:43:57 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B4B23413F9 for ; Tue, 7 Mar 2023 16:43:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C32F48DE for ; Tue, 7 Mar 2023 16:43:53 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1678207422.83c8421116f40f827b20806e141a4f8c32540c54.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/deadbeef/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/deadbeef/files/deadbeef-1.9.1-ffmpeg-5.0-fixes.patch media-sound/deadbeef/files/deadbeef-1.9.2-cdda-plugin-clang-16-fixes.patch media-sound/deadbeef/files/deadbeef-use-ffmpeg-plugin-for-ape-by-default.patch X-VCS-Directories: media-sound/deadbeef/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 83c8421116f40f827b20806e141a4f8c32540c54 X-VCS-Branch: master Date: Tue, 7 Mar 2023 16:43:53 +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: 52fd9238-1745-447e-b865-f01c7dd6c263 X-Archives-Hash: 773c467b19307934d1248d88c8b1361b commit: 83c8421116f40f827b20806e141a4f8c32540c54 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sat Feb 25 08:03:38 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Mar 7 16:43:42 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83c84211 media-sound/deadbeef: remove unused patches Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/29784 Signed-off-by: Conrad Kostecki gentoo.org> .../files/deadbeef-1.9.1-ffmpeg-5.0-fixes.patch | 37 ---------------------- ...deadbeef-1.9.2-cdda-plugin-clang-16-fixes.patch | 34 -------------------- ...beef-use-ffmpeg-plugin-for-ape-by-default.patch | 13 -------- 3 files changed, 84 deletions(-) diff --git a/media-sound/deadbeef/files/deadbeef-1.9.1-ffmpeg-5.0-fixes.patch b/media-sound/deadbeef/files/deadbeef-1.9.1-ffmpeg-5.0-fixes.patch deleted file mode 100644 index 14f6b8e70556..000000000000 --- a/media-sound/deadbeef/files/deadbeef-1.9.1-ffmpeg-5.0-fixes.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 7b52bac5a69abeab6d8b6601fd9e36803842d9c1 Mon Sep 17 00:00:00 2001 -From: xuzhen -Date: Sun, 2 Oct 2022 12:23:02 +0800 -Subject: [PATCH] Fix build with ffmpeg 5.0+ - -av_iformat_next was replaced with av_demuxer_iterate. https://trac.ffmpeg.org/wiki/Bump59 ---- - plugins/ffmpeg/ffmpeg.c | 7 +++++++ - 1 file changed, 7 insertions(+) - -diff --git a/plugins/ffmpeg/ffmpeg.c b/plugins/ffmpeg/ffmpeg.c -index 5409cc482..bfc9b6f6f 100644 ---- a/plugins/ffmpeg/ffmpeg.c -+++ b/plugins/ffmpeg/ffmpeg.c -@@ -802,7 +802,12 @@ ffmpeg_init_exts (void) { - * encoding purpose, because ffmpeg will guess the output format from - * the file name specified by users. - */ -+#if LIBAVFORMAT_VERSION_MAJOR >= 59 -+ void *iter = NULL; -+ while ((ifmt = av_demuxer_iterate(&iter))) { -+#else - while ((ifmt = av_iformat_next(ifmt))) { -+#endif - #ifdef AV_IS_INPUT_DEVICE - if (ifmt->priv_class && AV_IS_INPUT_DEVICE(ifmt->priv_class->category)) - continue; // Skip all input devices -@@ -849,7 +854,9 @@ ffmpeg_message (uint32_t id, uintptr_t ctx, uint32_t p1, uint32_t p2) { - static int - ffmpeg_start (void) { - ffmpeg_init_exts (); -+#if LIBAVFORMAT_VERSION_MAJOR < 58 - av_register_all (); -+#endif - return 0; - } - diff --git a/media-sound/deadbeef/files/deadbeef-1.9.2-cdda-plugin-clang-16-fixes.patch b/media-sound/deadbeef/files/deadbeef-1.9.2-cdda-plugin-clang-16-fixes.patch deleted file mode 100644 index cef941162b93..000000000000 --- a/media-sound/deadbeef/files/deadbeef-1.9.2-cdda-plugin-clang-16-fixes.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 779066a54aa8a1a92b92ebdabc8a93d6ef3fb3ba Mon Sep 17 00:00:00 2001 -From: Oleksiy Yakovenko -Date: Wed, 26 Oct 2022 11:50:02 +0200 -Subject: [PATCH] cdda: enum cast fix (fixes #2879) - ---- - plugins/cdda/cdda.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/plugins/cdda/cdda.c b/plugins/cdda/cdda.c -index 7229d9592..2fe3b5fda 100644 ---- a/plugins/cdda/cdda.c -+++ b/plugins/cdda/cdda.c -@@ -846,7 +846,7 @@ get_param (const char *key, char *value, int len, const char *def) - "property \"CD drive to load\" select[%u] cdda.drive_device 0" - - static int --cda_action_add_cd (DB_plugin_action_t *act, int ctx) -+cda_action_add_cd (DB_plugin_action_t *act, ddb_action_context_t ctx) - { - /* Get all devices containg CD audio media */ - cdio_close_tray(NULL, NULL); -@@ -982,7 +982,7 @@ load_cddb_data (ddb_playlist_t *plt, cddb_disc_t *disc, const size_t disc_num) - } - - static int --action_disc_n (DB_plugin_action_t *act, int ctx) -+action_disc_n (DB_plugin_action_t *act, ddb_action_context_t ctx) - { - const int disc_num = atoi(act->name+11); - int res = -1; --- -2.38.1 - diff --git a/media-sound/deadbeef/files/deadbeef-use-ffmpeg-plugin-for-ape-by-default.patch b/media-sound/deadbeef/files/deadbeef-use-ffmpeg-plugin-for-ape-by-default.patch deleted file mode 100644 index 82a979a5c179..000000000000 --- a/media-sound/deadbeef/files/deadbeef-use-ffmpeg-plugin-for-ape-by-default.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/plugins/ffmpeg/ffmpeg.c b/plugins/ffmpeg/ffmpeg.c -index da137069a..43cdcb301 100644 ---- a/plugins/ffmpeg/ffmpeg.c -+++ b/plugins/ffmpeg/ffmpeg.c -@@ -75,7 +75,7 @@ - static DB_decoder_t plugin; - static DB_functions_t *deadbeef; - --#define DEFAULT_EXTS "aa3;oma;ac3;vqf;amr;tak;dsf;dff;wma;3gp;mp4;m4a" -+#define DEFAULT_EXTS "aa3;oma;ac3;vqf;amr;tak;dsf;dff;wma;3gp;mp4;m4a;ape" - #define UNPOPULATED_EXTS_BY_FFMPEG \ - "aif,aiff,afc,aifc,amr,asf," \ - "wmv,wma,au,caf,webm," \