svn commit: r418344 - in head/databases: . radix.v2

Carlo Strub cs at FreeBSD.org
Sun Jul 10 20:42:13 UTC 2016


Author: cs
Date: Sun Jul 10 20:42:11 2016
New Revision: 418344
URL: https://svnweb.freebsd.org/changeset/ports/418344

Log:
  Radix is a minimalistic Redis client for Go. It is broken up into small,
  single-purpose packages for ease of use.
  
  WWW: http://godoc.org/github.com/mediocregopher/radix.v2

Added:
  head/databases/radix.v2/
  head/databases/radix.v2/Makefile   (contents, props changed)
  head/databases/radix.v2/distinfo   (contents, props changed)
  head/databases/radix.v2/pkg-descr   (contents, props changed)
  head/databases/radix.v2/pkg-plist   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Sun Jul 10 20:36:35 2016	(r418343)
+++ head/databases/Makefile	Sun Jul 10 20:42:11 2016	(r418344)
@@ -828,6 +828,7 @@
     SUBDIR += qt5-sqldrivers-sqlite2
     SUBDIR += qt5-sqldrivers-sqlite3
     SUBDIR += qt5-sqldrivers-tds
+    SUBDIR += radix.v2
     SUBDIR += rdb
     SUBDIR += rdfdb
     SUBDIR += recutils

Added: head/databases/radix.v2/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/radix.v2/Makefile	Sun Jul 10 20:42:11 2016	(r418344)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME=	radix.v2
+PORTVERSION=	20160530
+CATEGORIES=	databases
+
+MAINTAINER=	cs at FreeBSD.org
+COMMENT=	Redis client for Go
+
+LICENSE=	MIT
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	mediocregopher
+GH_TAGNAME=	ae04b3eb3731f94789205d1268e0759371166605
+USES=		go
+GO_PKGNAME=	github.com/mediocregopher/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/databases/radix.v2/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/radix.v2/distinfo	Sun Jul 10 20:42:11 2016	(r418344)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1468183124
+SHA256 (mediocregopher-radix.v2-20160530-ae04b3eb3731f94789205d1268e0759371166605_GH0.tar.gz) = f58f68024ee684ad57570d37c6018e777088fccb68104a4fb67494389f350ae7
+SIZE (mediocregopher-radix.v2-20160530-ae04b3eb3731f94789205d1268e0759371166605_GH0.tar.gz) = 34225

Added: head/databases/radix.v2/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/radix.v2/pkg-descr	Sun Jul 10 20:42:11 2016	(r418344)
@@ -0,0 +1,4 @@
+Radix is a minimalistic Redis client for Go. It is broken up into small,
+single-purpose packages for ease of use.
+
+WWW: http://godoc.org/github.com/mediocregopher/radix.v2

Added: head/databases/radix.v2/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/radix.v2/pkg-plist	Sun Jul 10 20:42:11 2016	(r418344)
@@ -0,0 +1,29 @@
+%%GO_LIBDIR%%/%%GO_PKGNAME%%.a
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/CONTRIBUTING.md
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE.txt
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/Makefile
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/cluster/cluster.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/cluster/cluster_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/cluster/crc16.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/cluster/crc16_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/cluster/loadtest/README.md
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/cluster/loadtest/loadtest.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/pool/doc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/pool/pool.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/pool/pool_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/pubsub/sub.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/pubsub/sub_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/radix.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/redis/client.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/redis/client_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/redis/doc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/redis/resp.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/redis/resp_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/sentinel/sentinel.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/sentinel/sentinel_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/util/lua.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/util/lua_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/util/scan.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/util/scan_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/util/util.go


More information about the svn-ports-all mailing list