diff options
Diffstat (limited to 'meta/recipes-devtools/go/go-binary-native_1.25.3.bb')
| -rw-r--r-- | meta/recipes-devtools/go/go-binary-native_1.25.3.bb | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/meta/recipes-devtools/go/go-binary-native_1.25.3.bb b/meta/recipes-devtools/go/go-binary-native_1.25.3.bb deleted file mode 100644 index b1d9522cb6..0000000000 --- a/meta/recipes-devtools/go/go-binary-native_1.25.3.bb +++ /dev/null | |||
| @@ -1,51 +0,0 @@ | |||
| 1 | # This recipe is for bootstrapping our go-cross from a prebuilt binary of Go from golang.org. | ||
| 2 | |||
| 3 | SUMMARY = "Go programming language compiler (upstream binary for bootstrap)" | ||
| 4 | HOMEPAGE = " http://golang.org/" | ||
| 5 | LICENSE = "BSD-3-Clause" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7998cb338f82d15c0eff93b7004d272a" | ||
| 7 | |||
| 8 | PROVIDES = "go-native" | ||
| 9 | |||
| 10 | # Checksums available at https://go.dev/dl/ | ||
| 11 | SRC_URI = "https://dl.google.com/go/go${PV}.${BUILD_GOOS}-${BUILD_GOARCH}.tar.gz;name=go_${BUILD_GOTUPLE}" | ||
| 12 | SRC_URI[go_linux_amd64.sha256sum] = "0335f314b6e7bfe08c3d0cfaa7c19db961b7b99fb20be62b0a826c992ad14e0f" | ||
| 13 | SRC_URI[go_linux_arm64.sha256sum] = "1d42ebc84999b5e2069f5e31b67d6fc5d67308adad3e178d5a2ee2c9ff2001f5" | ||
| 14 | SRC_URI[go_linux_ppc64le.sha256sum] = "68d1a08bf3567f330717d821b266a0be1c5080bd05dc238b5a43a24ca0c47d7c" | ||
| 15 | |||
| 16 | UPSTREAM_CHECK_URI = "https://golang.org/dl/" | ||
| 17 | UPSTREAM_CHECK_REGEX = "go(?P<pver>\d+(\.\d+)+)\.linux" | ||
| 18 | |||
| 19 | CVE_PRODUCT = "golang:go" | ||
| 20 | CVE_STATUS[CVE-2024-3566] = "not-applicable-platform: Issue only applies on Windows" | ||
| 21 | |||
| 22 | S = "${UNPACKDIR}/go" | ||
| 23 | |||
| 24 | inherit goarch native | ||
| 25 | |||
| 26 | do_compile() { | ||
| 27 | : | ||
| 28 | } | ||
| 29 | |||
| 30 | make_wrapper() { | ||
| 31 | rm -f ${D}${bindir}/$1 | ||
| 32 | cat <<END >${D}${bindir}/$1 | ||
| 33 | #!/bin/bash | ||
| 34 | here=\`dirname \$0\` | ||
| 35 | export GOROOT="${GOROOT:-\`readlink -f \$here/../lib/go\`}" | ||
| 36 | \$here/../lib/go/bin/$1 "\$@" | ||
| 37 | END | ||
| 38 | chmod +x ${D}${bindir}/$1 | ||
| 39 | } | ||
| 40 | |||
| 41 | do_install() { | ||
| 42 | find ${S} -depth -type d -name testdata -exec rm -rf {} + | ||
| 43 | |||
| 44 | install -d ${D}${bindir} ${D}${libdir}/go | ||
| 45 | cp --preserve=mode,timestamps -R ${S}/ ${D}${libdir}/ | ||
| 46 | |||
| 47 | for f in ${S}/bin/* | ||
| 48 | do | ||
| 49 | make_wrapper `basename $f` | ||
| 50 | done | ||
| 51 | } | ||
