Received: by mail.netbsd.org (Postfix, from userid 605) id EB085855F3; Thu, 17 Aug 2017 02:03:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7D78B855E7 for ; Thu, 17 Aug 2017 02:03:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id DftXFxAjVBxL for ; Thu, 17 Aug 2017 02:03:23 +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 BD79584D8D for ; Thu, 17 Aug 2017 02:03:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BB9B2FAD0; Thu, 17 Aug 2017 02:03:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15029354037170" MIME-Version: 1.0 Date: Thu, 17 Aug 2017 02:03:23 +0000 From: "Gavan Fantom" Subject: CVS commit: pkgsrc/net/go-websocket To: pkgsrc-changes@NetBSD.org Reply-To: gavan@netbsd.org X-Mailer: log_accum Message-Id: <20170817020323.BB9B2FAD0@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_15029354037170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gavan Date: Thu Aug 17 02:03:23 UTC 2017 Added Files: pkgsrc/net/go-websocket: DESCR Makefile PLIST buildlink3.mk distinfo Log Message: Add go-websocket package To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/net/go-websocket/DESCR \ pkgsrc/net/go-websocket/Makefile pkgsrc/net/go-websocket/PLIST \ pkgsrc/net/go-websocket/buildlink3.mk pkgsrc/net/go-websocket/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15029354037170 Content-Disposition: inline Content-Length: 4742 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/net/go-websocket/DESCR diff -u /dev/null pkgsrc/net/go-websocket/DESCR:1.1 --- /dev/null Thu Aug 17 02:03:23 2017 +++ pkgsrc/net/go-websocket/DESCR Thu Aug 17 02:03:23 2017 @@ -0,0 +1 @@ +The Gorilla WebSocket package provides a complete and tested implementation of the WebSocket protocol. The package API is stable. Index: pkgsrc/net/go-websocket/Makefile diff -u /dev/null pkgsrc/net/go-websocket/Makefile:1.1 --- /dev/null Thu Aug 17 02:03:23 2017 +++ pkgsrc/net/go-websocket/Makefile Thu Aug 17 02:03:23 2017 @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1 2017/08/17 02:03:23 gavan Exp $ + +DISTNAME= websocket-1.0.0 +PKGNAME= go-${DISTNAME} +MASTER_SITES= ${MASTER_SITE_GITHUB:=gorilla/} +CATEGORIES= net +GITHUB_TAG= v${PKGVERSION_NOREV} +GITHUB_PROJECT= ${PKGBASE:S/^go-//} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/gorilla/websocket +COMMENT= A WebSocket implementation for Go. +LICENSE= 2-clause-bsd + +GO_DIST_BASE= ${DISTNAME} +GO_SRCPATH= github.com/gorilla/websocket + +.include "../../lang/go/go-package.mk" +.include "../../mk/bsd.pkg.mk" + Index: pkgsrc/net/go-websocket/PLIST diff -u /dev/null pkgsrc/net/go-websocket/PLIST:1.1 --- /dev/null Thu Aug 17 02:03:23 2017 +++ pkgsrc/net/go-websocket/PLIST Thu Aug 17 02:03:23 2017 @@ -0,0 +1,39 @@ +@comment $NetBSD: PLIST,v 1.1 2017/08/17 02:03:23 gavan Exp $ +bin/autobahn +bin/chat +bin/command +bin/filewatch +gopkg/pkg/${GO_PLATFORM}/github.com/gorilla/websocket.a +gopkg/src/github.com/gorilla/websocket/AUTHORS +gopkg/src/github.com/gorilla/websocket/LICENSE +gopkg/src/github.com/gorilla/websocket/README.md +gopkg/src/github.com/gorilla/websocket/bench_test.go +gopkg/src/github.com/gorilla/websocket/client.go +gopkg/src/github.com/gorilla/websocket/client_server_test.go +gopkg/src/github.com/gorilla/websocket/client_test.go +gopkg/src/github.com/gorilla/websocket/conn.go +gopkg/src/github.com/gorilla/websocket/conn_test.go +gopkg/src/github.com/gorilla/websocket/doc.go +gopkg/src/github.com/gorilla/websocket/example_test.go +gopkg/src/github.com/gorilla/websocket/examples/autobahn/README.md +gopkg/src/github.com/gorilla/websocket/examples/autobahn/fuzzingclient.json +gopkg/src/github.com/gorilla/websocket/examples/autobahn/server.go +gopkg/src/github.com/gorilla/websocket/examples/chat/README.md +gopkg/src/github.com/gorilla/websocket/examples/chat/conn.go +gopkg/src/github.com/gorilla/websocket/examples/chat/home.html +gopkg/src/github.com/gorilla/websocket/examples/chat/hub.go +gopkg/src/github.com/gorilla/websocket/examples/chat/main.go +gopkg/src/github.com/gorilla/websocket/examples/command/README.md +gopkg/src/github.com/gorilla/websocket/examples/command/home.html +gopkg/src/github.com/gorilla/websocket/examples/command/main.go +gopkg/src/github.com/gorilla/websocket/examples/echo/README.md +gopkg/src/github.com/gorilla/websocket/examples/echo/client.go +gopkg/src/github.com/gorilla/websocket/examples/echo/server.go +gopkg/src/github.com/gorilla/websocket/examples/filewatch/README.md +gopkg/src/github.com/gorilla/websocket/examples/filewatch/main.go +gopkg/src/github.com/gorilla/websocket/json.go +gopkg/src/github.com/gorilla/websocket/json_test.go +gopkg/src/github.com/gorilla/websocket/server.go +gopkg/src/github.com/gorilla/websocket/server_test.go +gopkg/src/github.com/gorilla/websocket/util.go +gopkg/src/github.com/gorilla/websocket/util_test.go Index: pkgsrc/net/go-websocket/buildlink3.mk diff -u /dev/null pkgsrc/net/go-websocket/buildlink3.mk:1.1 --- /dev/null Thu Aug 17 02:03:23 2017 +++ pkgsrc/net/go-websocket/buildlink3.mk Thu Aug 17 02:03:23 2017 @@ -0,0 +1,17 @@ +# $NetBSD: buildlink3.mk,v 1.1 2017/08/17 02:03:23 gavan Exp $ + +BUILDLINK_TREE+= go-websocket + +.if !defined(GO_WEBSOCKET_BUILDLINK3_MK) +GO_WEBSOCKET_BUILDLINK3_MK:= + +BUILDLINK_CONTENTS_FILTER.go-websocket= ${EGREP} gopkg/ +BUILDLINK_DEPMETHOD.go-websocket?= build + +BUILDLINK_API_DEPENDS.go-websocket+= go-websocket>=1.0.0 +BUILDLINK_PKGSRCDIR.go-websocket?= ../../net/go-websocket + +.endif # GO_WEBSOCKET_BUILDLINK3_MK + +BUILDLINK_TREE+= -go-websocket + Index: pkgsrc/net/go-websocket/distinfo diff -u /dev/null pkgsrc/net/go-websocket/distinfo:1.1 --- /dev/null Thu Aug 17 02:03:23 2017 +++ pkgsrc/net/go-websocket/distinfo Thu Aug 17 02:03:23 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/08/17 02:03:23 gavan Exp $ + +SHA1 (websocket-1.0.0.tar.gz) = 3141c89bb3aebe10ce3029ce48c31aab694fb8fd +RMD160 (websocket-1.0.0.tar.gz) = 45886d3c8b6d05baec3ecf7f912b904d742b226d +SHA512 (websocket-1.0.0.tar.gz) = 3f84074c4fef3169d41b163759eef4372ee0d6eb590e8c5e5a5ab1bc5480d0b4e77edd8897ee08fabe755fc78819450dd0ce10a3ad2a7f8a731d34bbceee624d +Size (websocket-1.0.0.tar.gz) = 31197 bytes --_----------=_15029354037170--