lang/go121: Remove expired port

2026-01-01 lang/go121: Old version, unsupported upstream
This commit is contained in:
Rene Ladan
2026-01-01 12:58:53 +01:00
parent e0b247d308
commit 00007dfa8d
5 changed files with 1 additions and 56 deletions
+1
View File
@@ -5061,3 +5061,4 @@ databases/php81-odbc|databases/php82-odbc|2025-12-31|Has expired: Security suppo
security/php81-sodium|security/php82-sodium|2025-12-31|Has expired: Security support ended on 2025-12-31
security/php81-filter|security/php82-filter|2025-12-31|Has expired: Security support ended on 2025-12-31
lang/go120||2026-01-01|Has expired: Old version, unsupported upstream
lang/go121||2026-01-01|Has expired: Old version, unsupported upstream
-1
View File
@@ -124,7 +124,6 @@
SUBDIR += gnustep-base
SUBDIR += go
SUBDIR += go-devel
SUBDIR += go121
SUBDIR += go122
SUBDIR += go123
SUBDIR += go124
-29
View File
@@ -1,29 +0,0 @@
DISTVERSION= 1.21.13
# Always set PORTREVISION explicitly as otherwise they are inherited from lang/go-devel
PORTREVISION= 5
MASTER_SITES= https://golang.org/dl/ \
https://github.com/dmgk/go-bootstrap/releases/download/${BOOTSTRAP_TAG}/:bootstrap \
LOCAL/dmgk:bootstrap
DISTFILES= go${DISTVERSION}.src.tar.gz \
go-${OPSYS:tl}-${GOARCH_${ARCH}}${GOARM_${ARCH}}-${BOOTSTRAP_TAG}.tar.xz:bootstrap
# Avoid conflicting patch files
PATCHFILES=
COMMENT= Go programming language
BUILD_DEPENDS=
MASTERDIR= ${.CURDIR}/../go-devel
PATCHDIR= ${.CURDIR}/files
WRKSRC= ${WRKDIR}/go
DISTINFO_FILE= ${.CURDIR}/distinfo
SHEBANG_FILES= misc/wasm/go_js_wasm_exec \
src/net/http/cgi/testdata/test.cgi
BASH= ${SH}
TESTING_UNSAFE= MemorySanitizer: use-of-uninitialized-value (/tmp/TestMSAN747758340/msan8+0x11efcf) in msanGoLoop
DEPRECATED= Old version, unsupported upstream
EXPIRATION_DATE=2026-01-01
.include "${MASTERDIR}/Makefile"
-15
View File
@@ -1,15 +0,0 @@
TIMESTAMP = 1723182953
SHA256 (go1.21.13.src.tar.gz) = 71fb31606a1de48d129d591e8717a63e0c5565ffba09a24ea9f899a13214c34d
SIZE (go1.21.13.src.tar.gz) = 26997630
SHA256 (go-freebsd-arm64-go1.20.tar.xz) = 674e0a9bce8b64dcc085b000eb83ae880e96be1ee47dad6ec86c82dbe5550623
SIZE (go-freebsd-arm64-go1.20.tar.xz) = 32640640
SHA256 (go-freebsd-amd64-go1.20.tar.xz) = 170f612c4b8a59400f27d642aab37afa831fe2d6df3e7473dec2d4574a59a46c
SIZE (go-freebsd-amd64-go1.20.tar.xz) = 34684360
SHA256 (go-freebsd-arm6-go1.20.tar.xz) = acf99dbb285c6d2b80e0abfe4bffd0d230516ea84d17be0d5bc1045809e3d33a
SIZE (go-freebsd-arm6-go1.20.tar.xz) = 33418476
SHA256 (go-freebsd-arm7-go1.20.tar.xz) = 12dd61c802eada70380f0b4755656d82dbf228575c056775c682456380be5039
SIZE (go-freebsd-arm7-go1.20.tar.xz) = 33346596
SHA256 (go-freebsd-386-go1.20.tar.xz) = 34e888a37153270b33503a23885ea4c85ba4bd09849d2c937fc9d312c0f49983
SIZE (go-freebsd-386-go1.20.tar.xz) = 35448892
SHA256 (go-freebsd-riscv64-go1.20.tar.xz) = 010921013d24124ff31f4b1965456349547acf936572fc6e0bcf95a0542794bd
SIZE (go-freebsd-riscv64-go1.20.tar.xz) = 33807544
@@ -1,11 +0,0 @@
--- src/cmd/go/internal/modload/vendor.go.orig 2023-08-02 13:51:49 UTC
+++ src/cmd/go/internal/modload/vendor.go
@@ -144,7 +144,7 @@ func checkVendorConsistency(index *modFileIndex, modFi
readVendorList(MainModules.mustGetSingleMainModule())
pre114 := false
- if gover.Compare(index.goVersion, "1.14") < 0 {
+ if gover.Compare(index.goVersion, "1.14") < 0 || os.Getenv("GO_NO_VENDOR_CHECKS") == "1" {
// Go versions before 1.14 did not include enough information in
// vendor/modules.txt to check for consistency.
// If we know that we're on an earlier version, relax the consistency check.