pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/databases Add databases/go-tiedot version 3.4
details: https://anonhg.NetBSD.org/pkgsrc/rev/4664a8420c34
branches: trunk
changeset: 405387:4664a8420c34
user: ng0 <ng0%pkgsrc.org@localhost>
date: Wed Nov 27 10:34:22 2019 +0000
description:
Add databases/go-tiedot version 3.4
tiedot is a document database engine that uses JSON as document
notation; it has a powerful query processor that supports advanced set
operations; it can be embedded into your program, or run a stand-alone
server using HTTP for an API.
tiedot has fault-tolerant data structures that put your data safety
first, while easily scales to 4+ CPU cores.
tiedot has very stable performance, even with millions of records! It
consistently achieves high throughput - swallow more than 120k records
or 80k complicated queries per second with confidence.
diffstat:
databases/Makefile | 3 +-
databases/go-tiedot/DESCR | 11 ++++++
databases/go-tiedot/Makefile | 21 +++++++++++++
databases/go-tiedot/PLIST | 71 ++++++++++++++++++++++++++++++++++++++++++++
databases/go-tiedot/distinfo | 6 +++
5 files changed, 111 insertions(+), 1 deletions(-)
diffs (142 lines):
diff -r 24cbd71124af -r 4664a8420c34 databases/Makefile
--- a/databases/Makefile Wed Nov 27 10:27:45 2019 +0000
+++ b/databases/Makefile Wed Nov 27 10:34:22 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.589 2019/11/17 05:48:43 markd Exp $
+# $NetBSD: Makefile,v 1.590 2019/11/27 10:34:22 ng0 Exp $
COMMENT= Databases
@@ -41,6 +41,7 @@
SUBDIR+= go-etcd
SUBDIR+= go-ldap
SUBDIR+= go-sqlite3
+SUBDIR+= go-tiedot
SUBDIR+= gourmet
SUBDIR+= gq
SUBDIR+= gramps3
diff -r 24cbd71124af -r 4664a8420c34 databases/go-tiedot/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/go-tiedot/DESCR Wed Nov 27 10:34:22 2019 +0000
@@ -0,0 +1,11 @@
+tiedot is a document database engine that uses JSON as document
+notation; it has a powerful query processor that supports advanced set
+operations; it can be embedded into your program, or run a stand-alone
+server using HTTP for an API.
+
+tiedot has fault-tolerant data structures that put your data safety
+first, while easily scales to 4+ CPU cores.
+
+tiedot has very stable performance, even with millions of records! It
+consistently achieves high throughput - swallow more than 120k records
+or 80k complicated queries per second with confidence.
diff -r 24cbd71124af -r 4664a8420c34 databases/go-tiedot/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/go-tiedot/Makefile Wed Nov 27 10:34:22 2019 +0000
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1 2019/11/27 10:34:22 ng0 Exp $
+
+GITHUB_PROJECT= tiedot
+GITHUB_TAG= ${PKGVERSION_NOREV}
+DISTNAME= 3.4
+PKGNAME= go-${GITHUB_PROJECT}-${DISTNAME}
+CATEGORIES= databases
+MASTER_SITES= ${MASTER_SITE_GITHUB:=HouzuoGuo/}
+DIST_SUBDIR= ${GITHUB_PROJECT}
+
+MAINTAINER= ng0%NetBSD.org@localhost
+HOMEPAGE= https://github.com/HouzuoGuo/tiedot/
+COMMENT= NoSQL database in Go
+LICENSE= 2-clause-bsd
+
+GO_SRCPATH= github.com/HouzuoGuo/tiedot
+GO_DIST_BASE= tiedot-${PKGVERSION_NOREV}
+
+.include "../../devel/go-jwt-go/buildlink3.mk"
+.include "../../lang/go/go-package.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 24cbd71124af -r 4664a8420c34 databases/go-tiedot/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/go-tiedot/PLIST Wed Nov 27 10:34:22 2019 +0000
@@ -0,0 +1,71 @@
+@comment $NetBSD: PLIST,v 1.1 2019/11/27 10:34:22 ng0 Exp $
+bin/tiedot
+gopkg/pkg/${GO_PLATFORM}/github.com/HouzuoGuo/tiedot/data.a
+gopkg/pkg/${GO_PLATFORM}/github.com/HouzuoGuo/tiedot/db.a
+gopkg/pkg/${GO_PLATFORM}/github.com/HouzuoGuo/tiedot/dberr.a
+gopkg/pkg/${GO_PLATFORM}/github.com/HouzuoGuo/tiedot/gommap.a
+gopkg/pkg/${GO_PLATFORM}/github.com/HouzuoGuo/tiedot/httpapi.a
+gopkg/pkg/${GO_PLATFORM}/github.com/HouzuoGuo/tiedot/tdlog.a
+gopkg/src/github.com/HouzuoGuo/tiedot/LICENSE
+gopkg/src/github.com/HouzuoGuo/tiedot/README.md
+gopkg/src/github.com/HouzuoGuo/tiedot/benchmark.go
+gopkg/src/github.com/HouzuoGuo/tiedot/benchmark_test.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/collection.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/collection32.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/collection64.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/collection_test.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/file.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/file_test.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/hash32.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/hash64.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/hashtable.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/hashtable_test.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/partition.go
+gopkg/src/github.com/HouzuoGuo/tiedot/data/partition_test.go
+gopkg/src/github.com/HouzuoGuo/tiedot/db/col.go
+gopkg/src/github.com/HouzuoGuo/tiedot/db/db.go
+gopkg/src/github.com/HouzuoGuo/tiedot/db/db_test.go
+gopkg/src/github.com/HouzuoGuo/tiedot/db/doc.go
+gopkg/src/github.com/HouzuoGuo/tiedot/db/doc_test.go
+gopkg/src/github.com/HouzuoGuo/tiedot/db/idx_test.go
+gopkg/src/github.com/HouzuoGuo/tiedot/db/query.go
+gopkg/src/github.com/HouzuoGuo/tiedot/db/query_test.go
+gopkg/src/github.com/HouzuoGuo/tiedot/dberr/errors.go
+gopkg/src/github.com/HouzuoGuo/tiedot/distributable/etc/tiedot
+gopkg/src/github.com/HouzuoGuo/tiedot/distributable/tiedot.service
+gopkg/src/github.com/HouzuoGuo/tiedot/distributable/tiedot.spec
+gopkg/src/github.com/HouzuoGuo/tiedot/doc/API-reference-and-embedded-usage.md
+gopkg/src/github.com/HouzuoGuo/tiedot/doc/Concurrency-and-networking.md
+gopkg/src/github.com/HouzuoGuo/tiedot/doc/Contributors-and-License.md
+gopkg/src/github.com/HouzuoGuo/tiedot/doc/Data-structures.md
+gopkg/src/github.com/HouzuoGuo/tiedot/doc/Home.md
+gopkg/src/github.com/HouzuoGuo/tiedot/doc/Limitations.md
+gopkg/src/github.com/HouzuoGuo/tiedot/doc/Performance-tuning-and-benchmarks.md
+gopkg/src/github.com/HouzuoGuo/tiedot/doc/Query-processor-and-index.md
+gopkg/src/github.com/HouzuoGuo/tiedot/doc/Tutorial.md
+gopkg/src/github.com/HouzuoGuo/tiedot/doc/Version-History.md
+gopkg/src/github.com/HouzuoGuo/tiedot/example.go
+gopkg/src/github.com/HouzuoGuo/tiedot/example_test.go
+gopkg/src/github.com/HouzuoGuo/tiedot/extra/FOSDEM14-pic1.jpg
+gopkg/src/github.com/HouzuoGuo/tiedot/extra/FOSDEM14-pic2.jpg
+gopkg/src/github.com/HouzuoGuo/tiedot/extra/FOSDEM14-tiedot.pdf
+gopkg/src/github.com/HouzuoGuo/tiedot/extra/TiedotPythonClient.py
+gopkg/src/github.com/HouzuoGuo/tiedot/extra/mongo_throughput_harness.js
+gopkg/src/github.com/HouzuoGuo/tiedot/gommap/LICENSE
+gopkg/src/github.com/HouzuoGuo/tiedot/gommap/README.md
+gopkg/src/github.com/HouzuoGuo/tiedot/gommap/mmap.go
+gopkg/src/github.com/HouzuoGuo/tiedot/gommap/mmap_unix.go
+gopkg/src/github.com/HouzuoGuo/tiedot/gommap/mmap_windows.go
+gopkg/src/github.com/HouzuoGuo/tiedot/httpapi/collection.go
+gopkg/src/github.com/HouzuoGuo/tiedot/httpapi/document.go
+gopkg/src/github.com/HouzuoGuo/tiedot/httpapi/index.go
+gopkg/src/github.com/HouzuoGuo/tiedot/httpapi/jwt-test.key
+gopkg/src/github.com/HouzuoGuo/tiedot/httpapi/jwt-test.pub
+gopkg/src/github.com/HouzuoGuo/tiedot/httpapi/jwt.go
+gopkg/src/github.com/HouzuoGuo/tiedot/httpapi/jwt_test.go
+gopkg/src/github.com/HouzuoGuo/tiedot/httpapi/misc.go
+gopkg/src/github.com/HouzuoGuo/tiedot/httpapi/query.go
+gopkg/src/github.com/HouzuoGuo/tiedot/httpapi/srv.go
+gopkg/src/github.com/HouzuoGuo/tiedot/main.go
+gopkg/src/github.com/HouzuoGuo/tiedot/tdlog/tdlog.go
+gopkg/src/github.com/HouzuoGuo/tiedot/tdlog/tdlog_test.go
diff -r 24cbd71124af -r 4664a8420c34 databases/go-tiedot/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/go-tiedot/distinfo Wed Nov 27 10:34:22 2019 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/11/27 10:34:22 ng0 Exp $
+
+SHA1 (tiedot/3.4.tar.gz) = 09cc4f454f132307c7c47e91e1f981e9607f465f
+RMD160 (tiedot/3.4.tar.gz) = ade0eaf9885707099dd30cedf05612359badc910
+SHA512 (tiedot/3.4.tar.gz) = e87e37d3330da1b3915e7e0c136419e5b9041ca0e66465986615e57ca34054261a120da1a62ec6279da20ecf672f9b2d011d8fb3eca40daf31c404ff82ece98d
+Size (tiedot/3.4.tar.gz) = 608687 bytes
Home |
Main Index |
Thread Index |
Old Index