diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-23 12:55:52 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-23 12:57:11 +0900 |
| commit | 37a0c3967e97f041ba3af23f0cedb42c02ac25e2 (patch) | |
| tree | 0c5643674d73a740cb359eddbb576827fd9d6d50 | |
| parent | ea0692548f46b0eb1c830e720a57b025d75df8d7 (diff) | |
internal/rosa/gnu: mpc fetch source tarball
This does not have submodules, so the overhead of git is unnecessary.
Signed-off-by: Ophestra <cat@gensokyo.uk>
| -rw-r--r-- | internal/rosa/gnu.go | 7 |
1 files 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 |
