pkgsrc-Changes archive

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

CVS commit: pkgsrc/net/go-websocket



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.

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@localhost
+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



Home | Main Index | Thread Index | Old Index