From d94d7b1a4b70cc93296c19fd221f8b8ac8ab90ee Mon Sep 17 00:00:00 2001 From: fanquake Date: Thu, 15 Jan 2026 12:28:02 +0000 Subject: [PATCH] guix: stop passing depends sources to codesigning I think this is just a copy-pasta from the build container. I don't see why we'd need the depends sources available when performing codesigning. --- contrib/guix/guix-codesign | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/contrib/guix/guix-codesign b/contrib/guix/guix-codesign index ac7aae3a180..ec8fbc0cf96 100755 --- a/contrib/guix/guix-codesign +++ b/contrib/guix/guix-codesign @@ -328,16 +328,6 @@ EOF # container so that we have something to build. '/bitcoin' was # chosen arbitrarily. # - # ${SOURCES_PATH:+--share="$SOURCES_PATH"} - # - # make the downloaded depends sources path available - # inside the isolated container - # - # The isolated container has no network access as it's in a - # different network namespace from the main machine, so we have to - # make the downloaded depends sources available to it. The sources - # should have been downloaded prior to this invocation. - # # ${SUBSTITUTE_URLS:+--substitute-urls="$SUBSTITUTE_URLS"} # # fetch substitute from SUBSTITUTE_URLS if they are @@ -359,7 +349,6 @@ EOF --share="$DETACHED_SIGS_REPO"=/detached-sigs \ --expose="$(git rev-parse --git-common-dir)" \ --expose="$(git -C "$DETACHED_SIGS_REPO" rev-parse --git-common-dir)" \ - ${SOURCES_PATH:+--share="$SOURCES_PATH"} \ --cores="$JOBS" \ --keep-failed \ --fallback \ @@ -372,7 +361,6 @@ EOF JOBS="$JOBS" \ SOURCE_DATE_EPOCH="${SOURCE_DATE_EPOCH:?unable to determine value}" \ ${V:+V=1} \ - ${SOURCES_PATH:+SOURCES_PATH="$SOURCES_PATH"} \ DISTSRC="$(DISTSRC_BASE=/distsrc-base && distsrc_for_host "$HOST")" \ OUTDIR="$(OUTDIR_BASE=/outdir-base && outdir_for_host "$HOST" codesigned)" \ DIST_ARCHIVE_BASE=/outdir-base/dist-archive \