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 DE2FE159C9B for ; Mon, 12 Aug 2024 04:22:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17859E2AA9; Mon, 12 Aug 2024 04:22:39 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D11DBE2AA9 for ; Mon, 12 Aug 2024 04:22:38 +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 C53893430E5 for ; Mon, 12 Aug 2024 04:22:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0692EE6F for ; Mon, 12 Aug 2024 04:22:36 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1723435000.60b73bd925496502ec36f1f2ae4f60c73035622a.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/csound/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/csound/csound-6.17.0-r1.ebuild media-sound/csound/csound-9999.ebuild X-VCS-Directories: media-sound/csound/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 60b73bd925496502ec36f1f2ae4f60c73035622a X-VCS-Branch: master Date: Mon, 12 Aug 2024 04:22:36 +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: 9b5b8fa5-94af-42b0-9477-0d3956ec8d69 X-Archives-Hash: 372ae8a8aae7e308dcd2840aaf80f737 commit: 60b73bd925496502ec36f1f2ae4f60c73035622a Author: Eli Schwartz gentoo org> AuthorDate: Mon Aug 12 03:56:40 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Mon Aug 12 03:56:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60b73bd9 media-sound/csound: avoid cloning vcpkg in live It is disabled by default, but since it is a submodule it gets loaded, expensively. Signed-off-by: Eli Schwartz gentoo.org> media-sound/csound/csound-6.17.0-r1.ebuild | 2 ++ media-sound/csound/csound-9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/media-sound/csound/csound-6.17.0-r1.ebuild b/media-sound/csound/csound-6.17.0-r1.ebuild index fb5d82a5cfaa..80c295ef8405 100644 --- a/media-sound/csound/csound-6.17.0-r1.ebuild +++ b/media-sound/csound/csound-6.17.0-r1.ebuild @@ -14,6 +14,8 @@ inherit cmake lua-single python-single-r1 if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="https://github.com/csound/csound.git" + # vcpkg is not used anyway + EGIT_SUBMODULES=() inherit git-r3 else DOC_P="Csound${PV}" diff --git a/media-sound/csound/csound-9999.ebuild b/media-sound/csound/csound-9999.ebuild index fb5d82a5cfaa..80c295ef8405 100644 --- a/media-sound/csound/csound-9999.ebuild +++ b/media-sound/csound/csound-9999.ebuild @@ -14,6 +14,8 @@ inherit cmake lua-single python-single-r1 if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="https://github.com/csound/csound.git" + # vcpkg is not used anyway + EGIT_SUBMODULES=() inherit git-r3 else DOC_P="Csound${PV}"