From da37fbff5c865a6a30c46b5529994c825b03d5ea Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Fri, 7 Aug 2026 05:20:34 +0000 Subject: [PATCH] ipc-run: fix do_fetch failure, upstream renamed default branch to main toddr/IPC-Run no longer has a "master" branch (renamed to "main" some time ago), so do_fetch fails even though the pinned SRCREV commit still exists upstream: ERROR: ipc-run-20260402.0-r0 do_fetch: Fetcher failure: Unable to find revision a8232b0a3e0e713696bf6bb8f970c561d0fe3d8f in branch master even from upstream Confirmed a8232b0a3e0e713696bf6bb8f970c561d0fe3d8f ("Bump version to 20260402.0 for release to CPAN") is present on the "main" branch. Point SRC_URI at branch=main instead. Verified via cleansstate rebuild: fetch/unpack/build/package all succeed. AI-Generated: Uses Claude Code Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/perl/ipc-run_20260402.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-devtools/perl/ipc-run_20260402.0.bb b/meta-oe/recipes-devtools/perl/ipc-run_20260402.0.bb index c23edd78e9..fa4ffd5907 100644 --- a/meta-oe/recipes-devtools/perl/ipc-run_20260402.0.bb +++ b/meta-oe/recipes-devtools/perl/ipc-run_20260402.0.bb @@ -9,7 +9,7 @@ LICENSE = "Artistic-1.0 OR GPL-1.0-or-later" LIC_FILES_CHKSUM = "file://LICENSE;md5=0cec6aceee7559197f14caccd0f4c2f9" DEPENDS = "perl" -SRC_URI = "git://github.com/toddr/IPC-Run.git;branch=master;protocol=https" +SRC_URI = "git://github.com/toddr/IPC-Run.git;branch=main;protocol=https" SRCREV = "a8232b0a3e0e713696bf6bb8f970c561d0fe3d8f"