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 926C3138359 for ; Wed, 2 Sep 2020 08:33:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF892E09C3; Wed, 2 Sep 2020 08:33:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9A7B6E09C3 for ; Wed, 2 Sep 2020 08:33:14 +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 7B217340A98 for ; Wed, 2 Sep 2020 08:33:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DAE4339 for ; Wed, 2 Sep 2020 08:33:12 +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: <1599035584.6128f01f2648d14c91363ddc89f868d8938a4b2e.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-disable-ccache.patch X-VCS-Directories: media-sound/audacity/files/ media-sound/audacity/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 6128f01f2648d14c91363ddc89f868d8938a4b2e X-VCS-Branch: master Date: Wed, 2 Sep 2020 08:33:12 +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: ba700a36-5ef6-4230-bc41-8f815939e028 X-Archives-Hash: cb667a9f22eaf000c79f0d312b5d1d2e commit: 6128f01f2648d14c91363ddc89f868d8938a4b2e Author: Miroslav Šulc gentoo org> AuthorDate: Wed Sep 2 08:32:47 2020 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Wed Sep 2 08:33:04 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6128f01f media-sound/audacity: disabled ccache in 2.4.2-r1 Closes: https://bugs.gentoo.org/735642 Package-Manager: Portage-3.0.5, Repoman-3.0.1 Signed-off-by: Miroslav Šulc gentoo.org> media-sound/audacity/audacity-2.4.2-r1.ebuild | 1 + .../files/audacity-2.4.2-disable-ccache.patch | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/media-sound/audacity/audacity-2.4.2-r1.ebuild b/media-sound/audacity/audacity-2.4.2-r1.ebuild index e6c8898ad22..f7df783a70c 100644 --- a/media-sound/audacity/audacity-2.4.2-r1.ebuild +++ b/media-sound/audacity/audacity-2.4.2-r1.ebuild @@ -65,6 +65,7 @@ PATCHES=( "${FILESDIR}/${P}-fix-gettimeofday.patch" "${FILESDIR}/${P}-fix-metainfo.patch" "${FILESDIR}/${P}-add-missing-include-portaudio.patch" + "${FILESDIR}/${P}-disable-ccache.patch" ) src_prepare() { diff --git a/media-sound/audacity/files/audacity-2.4.2-disable-ccache.patch b/media-sound/audacity/files/audacity-2.4.2-disable-ccache.patch new file mode 100644 index 00000000000..03acf6a2058 --- /dev/null +++ b/media-sound/audacity/files/audacity-2.4.2-disable-ccache.patch @@ -0,0 +1,19 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 4ff5430..9c9dbf6 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -69,14 +69,6 @@ set( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake-proxies/cmake-modules) + set( CMAKE_CXX_STANDARD 14 ) + set( CMAKE_CXX_STANDARD_REQUIRED ON ) + +-# Use ccache if available +-find_program( CCACHE_PROGRAM ccache ) +-mark_as_advanced( FORCE CCACHE_PROGRAM ) +- +-if( CCACHE_PROGRAM ) +- set_property( GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}" ) +-endif() +- + # Our very own project + project( Audacity ) +