6 Commits

Author SHA1 Message Date
gitea-action 3d7be284fa golang: bump to 1.23.12 2025-08-07 03:10:08 +08:00
gitea-action 3a46ad1ccc golang: bump to 1.23.11 2025-07-09 01:10:09 +08:00
gitea-action f357de242d golang: bump to 1.23.10 2025-06-06 03:00:11 +08:00
gitea-action 1bcf0b957e golang: bump to 1.23.9 2025-05-07 03:00:11 +08:00
gitea-action b3e2a9a7ef golang: bump to 1.23.8 2025-04-02 01:00:13 +08:00
gitea-action eb37cf7c21 golang: bump to 1.23.7 2025-03-05 04:00:12 +08:00
2 changed files with 7 additions and 9 deletions
+1 -3
View File
@@ -2,9 +2,7 @@
## How to use?
After the `./scripts/feeds install -a` operation is completed, execute the following command:
```shell
rm -rf feeds/packages/lang/golang
git clone https://github.com/sbwml/packages_lang_golang -b 24.x feeds/packages/lang/golang
git clone https://github.com/sbwml/packages_lang_golang -b 23.x feeds/packages/lang/golang
```
+6 -6
View File
@@ -7,8 +7,8 @@
include $(TOPDIR)/rules.mk
GO_VERSION_MAJOR_MINOR:=1.24
GO_VERSION_PATCH:=13
GO_VERSION_MAJOR_MINOR:=1.23
GO_VERSION_PATCH:=12
PKG_NAME:=golang
PKG_VERSION:=$(GO_VERSION_MAJOR_MINOR)$(if $(GO_VERSION_PATCH),.$(GO_VERSION_PATCH))
@@ -20,7 +20,7 @@ GO_SOURCE_URLS:=https://dl.google.com/go/ \
PKG_SOURCE:=go$(PKG_VERSION).src.tar.gz
PKG_SOURCE_URL:=$(GO_SOURCE_URLS)
PKG_HASH:=639a6204c2486b137df1eb6e78ee3ed038f9877d0e4b5a465e796a2153f858d7
PKG_HASH:=e1cce9379a24e895714a412c7ddd157d2614d9edbe83a84449b6e1840b4f1226
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
PKG_LICENSE:=BSD-3-Clause
@@ -74,15 +74,15 @@ HOST_GO_VALID_OS_ARCH:= \
ifeq ($(HOST_ARCH),x86_64)
PKG_ARCH:=amd64
BOOTSTRAP_HASH:=999805bed7d9039ec3da1a53bfbcafc13e367da52aa823cb60b68ba22d44c616
BOOTSTRAP_HASH:=f5414a770e5e11c6e9674d4cd4dd1f4f630e176d1828d3427ea8ca4211eee90d
endif
ifeq ($(HOST_ARCH),aarch64)
PKG_ARCH:=arm64
BOOTSTRAP_HASH:=c15fa895341b8eaf7f219fada25c36a610eb042985dc1a912410c1c90098eaf2
BOOTSTRAP_HASH:=23e208ca44a3cb46cd4308e48a27c714ddde9c8c34f2e4211dbca95b6d456554
endif
BOOTSTRAP_SOURCE:=go1.22.6.linux-$(PKG_ARCH).tar.gz
BOOTSTRAP_SOURCE:=go1.21.2.linux-$(PKG_ARCH).tar.gz
BOOTSTRAP_SOURCE_URL:=$(GO_SOURCE_URLS)
BOOTSTRAP_BUILD_DIR:=$(HOST_BUILD_DIR)/.go_bootstrap