summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorWen Heping <wen@FreeBSD.org>2011-08-11 11:53:41 +0000
committerWen Heping <wen@FreeBSD.org>2011-08-11 11:53:41 +0000
commit5c0368565ad32a740dfefdd77ef6f8b368e89022 (patch)
tree9e0c4ffd3a26304a3069c83548b3bb258ba6b2bf /databases
parent- Update to 3.6.1 (diff)
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>
Notes
Notes: svn path=/head/; revision=279487
Diffstat (limited to 'databases')
-rw-r--r--databases/Makefile1
-rw-r--r--databases/godis/Makefile24
-rw-r--r--databases/godis/distinfo2
-rw-r--r--databases/godis/pkg-descr4
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