From owner-svn-ports-all@freebsd.org Fri Jun 30 21:08:48 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8833BD9A772; Fri, 30 Jun 2017 21:08:48 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 626177CDA2; Fri, 30 Jun 2017 21:08:48 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5UL8lw1018363; Fri, 30 Jun 2017 21:08:47 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5UL8lD5018358; Fri, 30 Jun 2017 21:08:47 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201706302108.v5UL8lD5018358@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 30 Jun 2017 21:08:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444782 - in head/databases: . timescaledb X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/databases: . timescaledb X-SVN-Commit-Revision: 444782 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2017 21:08:48 -0000 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 +# $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 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;