Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Feb 2020 23:31:28 +0000 (UTC)
From:      "Sergey A. Osokin" <osa@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r527143 - in head/textproc: . redisearch
Message-ID:  <202002252331.01PNVSTp051641@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: osa
Date: Tue Feb 25 23:31:27 2020
New Revision: 527143
URL: https://svnweb.freebsd.org/changeset/ports/527143

Log:
  Add RediSearch - a source available Full-Test and Secondary
  Index engine over Redis, developed by Redis Labs.
  
  Differential Revision:	https://reviews.freebsd.org/D20061

Added:
  head/textproc/redisearch/
  head/textproc/redisearch/Makefile   (contents, props changed)
  head/textproc/redisearch/distinfo   (contents, props changed)
  head/textproc/redisearch/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Tue Feb 25 22:40:59 2020	(r527142)
+++ head/textproc/Makefile	Tue Feb 25 23:31:27 2020	(r527143)
@@ -1432,6 +1432,7 @@
     SUBDIR += re-flex
     SUBDIR += re_graph
     SUBDIR += redet
+    SUBDIR += redisearch
     SUBDIR += redland
     SUBDIR += redland-bindings
     SUBDIR += refdb

Added: head/textproc/redisearch/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/redisearch/Makefile	Tue Feb 25 23:31:27 2020	(r527143)
@@ -0,0 +1,30 @@
+# Created by: Sergey A. Osokin <osa@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	redisearch
+DISTVERSIONPREFIX=	v
+DISTVERSION=	1.4.24
+CATEGORIES=	textproc
+
+MAINTAINER=	osa@FreeBSD.org
+COMMENT=	Full-text search over Redis
+
+LICENSE=	UNKNOWN
+LICENSE_NAME=	Redis Source Available License Agreement
+LICENSE_FILE=	${WRKSRC}/LICENSE
+LICENSE_PERMS=	dist-mirror pkg-mirror auto-accept
+
+USES=		cmake
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	RediSearch
+GH_PROJECT=	RediSearch
+
+CMAKE_ARGS=	-DGIT_DESCRIBE_VERSION:STRING=${PKGVERSION}
+
+PLIST_FILES=	lib/redisearch.so
+
+do-install:
+	${INSTALL_LIB} ${INSTALL_WRKSRC}/redisearch.so ${STAGEDIR}${PREFIX}/lib
+
+.include <bsd.port.mk>

Added: head/textproc/redisearch/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/redisearch/distinfo	Tue Feb 25 23:31:27 2020	(r527143)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1582247654
+SHA256 (RediSearch-RediSearch-v1.4.24_GH0.tar.gz) = 7b0ff9ddfde9e235098f323d2f8ff53d58df87e43f3ada95aa0af4568a3d6ddd
+SIZE (RediSearch-RediSearch-v1.4.24_GH0.tar.gz) = 3573486

Added: head/textproc/redisearch/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/redisearch/pkg-descr	Tue Feb 25 23:31:27 2020	(r527143)
@@ -0,0 +1,12 @@
+RediSearch is a source available Full-Text and Secondary Index
+engine over Redis, developed by Redis Labs.
+
+Redisearch implements a search engine on top of Redis, but
+unlike other Redis search libraries, it does not use internal
+data structures like sorted sets.
+
+This also enables more advanced features, like exact phrase
+matching and numeric filtering for text queries, that are not
+possible or efficient with traditional Redis search approaches.
+
+WWW: https://oss.redislabs.com/redisearch/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002252331.01PNVSTp051641>