pkgsrc-Changes archive

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

CVS commit: pkgsrc/net/go-framestream



Module Name:    pkgsrc
Committed By:   he
Date:           Wed Jan 16 15:15:50 UTC 2019

Added Files:
        pkgsrc/net/go-framestream: DESCR Makefile PLIST buildlink3.mk distinfo

Log Message:
Add go-framestream version 0.1.0.

Frame Streams implementation in Go

https://github.com/farsightsec/golang-framestream

Frame Streams is a lightweight, binary-clean protocol that allows
for the transport of arbitrarily encoded data payload sequences
with minimal framing overhead.

This package provides a pure Golang implementation. The Frame
Streams implementation in C is at https://github.com/farsightsec/fstrm/.

The example framestream_dump program reads a Frame Streams formatted
input file and prints the data frames and frame byte counts.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/net/go-framestream/DESCR \
    pkgsrc/net/go-framestream/Makefile pkgsrc/net/go-framestream/PLIST \
    pkgsrc/net/go-framestream/buildlink3.mk \
    pkgsrc/net/go-framestream/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-framestream/DESCR
diff -u /dev/null pkgsrc/net/go-framestream/DESCR:1.1
--- /dev/null   Wed Jan 16 15:15:50 2019
+++ pkgsrc/net/go-framestream/DESCR     Wed Jan 16 15:15:49 2019
@@ -0,0 +1,13 @@
+Frame Streams implementation in Go
+
+https://github.com/farsightsec/golang-framestream
+
+Frame Streams is a lightweight, binary-clean protocol that allows
+for the transport of arbitrarily encoded data payload sequences
+with minimal framing overhead.
+
+This package provides a pure Golang implementation. The Frame
+Streams implementation in C is at https://github.com/farsightsec/fstrm/.
+
+The example framestream_dump program reads a Frame Streams formatted
+input file and prints the data frames and frame byte counts.
Index: pkgsrc/net/go-framestream/Makefile
diff -u /dev/null pkgsrc/net/go-framestream/Makefile:1.1
--- /dev/null   Wed Jan 16 15:15:50 2019
+++ pkgsrc/net/go-framestream/Makefile  Wed Jan 16 15:15:49 2019
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1 2019/01/16 15:15:49 he Exp $
+
+DISTNAME=              go-framestream-0.1.0
+CATEGORIES=            net
+MASTER_SITES=          ${MASTER_SITE_GITHUB:=farsightsec/}
+GITHUB_PROJECT=                golang-framestream
+GITHUB_TAG=            tags/v${PKGVERSION_NOREV}
+GITHUB_TYPE=           tag
+
+HOMEPAGE=              http://${GO_SRCPATH}
+COMMENT=               Go language implementation of framestream protocol
+LICENSE=               apache-2.0
+
+GO_SRCPATH=            github.com/farsightsec/golang-framestream
+GO_DIST_BASE=          ${GITHUB_PROJECT}-${GITHUB_TAG:S!/!-!}
+
+.include "../../lang/go/go-package.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/net/go-framestream/PLIST
diff -u /dev/null pkgsrc/net/go-framestream/PLIST:1.1
--- /dev/null   Wed Jan 16 15:15:50 2019
+++ pkgsrc/net/go-framestream/PLIST     Wed Jan 16 15:15:49 2019
@@ -0,0 +1,20 @@
+@comment $NetBSD: PLIST,v 1.1 2019/01/16 15:15:49 he Exp $
+bin/framestream_dump
+gopkg/pkg/${GO_PLATFORM}/github.com/farsightsec/golang-framestream.a
+gopkg/src/github.com/farsightsec/golang-framestream/COPYRIGHT
+gopkg/src/github.com/farsightsec/golang-framestream/Control.go
+gopkg/src/github.com/farsightsec/golang-framestream/Decoder.go
+gopkg/src/github.com/farsightsec/golang-framestream/Encoder.go
+gopkg/src/github.com/farsightsec/golang-framestream/LICENSE
+gopkg/src/github.com/farsightsec/golang-framestream/README.md
+gopkg/src/github.com/farsightsec/golang-framestream/debian/changelog
+gopkg/src/github.com/farsightsec/golang-framestream/debian/compat
+gopkg/src/github.com/farsightsec/golang-framestream/debian/control
+gopkg/src/github.com/farsightsec/golang-framestream/debian/copyright
+gopkg/src/github.com/farsightsec/golang-framestream/debian/docs
+gopkg/src/github.com/farsightsec/golang-framestream/debian/gbp.conf
+gopkg/src/github.com/farsightsec/golang-framestream/debian/rules
+gopkg/src/github.com/farsightsec/golang-framestream/debian/source/format
+gopkg/src/github.com/farsightsec/golang-framestream/framestream.go
+gopkg/src/github.com/farsightsec/golang-framestream/framestream_dump/main.go
+gopkg/src/github.com/farsightsec/golang-framestream/framestream_test.go
Index: pkgsrc/net/go-framestream/buildlink3.mk
diff -u /dev/null pkgsrc/net/go-framestream/buildlink3.mk:1.1
--- /dev/null   Wed Jan 16 15:15:50 2019
+++ pkgsrc/net/go-framestream/buildlink3.mk     Wed Jan 16 15:15:49 2019
@@ -0,0 +1,16 @@
+# $NetBSD: buildlink3.mk,v 1.1 2019/01/16 15:15:49 he Exp $
+
+BUILDLINK_TREE+=       go-framestream
+
+.if !defined(GO_FRAMESTREAM_BUILDLINK3_MK)
+GO_FRAMESTREAM_BUILDLINK3_MK:=
+
+BUILDLINK_CONTENTS_FILTER.go-framestream=${EGREP} gopkg/
+BUILDLINK_DEPMETHOD.go-framestream?=   build
+
+BUILDLINK_API_DEPENDS.go-framestream+= go-framestream>=0.1.0
+BUILDLINK_PKGSRCDIR.go-framestream?=   ../../net/go-framestream
+
+.endif # GO_FRAMESTREAM_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -go-framestream
Index: pkgsrc/net/go-framestream/distinfo
diff -u /dev/null pkgsrc/net/go-framestream/distinfo:1.1
--- /dev/null   Wed Jan 16 15:15:50 2019
+++ pkgsrc/net/go-framestream/distinfo  Wed Jan 16 15:15:49 2019
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/01/16 15:15:49 he Exp $
+
+SHA1 (go-framestream-0.1.0.tar.gz) = 507e5557ec0fa663e2d28d4b9748f716f58addc3
+RMD160 (go-framestream-0.1.0.tar.gz) = 38d0402509f957632959383ddb8f4e6e4f491822
+SHA512 (go-framestream-0.1.0.tar.gz) = ab2ab4111d05b37ea3849eb7a8ce0c12023ab3394b69ab87fef76a599b468c7c53a31c941192e8761e62c897814f284032e7c8ba7971c63e7dec7ae254cd00b2
+Size (go-framestream-0.1.0.tar.gz) = 8998 bytes



Home | Main Index | Thread Index | Old Index