Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Sep 2016 09:01:23 +0000 (UTC)
From:      Jimmy Olgeni <olgeni@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r422811 - in head/net: . go-nats
Message-ID:  <201609270901.u8R91NOY018640@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olgeni
Date: Tue Sep 27 09:01:23 2016
New Revision: 422811
URL: https://svnweb.freebsd.org/changeset/ports/422811

Log:
  Add net/go-nats, a Go client library for NATS.

Added:
  head/net/go-nats/
  head/net/go-nats/Makefile   (contents, props changed)
  head/net/go-nats/distinfo   (contents, props changed)
  head/net/go-nats/pkg-descr   (contents, props changed)
  head/net/go-nats/pkg-plist   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Tue Sep 27 08:58:23 2016	(r422810)
+++ head/net/Makefile	Tue Sep 27 09:01:23 2016	(r422811)
@@ -172,6 +172,7 @@
     SUBDIR += go-geoip
     SUBDIR += go-httppath
     SUBDIR += go-httptreemux
+    SUBDIR += go-nats
     SUBDIR += go.net
     SUBDIR += gofish
     SUBDIR += gogoc

Added: head/net/go-nats/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/go-nats/Makefile	Tue Sep 27 09:01:23 2016	(r422811)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	nats
+DISTVERSIONPREFIX=	v
+DISTVERSION=	1.2.0
+CATEGORIES=	net
+PKGNAMEPREFIX=	go-
+
+MAINTAINER=	olgeni@FreeBSD.org
+COMMENT=	Go client for NATS
+
+LICENSE=	MIT
+
+BUILD_DEPENDS=	go-nuid>=0:devel/go-nuid
+RUN_DEPENDS=	go-nuid>=0:devel/go-nuid
+
+USES=		go
+USE_GITHUB=	yes
+GH_ACCOUNT=	nats-io
+
+GO_PKGNAME=	github.com/${GH_ACCOUNT}/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/net/go-nats/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/go-nats/distinfo	Tue Sep 27 09:01:23 2016	(r422811)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1474724119
+SHA256 (nats-io-nats-v1.2.0_GH0.tar.gz) = 9d29cbc61872e2bb0413fc18d4667a9cf4e1cd6d4fda07a358a7dae32ee0228e
+SIZE (nats-io-nats-v1.2.0_GH0.tar.gz) = 71203

Added: head/net/go-nats/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/go-nats/pkg-descr	Tue Sep 27 09:01:23 2016	(r422811)
@@ -0,0 +1,3 @@
+Golang client for NATS, the cloud native messaging system.
+
+WWW: https://github.com/nats-io/nats

Added: head/net/go-nats/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/go-nats/pkg-plist	Tue Sep 27 09:01:23 2016	(r422811)
@@ -0,0 +1,44 @@
+%%GO_LIBDIR%%/%%GO_PKGNAME%%.a
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/TODO.md
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/enc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/enc_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encoders/builtin/default_enc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encoders/builtin/enc_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encoders/builtin/gob_enc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encoders/builtin/gob_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encoders/builtin/json_enc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encoders/builtin/json_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encoders/protobuf/protobuf_enc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encoders/protobuf/protobuf_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encoders/protobuf/testdata/pbtest.pb.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encoders/protobuf/testdata/pbtest.proto
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/example_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/examples/nats-bench.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/examples/nats-pub.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/examples/nats-qsub.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/examples/nats-req.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/examples/nats-rply.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/examples/nats-sub.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/nats.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/nats_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/netchan.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/parser.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/scripts/cov.sh
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/auth_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/basic_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/bench_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/cluster_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/configs/certs/ca.pem
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/configs/certs/client-cert.pem
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/configs/certs/client-key.pem
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/configs/certs/key.pem
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/configs/certs/server.pem
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/configs/tls.conf
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/configs/tlsverify.conf
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/conn_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/netchan_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/reconnect_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/sub_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/test.go



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609270901.u8R91NOY018640>