From 37a0c3967e97f041ba3af23f0cedb42c02ac25e2 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 23 Apr 2026 12:55:52 +0900 Subject: [PATCH] internal/rosa/gnu: mpc fetch source tarball This does not have submodules, so the overhead of git is unnecessary. Signed-off-by: Ophestra --- internal/rosa/gnu.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/internal/rosa/gnu.go b/internal/rosa/gnu.go index f78d9de9..ebca6013 100644 --- a/internal/rosa/gnu.go +++ b/internal/rosa/gnu.go @@ -1052,10 +1052,11 @@ func init() { func (t Toolchain) newMPC() (pkg.Artifact, string) { const ( version = "1.4.1" - checksum = "wdXAhplnS89FjVp20m2nC2CmLFQeyQqLpQAfViTy4vPxFdv2WYOTtfBKeIk5_Rec" + checksum = "ZffaZyWkvIw0iPvRe5EJ7O-VvHtSkbbb3K_7SgPtK810NvGan7nbF0T5-6tozjQN" ) - return t.NewPackage("mpc", version, t.newTagRemote( - "https://gitlab.inria.fr/mpc/mpc.git", + return t.NewPackage("mpc", version, newFromGitLab( + "gitlab.inria.fr", + "mpc/mpc", version, checksum, ), &PackageAttr{ // does not find mpc-impl.h otherwise