diff options
author | wen <wen@FreeBSD.org> | 2011-08-11 19:53:41 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2011-08-11 19:53:41 +0800 |
commit | 513d443b20bcb558ba16a8c97994afc0f5032e16 (patch) | |
tree | 207e7ec41ce111edbaf82e48418e385cdd10704e /databases | |
parent | 5361d71ddd2cdd8f410d0fc44ccb1e4c94052071 (diff) | |
download | freebsd-ports-gnome-513d443b20bcb558ba16a8c97994afc0f5032e16.tar.gz freebsd-ports-gnome-513d443b20bcb558ba16a8c97994afc0f5032e16.tar.zst freebsd-ports-gnome-513d443b20bcb558ba16a8c97994afc0f5032e16.zip |
Redis client for Go. It supports all Redis commands and common features such
as pipelines and pubsub.
WWW: https://github.com/simonz05/godis
PR: ports/159216
Submitted by: Grzegorz Blach<magik@roorback.net>
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/godis/Makefile | 24 | ||||
-rw-r--r-- | databases/godis/distinfo | 2 | ||||
-rw-r--r-- | databases/godis/pkg-descr | 4 |
4 files changed, 31 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 9a1fce5a8c0d..2579bdd0aeaa 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -103,6 +103,7 @@ SUBDIR += gnats4 SUBDIR += gnatsweb4 SUBDIR += gnome-db + SUBDIR += godis SUBDIR += gomysql SUBDIR += gosqlite3 SUBDIR += gqlplus diff --git a/databases/godis/Makefile b/databases/godis/Makefile new file mode 100644 index 000000000000..700117a1eb26 --- /dev/null +++ b/databases/godis/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: godis +# Date created: 20 June , 2011 +# Whom: Grzegorz Blach <magik@roorback.net> +# +# $FreeBSD$ +# + +PORTNAME= godis +PORTVERSION= 20110527 +CATEGORIES= databases +MASTER_SITES= https://github.com/downloads/Roorback/mgk_ports/ + +MAINTAINER= magik@roorback.net +COMMENT= A Redis client library written in Go + +FETCH_ARGS= -Fpr +WRKSRC= ${WRKDIR}/${DISTNAME} +PLIST_FILES= ${GO_LIBDIR}/godis.a + +USE_GO= yes + +.include <bsd.port.pre.mk> +.include "../../lang/go/files/bsd.go.mk" +.include <bsd.port.post.mk> diff --git a/databases/godis/distinfo b/databases/godis/distinfo new file mode 100644 index 000000000000..b00faaf6d403 --- /dev/null +++ b/databases/godis/distinfo @@ -0,0 +1,2 @@ +SHA256 (godis-20110527.tar.gz) = 4d1c29a688a2065f00846eacfc1ba850738df05d5b40db130efdc7c4702357f4 +SIZE (godis-20110527.tar.gz) = 15818 diff --git a/databases/godis/pkg-descr b/databases/godis/pkg-descr new file mode 100644 index 000000000000..b5396f24c623 --- /dev/null +++ b/databases/godis/pkg-descr @@ -0,0 +1,4 @@ +Redis client for Go. It supports all Redis commands and common features such +as pipelines and pubsub. + +WWW: https://github.com/simonz05/godis |