Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 May 2019 20:02:03 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r502910 - in head/databases: . postgresql-rum
Message-ID:  <201905282002.x4SK23Ws053024@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Tue May 28 20:02:03 2019
New Revision: 502910
URL: https://svnweb.freebsd.org/changeset/ports/502910

Log:
  The rum module provides access method to work with RUM index. It is
  based on the GIN access methods code.
  
  WWW: https://github.com/postgrespro/rum

Added:
  head/databases/postgresql-rum/
  head/databases/postgresql-rum/Makefile   (contents, props changed)
  head/databases/postgresql-rum/distinfo   (contents, props changed)
  head/databases/postgresql-rum/pkg-descr   (contents, props changed)
  head/databases/postgresql-rum/pkg-plist   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Tue May 28 20:01:03 2019	(r502909)
+++ head/databases/Makefile	Tue May 28 20:02:03 2019	(r502910)
@@ -682,6 +682,7 @@
     SUBDIR += postgresql-prefix
     SUBDIR += postgresql-relay
     SUBDIR += postgresql-repmgr
+    SUBDIR += postgresql-rum
     SUBDIR += postgresql-tds_fdw
     SUBDIR += postgresql-zhparser
     SUBDIR += postgresql10-client

Added: head/databases/postgresql-rum/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/postgresql-rum/Makefile	Tue May 28 20:02:03 2019	(r502910)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	rum
+PORTVERSION=	1.3.1
+PORTREVISION=	0
+CATEGORIES=	databases
+PKGNAMEPREFIX=	postgresql${PGSQL_VER:S/.//}-
+
+MAINTAINER=	feld@FreeBSD.org
+COMMENT=	Inverted index with additional information in posting lists
+
+LICENSE=	PostgreSQL
+
+USES=		gmake pgsql:9.6+
+
+LLD_UNSAFE=	yes
+USE_GITHUB=	yes
+GH_ACCOUNT=	postgrespro
+
+WANT_PGSQL=	server
+
+do-build:
+	cd ${WRKSRC} && ${MAKE_CMD} USE_PGXS=1
+
+do-install:
+	cd ${WRKSRC} && ${MAKE_CMD} USE_PGXS=1 DESTDIR=${STAGEDIR} install
+
+.include <bsd.port.mk>

Added: head/databases/postgresql-rum/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/postgresql-rum/distinfo	Tue May 28 20:02:03 2019	(r502910)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1559069682
+SHA256 (postgrespro-rum-1.3.1_GH0.tar.gz) = 2f0dbe101a4760856591b1ea69053fdd6b867a1d2906442fcfd5a18fe7179cbb
+SIZE (postgrespro-rum-1.3.1_GH0.tar.gz) = 313595

Added: head/databases/postgresql-rum/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/postgresql-rum/pkg-descr	Tue May 28 20:02:03 2019	(r502910)
@@ -0,0 +1,4 @@
+The rum module provides access method to work with RUM index. It is
+based on the GIN access methods code.
+
+WWW: https://github.com/postgrespro/rum

Added: head/databases/postgresql-rum/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/postgresql-rum/pkg-plist	Tue May 28 20:02:03 2019	(r502910)
@@ -0,0 +1,9 @@
+include/postgresql/server/rum.h
+include/postgresql/server/rumsort.h
+lib/postgresql/rum.so
+share/postgresql/extension/rum--1.0--1.1.sql
+share/postgresql/extension/rum--1.0.sql
+share/postgresql/extension/rum--1.1--1.2.sql
+share/postgresql/extension/rum--1.2--1.3.sql
+share/postgresql/extension/rum--1.3.sql
+share/postgresql/extension/rum.control



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