aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-09-04 02:12:07 +0900
committerOphestra <cat@gensokyo.uk>2026-09-04 02:12:07 +0900
commit8c8fb9cb0c389fc0525c7b9a4bcd42a425da77f0 (patch)
tree47e30a32a086df56de689910c001bdc96638f5ea /internal/rosa
parent724a0de946f87d1791a6037defe8c2cf879159e0 (diff)
internal/rosa/package/go: 1.27.0 to 1.27.1
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa')
-rw-r--r--internal/rosa/package/go.az (renamed from internal/rosa/package/go/package.az)5
-rw-r--r--internal/rosa/package/go/820480.patch24
2 files changed, 2 insertions, 27 deletions
diff --git a/internal/rosa/package/go/package.az b/internal/rosa/package/go.az
index d06720b5..6efca245 100644
--- a/internal/rosa/package/go/package.az
+++ b/internal/rosa/package/go.az
@@ -3,13 +3,12 @@ package go {
website = "https://go.dev";
anitya = 1227;
- version# = "1.27.0";
+ version# = "1.27.1";
source = remoteTar {
url = "https://go.dev/dl/go"+version+".src.tar.gz";
- checksum = "Ookl2vP6KMfJuxaxX6nXZ1gnL43wZPl5GjpVsrI7IJiB4b3xr1PbnbYIOJ8v5jzG";
+ checksum = "Jw7OCTZbixLPF0E2WafFBh6DnxbsElvEg_RsMGkrzAmi0pyJTI3eQqLJsvXlVtbK";
compress = gzip;
};
- patches = [ "820480.patch" ];
env = [
"CC=cc",
diff --git a/internal/rosa/package/go/820480.patch b/internal/rosa/package/go/820480.patch
deleted file mode 100644
index 05459a80..00000000
--- a/internal/rosa/package/go/820480.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From fa10bbcce5635dd533ba933252e9dabd8a7f5e2a Mon Sep 17 00:00:00 2001
-From: David Chase <drchase@google.com>
-Date: Mon, 24 Aug 2026 15:20:40 -0400
-Subject: [PATCH] simd/archsimd: added PMULL gate on carryless multiply test
-
-Fixes #80991.
-
-Change-Id: I637de72acbb338c4c3b0a47f4a5520c33fe81fd2
----
-
-diff --git a/src/simd/archsimd/internal/simd_test/simd_arm64_test.go b/src/simd/archsimd/internal/simd_test/simd_arm64_test.go
-index f009488..7836fc8 100644
---- a/src/simd/archsimd/internal/simd_test/simd_arm64_test.go
-+++ b/src/simd/archsimd/internal/simd_test/simd_arm64_test.go
-@@ -22,6 +22,9 @@
- }
-
- func TestClMul(t *testing.T) {
-+ if !archsimd.ARM64.PMULL() {
-+ t.Skip("no carryless multiply")
-+ }
- var x = archsimd.LoadUint64x2([]uint64{1, 5})
- var y = archsimd.LoadUint64x2([]uint64{3, 9})
-