diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2016-04-23 12:04:45 +0800 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2016-04-23 12:04:45 +0800 |
commit | 723703f7e50b339ed8c468daced0427c265124d2 (patch) | |
tree | 8e05d8e630bb8aae5a5eb84bd8973dd7e5cc9a9e /net | |
parent | 5437270e443b8ea557695fa10b98e6c549c714d2 (diff) | |
download | freebsd-ports-gnome-723703f7e50b339ed8c468daced0427c265124d2.tar.gz freebsd-ports-gnome-723703f7e50b339ed8c468daced0427c265124d2.tar.zst freebsd-ports-gnome-723703f7e50b339ed8c468daced0427c265124d2.zip |
Add nats, another messaging system in go.
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/nats/Makefile | 23 | ||||
-rw-r--r-- | net/nats/distinfo | 2 | ||||
-rw-r--r-- | net/nats/pkg-descr | 3 |
4 files changed, 29 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index a50ec124b47b..365df2a890f1 100644 --- a/net/Makefile +++ b/net/Makefile @@ -415,6 +415,7 @@ SUBDIR += nakenchat SUBDIR += nanomsg SUBDIR += nast + SUBDIR += nats SUBDIR += nbd-server SUBDIR += nc SUBDIR += ncp diff --git a/net/nats/Makefile b/net/nats/Makefile new file mode 100644 index 000000000000..f9f3f950cc2c --- /dev/null +++ b/net/nats/Makefile @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= nats +PORTVERSION= 0.7.2 +DISTVERSIONPREFIX= v +CATEGORIES= net + +MAINTAINER= vanilla@FreeBSD.org +COMMENT= Messaging system written in Go + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${LOCALBASE}/${GO_LIBDIR}/golang.org/x/crypto/bcrypt.a:${PORTSDIR}/security/go.crypto + +USES= go +GO_PKGNAME= github.com/nats-io/gnatsd +USE_GITHUB= yes +GH_ACCOUNT= nats-io +GH_PROJECT= gnatsd +PLIST_FILES= bin/gnatsd + +.include <bsd.port.mk> diff --git a/net/nats/distinfo b/net/nats/distinfo new file mode 100644 index 000000000000..0232df386a10 --- /dev/null +++ b/net/nats/distinfo @@ -0,0 +1,2 @@ +SHA256 (nats-io-gnatsd-v0.7.2_GH0.tar.gz) = f71d77ff31fc31770cf8e140d084ecfa91f7a8333f945bac1ff44732901680b5 +SIZE (nats-io-gnatsd-v0.7.2_GH0.tar.gz) = 120264 diff --git a/net/nats/pkg-descr b/net/nats/pkg-descr new file mode 100644 index 000000000000..1f22b08575c4 --- /dev/null +++ b/net/nats/pkg-descr @@ -0,0 +1,3 @@ +NATS is an open-source, cloud-native messaging system. + +WWW: https://nats.io/ |