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 B7DFD138359 for ; Thu, 6 Aug 2020 04:57:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D62DAE0858; Thu, 6 Aug 2020 04:57:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B8DBDE0858 for ; Thu, 6 Aug 2020 04:57:46 +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 429C834F42E for ; Thu, 6 Aug 2020 04:57:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD1C3275 for ; Thu, 6 Aug 2020 04:57:43 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1596689846.9043667c3f03113d9bed94fc64132e2519b17657.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/audacity/files/, media-sound/audacity/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/audacity/audacity-2.4.2-r1.ebuild media-sound/audacity/files/audacity-2.4.2-add-missing-include-portaudio.patch X-VCS-Directories: media-sound/audacity/ media-sound/audacity/files/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 9043667c3f03113d9bed94fc64132e2519b17657 X-VCS-Branch: master Date: Thu, 6 Aug 2020 04:57:43 +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: c875f640-6af2-4f3d-8370-588e1fe7ffba X-Archives-Hash: 8f39c4326a476a272cf01f5a860463e2 commit: 9043667c3f03113d9bed94fc64132e2519b17657 Author: Miroslav Šulc gentoo org> AuthorDate: Thu Aug 6 04:57:26 2020 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Thu Aug 6 04:57:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9043667c media-sound/audacity: fixed compilation wrt portaudio in 2.4.2-r1 patch by Matt Whitlock mattwhitlock.name> Closes: https://bugs.gentoo.org/735810 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Miroslav Šulc gentoo.org> media-sound/audacity/audacity-2.4.2-r1.ebuild | 1 + .../files/audacity-2.4.2-add-missing-include-portaudio.patch | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/media-sound/audacity/audacity-2.4.2-r1.ebuild b/media-sound/audacity/audacity-2.4.2-r1.ebuild index 4f3f3dae4ec..e55b34a8ae8 100644 --- a/media-sound/audacity/audacity-2.4.2-r1.ebuild +++ b/media-sound/audacity/audacity-2.4.2-r1.ebuild @@ -62,6 +62,7 @@ PATCHES=( "${FILESDIR}/${P}-fix-vertical-track-resizing.patch" "${FILESDIR}/${P}-fix-gettimeofday.patch" "${FILESDIR}/${P}-fix-metainfo.patch" + "${FILESDIR}/${P}-add-missing-include-portaudio.patch" ) src_prepare() { diff --git a/media-sound/audacity/files/audacity-2.4.2-add-missing-include-portaudio.patch b/media-sound/audacity/files/audacity-2.4.2-add-missing-include-portaudio.patch new file mode 100644 index 00000000000..7b845bc3181 --- /dev/null +++ b/media-sound/audacity/files/audacity-2.4.2-add-missing-include-portaudio.patch @@ -0,0 +1,11 @@ +diff -Naur a/src/AudioIOBase.cpp b/src/AudioIOBase.cpp +--- a/src/AudioIOBase.cpp 2020-06-19 15:16:47.000000000 +0000 ++++ b/src/AudioIOBase.cpp 2020-08-04 19:43:27.985734707 +0000 +@@ -21,6 +21,7 @@ + #include "prefs/RecordingPrefs.h" + #include "widgets/MeterPanelBase.h" + ++#include "portaudio.h" + #if USE_PORTMIXER + #include "portmixer.h" + #endif