summaryrefslogtreecommitdiff
path: root/lang/go
diff options
context:
space:
mode:
authorfhajny <fhajny>2015-09-13 19:11:55 +0000
committerfhajny <fhajny>2015-09-13 19:11:55 +0000
commit3e7e7596676720ae97c59dc20c8dc1126e549d86 (patch)
treec1e68eb695206292b8085ca4b9f854a33c177740 /lang/go
parent68627c949eac7e81d33b16a3cabc65d9bcfa25b0 (diff)
downloadpkgsrc-3e7e7596676720ae97c59dc20c8dc1126e549d86.tar.gz
Remove patch for a problem that was fixed in 1.5.1.
Clear PKGREVISION after PKGVERSION update.
Diffstat (limited to 'lang/go')
-rw-r--r--lang/go/Makefile3
-rw-r--r--lang/go/distinfo3
-rw-r--r--lang/go/patches/patch-src_net_sendfile__solaris.go17
3 files changed, 2 insertions, 21 deletions
diff --git a/lang/go/Makefile b/lang/go/Makefile
index 902b12a4b41..881f88d06f0 100644
--- a/lang/go/Makefile
+++ b/lang/go/Makefile
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.33 2015/08/25 23:09:51 fhajny Exp $
+# $NetBSD: Makefile,v 1.34 2015/09/13 19:11:55 fhajny Exp $
.include "version.mk"
DISTNAME= go${GO_VERSION}.src
PKGNAME= go-${GO_VERSION}
-PKGREVISION= 2
CATEGORIES= lang
MASTER_SITES= https://storage.googleapis.com/golang/
diff --git a/lang/go/distinfo b/lang/go/distinfo
index 98690a80a7e..cfb58dc9337 100644
--- a/lang/go/distinfo
+++ b/lang/go/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.26 2015/09/13 14:24:58 bsiegert Exp $
+$NetBSD: distinfo,v 1.27 2015/09/13 19:11:55 fhajny Exp $
SHA1 (go1.5.1.src.tar.gz) = 0df564746d105f4180c2b576a1553ebca9d9a124
RMD160 (go1.5.1.src.tar.gz) = 751d078789bcd6ec0d85e09f5f40d9959877e202
Size (go1.5.1.src.tar.gz) = 12049701 bytes
SHA1 (patch-src_cmd_go_pkg.go) = ccc470577951bd00741c39229599c0c06be52d0a
-SHA1 (patch-src_net_sendfile__solaris.go) = 301b1d7f607a676864a3ce568d32036b6199659e
SHA1 (patch-src_syscall_syscall__solaris.go) = 436371947897dcba574a6dfecc6bbcd04f6e25b2
diff --git a/lang/go/patches/patch-src_net_sendfile__solaris.go b/lang/go/patches/patch-src_net_sendfile__solaris.go
deleted file mode 100644
index ef5f3649a9b..00000000000
--- a/lang/go/patches/patch-src_net_sendfile__solaris.go
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-src_net_sendfile__solaris.go,v 1.1 2015/08/25 21:02:52 fhajny Exp $
-
-Since sendfile ends up being called in 3rd party software, we need
-the library linked here. This fixes building other software that uses
-net on SunOS.
-
---- src/net/sendfile_solaris.go.orig 2015-08-19 06:05:19.000000000 +0000
-+++ src/net/sendfile_solaris.go
-@@ -14,6 +14,8 @@ import (
- //go:cgo_import_dynamic _ _ "libsendfile.so"
- //go:cgo_import_dynamic _ _ "libsocket.so"
-
-+//go:cgo_ldflag "-lsendfile"
-+
- // maxSendfileSize is the largest chunk size we ask the kernel to copy
- // at a time.
- const maxSendfileSize int = 4 << 20