Date: Fri, 30 Jun 2017 21:08:47 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444782 - in head/databases: . timescaledb Message-ID: <201706302108.v5UL8lD5018358@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Fri Jun 30 21:08:46 2017 New Revision: 444782 URL: https://svnweb.freebsd.org/changeset/ports/444782 Log: databases/timescaledb: create port An open-source time-series database optimized for fast ingest and complex queries built on PostgreSQL. WWW: http://www.timescale.com/ PR: 220347 Submitted by: kbowling Added: head/databases/timescaledb/ head/databases/timescaledb/Makefile (contents, props changed) head/databases/timescaledb/distinfo (contents, props changed) head/databases/timescaledb/pkg-descr (contents, props changed) head/databases/timescaledb/pkg-message (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Fri Jun 30 20:58:39 2017 (r444781) +++ head/databases/Makefile Fri Jun 30 21:08:46 2017 (r444782) @@ -994,6 +994,7 @@ SUBDIR += tdb SUBDIR += tdbc SUBDIR += tile38 + SUBDIR += timescaledb SUBDIR += tinycdb SUBDIR += tokyocabinet SUBDIR += tokyotyrant Added: head/databases/timescaledb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/timescaledb/Makefile Fri Jun 30 21:08:46 2017 (r444782) @@ -0,0 +1,28 @@ +# Created by: Kevin Bowling <kbowling@freebsd.org> +# $FreeBSD$ + +PORTNAME= timescaledb +PORTVERSION= 0.1.0 +CATEGORIES= databases + +MAINTAINER= kbowling@FreeBSD.org +COMMENT= Time-series database built on PostgreSQL + +LICENSE= APACHE20 + +USE_GITHUB= YES +GH_ACCOUNT= timescale + +MAKE_ARGS= PG_CONFIG=${LOCALBASE}/bin/pg_config USE_PGXS=1 \ + install_bin=/usr/bin/install +USE_LDCONFIG= yes +USES= gmake pgsql:9.6 + +PLIST_FILES= lib/postgresql/timescaledb.so \ + share/postgresql/extension/timescaledb--0.1.0.sql \ + share/postgresql/extension/timescaledb.control + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/timescaledb.so + +.include <bsd.port.mk> Added: head/databases/timescaledb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/timescaledb/distinfo Fri Jun 30 21:08:46 2017 (r444782) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498714123 +SHA256 (timescale-timescaledb-0.1.0_GH0.tar.gz) = 32ae4548ccbc1baae675c1a20f07495c772686ed3413e28d589250962ba71186 +SIZE (timescale-timescaledb-0.1.0_GH0.tar.gz) = 112651 Added: head/databases/timescaledb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/timescaledb/pkg-descr Fri Jun 30 21:08:46 2017 (r444782) @@ -0,0 +1,4 @@ +An open-source time-series database optimized for fast ingest and complex +queries built on PostgreSQL. + +WWW: http://www.timescale.com/ Added: head/databases/timescaledb/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/timescaledb/pkg-message Fri Jun 30 21:08:46 2017 (r444782) @@ -0,0 +1,4 @@ +To activate timescaledb on your PostgreSQL server, add 'timescaledb' to +shared_preload_libraries in $PGDATA/postgresql.conf. For every database, +run + CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706302108.v5UL8lD5018358>