Received: by mail.netbsd.org (Postfix, from userid 605) id DE99D84D52; Sat, 20 Mar 2021 09:28:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 23AA484CE2 for ; Sat, 20 Mar 2021 09:28:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id kfYnAYpGzQQ5 for ; Sat, 20 Mar 2021 09:28:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 80D0884CDA for ; Sat, 20 Mar 2021 09:28:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7A42BFA95; Sat, 20 Mar 2021 09:28:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1616232514115110" MIME-Version: 1.0 Date: Sat, 20 Mar 2021 09:28:34 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/lang To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20210320092834.7A42BFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1616232514115110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Sat Mar 20 09:28:34 UTC 2021 Modified Files: pkgsrc/lang: Makefile pkgsrc/lang/go: version.mk Removed Files: pkgsrc/lang/go114: ALTERNATIVES DESCR Makefile PLIST PLIST.SunOS distinfo pkgsrc/lang/go114/patches: patch-misc_io_clangwrap.sh patch-src_cmd_dist_util.go patch-src_cmd_link_internal_ld_elf.go patch-src_crypto_x509_root__bsd.go patch-src_runtime_cgo_gcc__netbsd__arm64.c patch-src_runtime_os__netbsd.go patch-src_runtime_sys__netbsd__arm64.s patch-src_syscall_zsysnum__solaris__amd64.go Log Message: We say goodbye to Go 1.14. The policy of the Go project is to support the last two stable branches, so 1.14 is end of life. To generate a diff of this commit: cvs rdiff -u -r1.596 -r1.597 pkgsrc/lang/Makefile cvs rdiff -u -r1.115 -r1.116 pkgsrc/lang/go/version.mk cvs rdiff -u -r1.1 -r0 pkgsrc/lang/go114/ALTERNATIVES pkgsrc/lang/go114/DESCR \ pkgsrc/lang/go114/PLIST.SunOS cvs rdiff -u -r1.6 -r0 pkgsrc/lang/go114/Makefile cvs rdiff -u -r1.8 -r0 pkgsrc/lang/go114/PLIST cvs rdiff -u -r1.14 -r0 pkgsrc/lang/go114/distinfo cvs rdiff -u -r1.1 -r0 pkgsrc/lang/go114/patches/patch-misc_io_clangwrap.sh \ pkgsrc/lang/go114/patches/patch-src_cmd_dist_util.go \ pkgsrc/lang/go114/patches/patch-src_cmd_link_internal_ld_elf.go \ pkgsrc/lang/go114/patches/patch-src_crypto_x509_root__bsd.go \ pkgsrc/lang/go114/patches/patch-src_runtime_cgo_gcc__netbsd__arm64.c \ pkgsrc/lang/go114/patches/patch-src_runtime_os__netbsd.go \ pkgsrc/lang/go114/patches/patch-src_syscall_zsysnum__solaris__amd64.go cvs rdiff -u -r1.2 -r0 \ pkgsrc/lang/go114/patches/patch-src_runtime_sys__netbsd__arm64.s Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1616232514115110 Content-Disposition: inline Content-Length: 1165 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/Makefile diff -u pkgsrc/lang/Makefile:1.596 pkgsrc/lang/Makefile:1.597 --- pkgsrc/lang/Makefile:1.596 Sun Mar 7 13:49:19 2021 +++ pkgsrc/lang/Makefile Sat Mar 20 09:28:33 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.596 2021/03/07 13:49:19 taca Exp $ +# $NetBSD: Makefile,v 1.597 2021/03/20 09:28:33 bsiegert Exp $ # COMMENT= Programming languages @@ -106,7 +106,6 @@ SUBDIR+= go SUBDIR+= go-bin SUBDIR+= go-hcl SUBDIR+= go110 -SUBDIR+= go114 SUBDIR+= go115 SUBDIR+= go116 SUBDIR+= go14 Index: pkgsrc/lang/go/version.mk diff -u pkgsrc/lang/go/version.mk:1.115 pkgsrc/lang/go/version.mk:1.116 --- pkgsrc/lang/go/version.mk:1.115 Sat Mar 20 09:26:11 2021 +++ pkgsrc/lang/go/version.mk Sat Mar 20 09:28:34 2021 @@ -1,4 +1,4 @@ -# $NetBSD: version.mk,v 1.115 2021/03/20 09:26:11 bsiegert Exp $ +# $NetBSD: version.mk,v 1.116 2021/03/20 09:28:34 bsiegert Exp $ # # If bsd.prefs.mk is included before go-package.mk in a package, then this @@ -8,8 +8,6 @@ GO116_VERSION= 1.16.2 GO115_VERSION= 1.15.10 -GO114_VERSION= 1.14.14 -GO113_VERSION= 1.13.15 GO110_VERSION= 1.10.8 GO19_VERSION= 1.9.7 GO14_VERSION= 1.4.3 --_----------=_1616232514115110--