pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/go



Module Name:    pkgsrc
Committed By:   bsiegert
Date:           Sun Jan 28 11:31:03 UTC 2018

Modified Files:
        pkgsrc/lang/go: Makefile PLIST distinfo version.mk

Log Message:
Update Go to 1.9.3.

This release includes fixes to the compiler, runtime, and the database/sql,
math/big, net/http, and net/url packages.

View the release notes for more information:
     https://golang.org/doc/devel/release.html#go1.9.minor


To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 pkgsrc/lang/go/Makefile
cvs rdiff -u -r1.36 -r1.37 pkgsrc/lang/go/PLIST
cvs rdiff -u -r1.55 -r1.56 pkgsrc/lang/go/distinfo
cvs rdiff -u -r1.31 -r1.32 pkgsrc/lang/go/version.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/go/Makefile
diff -u pkgsrc/lang/go/Makefile:1.59 pkgsrc/lang/go/Makefile:1.60
--- pkgsrc/lang/go/Makefile:1.59        Sat Jan 20 16:55:05 2018
+++ pkgsrc/lang/go/Makefile     Sun Jan 28 11:31:03 2018
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.59 2018/01/20 16:55:05 christos Exp $
+# $NetBSD: Makefile,v 1.60 2018/01/28 11:31:03 bsiegert Exp $
 
 .include "version.mk"
 
 DISTNAME=      go${GO_VERSION}.src
 PKGNAME=       go-${GO_VERSION}
-PKGREVISION=   1
 CATEGORIES=    lang
 MASTER_SITES=  https://storage.googleapis.com/golang/
 EXTRACT_USING= bsdtar

Index: pkgsrc/lang/go/PLIST
diff -u pkgsrc/lang/go/PLIST:1.36 pkgsrc/lang/go/PLIST:1.37
--- pkgsrc/lang/go/PLIST:1.36   Sun Jan 21 01:28:39 2018
+++ pkgsrc/lang/go/PLIST        Sun Jan 28 11:31:03 2018
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.36 2018/01/21 01:28:39 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.37 2018/01/28 11:31:03 bsiegert Exp $
 bin/go
 bin/gofmt
 go/AUTHORS
@@ -5127,6 +5127,7 @@ go/src/runtime/testdata/testprogcgo/numg
 go/src/runtime/testdata/testprogcgo/pprof.go
 go/src/runtime/testdata/testprogcgo/raceprof.go
 go/src/runtime/testdata/testprogcgo/racesig.go
+go/src/runtime/testdata/testprogcgo/sigstack.go
 go/src/runtime/testdata/testprogcgo/threadpanic.go
 go/src/runtime/testdata/testprogcgo/threadpanic_unix.c
 go/src/runtime/testdata/testprogcgo/threadpanic_windows.c
@@ -6857,6 +6858,11 @@ go/test/fixedbugs/issue21120.go
 go/test/fixedbugs/issue21655.go
 go/test/fixedbugs/issue21963.go
 go/test/fixedbugs/issue22083.go
+go/test/fixedbugs/issue22429.go
+go/test/fixedbugs/issue22458.go
+go/test/fixedbugs/issue22683.go
+go/test/fixedbugs/issue22683.out
+go/test/fixedbugs/issue22781.go
 go/test/fixedbugs/issue2615.go
 go/test/fixedbugs/issue3552.dir/one.go
 go/test/fixedbugs/issue3552.dir/two.go

Index: pkgsrc/lang/go/distinfo
diff -u pkgsrc/lang/go/distinfo:1.55 pkgsrc/lang/go/distinfo:1.56
--- pkgsrc/lang/go/distinfo:1.55        Sat Jan 20 18:13:25 2018
+++ pkgsrc/lang/go/distinfo     Sun Jan 28 11:31:03 2018
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.55 2018/01/20 18:13:25 christos Exp $
+$NetBSD: distinfo,v 1.56 2018/01/28 11:31:03 bsiegert Exp $
 
-SHA1 (go1.9.2.src.tar.gz) = 8a51dbdf51d6ee0e058b7de7c7606dbea23dfeec
-RMD160 (go1.9.2.src.tar.gz) = f8ae6b41af3f450b0d9a3d33aa9e0d5df39904d4
-SHA512 (go1.9.2.src.tar.gz) = 1034098575c317eeaf648629690a4dea0c479a69c3b80d9917f6b96c8781ce79c0f29859f667dc4e07d47a44972aa09bd0163a458f897cf45f9d09eb03e4abb5
-Size (go1.9.2.src.tar.gz) = 16383591 bytes
+SHA1 (go1.9.3.src.tar.gz) = e1854548e8e2defca7d63ab752ff46f38eb7db2a
+RMD160 (go1.9.3.src.tar.gz) = 0088a287f3a3c4bd4c152101f684e22173c59fa4
+SHA512 (go1.9.3.src.tar.gz) = 31c564af58b78c648c9bece8fa2ed3334feb80316b07b16f6286319e26d317da90d1af0464c3a2f776a3da72d31b22b063dbc620b93114bf142a11e8a625e527
+Size (go1.9.3.src.tar.gz) = 16385451 bytes
 SHA1 (patch-misc_io_clangwrap.sh) = cd91c47ba0fe7b6eb8009dd261c0c26c7d581c29
 SHA1 (patch-src_cmd_dist_util.go) = 24e6f1b6ded842a8ce322a40e8766f7d344bc47e
 SHA1 (patch-src_cmd_link_internal_ld_elf.go) = acc8d92b7eae1b77470bd3e88af93d458695ac76

Index: pkgsrc/lang/go/version.mk
diff -u pkgsrc/lang/go/version.mk:1.31 pkgsrc/lang/go/version.mk:1.32
--- pkgsrc/lang/go/version.mk:1.31      Sat Jan 20 16:55:05 2018
+++ pkgsrc/lang/go/version.mk   Sun Jan 28 11:31:03 2018
@@ -1,8 +1,8 @@
-# $NetBSD: version.mk,v 1.31 2018/01/20 16:55:05 christos Exp $
+# $NetBSD: version.mk,v 1.32 2018/01/28 11:31:03 bsiegert Exp $
 
 .include "../../mk/bsd.prefs.mk"
 
-GO_VERSION=    1.9.2
+GO_VERSION=    1.9.3
 GO14_VERSION=  1.4.3
 
 ONLY_FOR_PLATFORM=     *-*-i386 *-*-x86_64 *-*-earmv[67]hf



Home | Main Index | Thread Index | Old Index