From owner-svn-ports-all@freebsd.org Sun Jul 23 14:47:34 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 BBDFDD7FE5F; Sun, 23 Jul 2017 14:47:34 +0000 (UTC) (envelope-from dbaio@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 9621F63B55; Sun, 23 Jul 2017 14:47:34 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6NElXID050825; Sun, 23 Jul 2017 14:47:33 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6NElX99050821; Sun, 23 Jul 2017 14:47:33 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201707231447.v6NElX99050821@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sun, 23 Jul 2017 14:47:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446487 - in head/databases/postgresql-cstore_fdw: . files X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/databases/postgresql-cstore_fdw: . files X-SVN-Commit-Revision: 446487 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: Sun, 23 Jul 2017 14:47:34 -0000 Author: dbaio Date: Sun Jul 23 14:47:33 2017 New Revision: 446487 URL: https://svnweb.freebsd.org/changeset/ports/446487 Log: databases/postgresql-cstore_fdw: Update to 1.6.0 - STRIP cstore_fdw.so [1] - Update LICENSE - Add a message about the additional steps for users that are upgrading PR: 220922 [1] Submitted by: amutu@amutu.com (maintainer) [1] Added: head/databases/postgresql-cstore_fdw/files/ head/databases/postgresql-cstore_fdw/files/pkg-message.in (contents, props changed) Modified: head/databases/postgresql-cstore_fdw/Makefile head/databases/postgresql-cstore_fdw/distinfo head/databases/postgresql-cstore_fdw/pkg-plist Modified: head/databases/postgresql-cstore_fdw/Makefile ============================================================================== --- head/databases/postgresql-cstore_fdw/Makefile Sun Jul 23 14:41:38 2017 (r446486) +++ head/databases/postgresql-cstore_fdw/Makefile Sun Jul 23 14:47:33 2017 (r446487) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cstore_fdw -PORTVERSION= 1.5.1 +PORTVERSION= 1.6.0 DISTVERSIONPREFIX= v CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- @@ -10,14 +10,20 @@ PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- MAINTAINER= amutu@amutu.com COMMENT= Columnar store for analytics with PostgreSQL -LICENSE= PostgreSQL +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libprotobuf-c.so:devel/protobuf-c +SUB_FILES= pkg-message + USES= gmake pgsql:9.3+ USE_GITHUB= yes GH_ACCOUNT= citusdata WANT_PGSQL= server + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/cstore_fdw.so .include Modified: head/databases/postgresql-cstore_fdw/distinfo ============================================================================== --- head/databases/postgresql-cstore_fdw/distinfo Sun Jul 23 14:41:38 2017 (r446486) +++ head/databases/postgresql-cstore_fdw/distinfo Sun Jul 23 14:47:33 2017 (r446487) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496052817 -SHA256 (citusdata-cstore_fdw-v1.5.1_GH0.tar.gz) = dd1b6884ab9b21a6a90461df53d1ab7336fec4c4ff3073ee0a916b0bcbb5a44c -SIZE (citusdata-cstore_fdw-v1.5.1_GH0.tar.gz) = 87684 +TIMESTAMP = 1500735106 +SHA256 (citusdata-cstore_fdw-v1.6.0_GH0.tar.gz) = e95a3ada47b2a0f72f8fb5906c2aa6e0e1d7c4933e4d435943234f85715b48fd +SIZE (citusdata-cstore_fdw-v1.6.0_GH0.tar.gz) = 90853 Added: head/databases/postgresql-cstore_fdw/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/postgresql-cstore_fdw/files/pkg-message.in Sun Jul 23 14:47:33 2017 (r446487) @@ -0,0 +1,14 @@ +**************************************************************************** + +If you are upgrading cstore_fdw from a version prior to 1.6, you need +to execute the following steps: + + - Restart the PostgreSQL server; + + - Run ALTER EXTENSION cstore_fdw UPDATE; + +Please, visit the following URL for more information: + +https://github.com/citusdata/cstore_fdw/blob/master/README.md + +*************************************************************************** Modified: head/databases/postgresql-cstore_fdw/pkg-plist ============================================================================== --- head/databases/postgresql-cstore_fdw/pkg-plist Sun Jul 23 14:41:38 2017 (r446486) +++ head/databases/postgresql-cstore_fdw/pkg-plist Sun Jul 23 14:47:33 2017 (r446487) @@ -4,5 +4,6 @@ share/postgresql/extension/cstore_fdw--1.1--1.2.sql share/postgresql/extension/cstore_fdw--1.2--1.3.sql share/postgresql/extension/cstore_fdw--1.3--1.4.sql share/postgresql/extension/cstore_fdw--1.4--1.5.sql -share/postgresql/extension/cstore_fdw--1.5.sql +share/postgresql/extension/cstore_fdw--1.5--1.6.sql +share/postgresql/extension/cstore_fdw--1.6.sql share/postgresql/extension/cstore_fdw.control