summaryrefslogtreecommitdiff
path: root/user/gitlab-runner/fix-multiple-redef-seek.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2024-05-30 22:33:29 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2024-08-07 10:08:20 -0500
commit018736f327af152836fa2e01f12ed067cb59ac00 (patch)
tree21a141424cc8de2beb3a611a48efe3e3d8f919e9 /user/gitlab-runner/fix-multiple-redef-seek.patch
parent79e3f684ad2db0c6df8659e819add7d8517d9cab (diff)
downloadpackages-018736f327af152836fa2e01f12ed067cb59ac00.tar.gz
packages-018736f327af152836fa2e01f12ed067cb59ac00.tar.bz2
packages-018736f327af152836fa2e01f12ed067cb59ac00.tar.xz
packages-018736f327af152836fa2e01f12ed067cb59ac00.zip
user/gitlab-runner: Update to 15.0.0
* Parallel build on as many cores as normal builds use. * The module cache is contained within the builddir instead of polluting HOME.
Diffstat (limited to 'user/gitlab-runner/fix-multiple-redef-seek.patch')
-rw-r--r--user/gitlab-runner/fix-multiple-redef-seek.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/user/gitlab-runner/fix-multiple-redef-seek.patch b/user/gitlab-runner/fix-multiple-redef-seek.patch
deleted file mode 100644
index 5a9d1ef10..000000000
--- a/user/gitlab-runner/fix-multiple-redef-seek.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-diff -ur a/vendor/golang.org/x/sys/unix/syscall_linux_arm.go b/vendor/golang.org/x/sys/unix/syscall_linux_arm.go
---- a/vendor/golang.org/x/sys/unix/syscall_linux_arm.go 2023-01-04 02:17:18.689781320 +0000
-+++ b/vendor/golang.org/x/sys/unix/syscall_linux_arm.go 2023-01-04 02:19:46.688219811 +0000
-@@ -45,7 +45,13 @@
-
- // Underlying system call writes to newoffset via pointer.
- // Implemented in assembly to avoid allocation.
--func seek(fd int, offset int64, whence int) (newoffset int64, err syscall.Errno)
-+func seek(fd int, offset int64, whence int) (int64, syscall.Errno) {
-+ var newoffset int64
-+ offsetLow := uint32(offset & 0xffffffff)
-+ offsetHigh := uint32((offset >> 32) & 0xffffffff)
-+ _, _, err := Syscall6(SYS__LLSEEK, uintptr(fd), uintptr(offsetHigh), uintptr(offsetLow), uintptr(unsafe.Pointer(&newoffset)), uintptr(whence), 0)
-+ return newoffset, err
-+}
-
- func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
- newoffset, errno := seek(fd, offset, whence)
-diff -ur a/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go b/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go
---- a/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go 2023-01-04 02:17:18.689781320 +0000
-+++ b/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go 2023-01-04 02:20:04.283558738 +0000
-@@ -2,7 +2,7 @@
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
-
--// +build linux,gccgo,arm
-+// +build linux,!gccgo,arm
-
- package unix
-
-@@ -11,6 +11,7 @@
- "unsafe"
- )
-
-+// this file should not be built
- func seek(fd int, offset int64, whence int) (int64, syscall.Errno) {
- var newoffset int64
- offsetLow := uint32(offset & 0xffffffff)