Date: Tue, 31 Mar 2026 18:35:43 +0000 From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 63f2cfa2094f - main - databases/postgresql-cstore_fdw: Remove expired port Message-ID: <69cc13ff.1966c.61993c9c@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by rene: URL: https://cgit.FreeBSD.org/ports/commit/?id=63f2cfa2094fabc9af452b1c86b128fd1ff3724a commit 63f2cfa2094fabc9af452b1c86b128fd1ff3724a Author: Rene Ladan <rene@FreeBSD.org> AuthorDate: 2026-03-31 18:35:39 +0000 Commit: Rene Ladan <rene@FreeBSD.org> CommitDate: 2026-03-31 18:35:39 +0000 databases/postgresql-cstore_fdw: Remove expired port 2026-03-31 databases/postgresql-cstore_fdw: Columnar storage is now part of databases/pg_citus. Please migrate. --- MOVED | 1 + databases/Makefile | 1 - databases/postgresql-cstore_fdw/Makefile | 36 ---------------------- databases/postgresql-cstore_fdw/distinfo | 5 --- .../postgresql-cstore_fdw/files/pkg-message.in | 17 ---------- databases/postgresql-cstore_fdw/pkg-descr | 16 ---------- databases/postgresql-cstore_fdw/pkg-plist | 10 ------ 7 files changed, 1 insertion(+), 85 deletions(-) diff --git a/MOVED b/MOVED index 11a8c18cfa37..a1ae133b3465 100644 --- a/MOVED +++ b/MOVED @@ -5217,3 +5217,4 @@ x11/mrxvt||2026-03-31|Has expired: Upstream unmaintained and has known vulnerabi www/glassfish4|www/glassfish|2026-03-31|Has expired: Very old version reached EoL, use www/glassfish instead devel/qjson||2026-03-31|Has expired: Deprecated upstream, not used by anything multimedia/gstreamer1-vaapi||2026-03-31|Has expired: Project discontinued +databases/postgresql-cstore_fdw||2026-03-31|Has expired: Columnar storage is now part of databases/pg_citus. Please migrate diff --git a/databases/Makefile b/databases/Makefile index 6ef0c3a0548a..7d578893f086 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -655,7 +655,6 @@ SUBDIR += postgis34 SUBDIR += postgis35 SUBDIR += postgis36 - SUBDIR += postgresql-cstore_fdw SUBDIR += postgresql-idn SUBDIR += postgresql-jdbc SUBDIR += postgresql-libpgeasy diff --git a/databases/postgresql-cstore_fdw/Makefile b/databases/postgresql-cstore_fdw/Makefile deleted file mode 100644 index f00918684643..000000000000 --- a/databases/postgresql-cstore_fdw/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -PORTNAME= cstore_fdw -PORTVERSION= 1.7.0 -DISTVERSIONPREFIX= v -PORTREVISION= 1 -CATEGORIES= databases -PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- - -PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ -PATCHFILES+= 2b6bf67ca60faf5a3ebe914fad53257a634ae48a.patch:-p1 - -MAINTAINER= farrokhi@FreeBSD.org -COMMENT= Columnar store for analytics with PostgreSQL -WWW= https://github.com/citusdata/cstore_fdw - -LICENSE= APACHE20 -LICENSE_FILE= ${WRKSRC}/LICENSE - -LIB_DEPENDS= libprotobuf-c.so:devel/protobuf-c - -USES= gmake pgsql:11-13 - -SUB_FILES= pkg-message - -LLD_UNSAFE= yes -USE_GITHUB= yes -GH_ACCOUNT= citusdata - -WANT_PGSQL= server - -DEPRECATED= Columnar storage is now part of databases/pg_citus. Please migrate. -EXPIRATION_DATE=2026-03-31 - -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/cstore_fdw.so - -.include <bsd.port.mk> diff --git a/databases/postgresql-cstore_fdw/distinfo b/databases/postgresql-cstore_fdw/distinfo deleted file mode 100644 index 2e25673417c7..000000000000 --- a/databases/postgresql-cstore_fdw/distinfo +++ /dev/null @@ -1,5 +0,0 @@ -TIMESTAMP = 1633795109 -SHA256 (citusdata-cstore_fdw-v1.7.0_GH0.tar.gz) = bd8a06654b483d27b48d8196cf6baac0c7828b431b49ac097923ac0c54a1c38c -SIZE (citusdata-cstore_fdw-v1.7.0_GH0.tar.gz) = 93313 -SHA256 (2b6bf67ca60faf5a3ebe914fad53257a634ae48a.patch) = 5a396090cb99ae6af5774c65ed4e1d5e0f249b79e8d734624688fee174bd73d5 -SIZE (2b6bf67ca60faf5a3ebe914fad53257a634ae48a.patch) = 16786 diff --git a/databases/postgresql-cstore_fdw/files/pkg-message.in b/databases/postgresql-cstore_fdw/files/pkg-message.in deleted file mode 100644 index 34d6ed637142..000000000000 --- a/databases/postgresql-cstore_fdw/files/pkg-message.in +++ /dev/null @@ -1,17 +0,0 @@ -[ -{ type: upgrade - maximum_version: 1.6 - message: <<EOM -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 -EOM -} -] diff --git a/databases/postgresql-cstore_fdw/pkg-descr b/databases/postgresql-cstore_fdw/pkg-descr deleted file mode 100644 index 5d25f11c952b..000000000000 --- a/databases/postgresql-cstore_fdw/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -Cstore_fdw is a extension of PostgreSQL. This extension uses the Optimized Row -Columnar (ORC) format for its data layout. ORC improves upon the RCFile format -developed at Facebook, and brings the following benefits: - - Compression: Reduces in-memory and on-disk data size by 2-4x. Can be - extended to support different codecs. - - Column projections: Only reads column data relevant to the query. - Improves performance for I/O bound queries. - - Skip indexes: Stores min/max statistics for row groups, and uses them - to skip over unrelated rows. -Further, cstore_fdw used the Postgres foreign data wrapper APIs and type -representations with this extension. This brings: - - Support for 40+ Postgres data types. The user can also create new types - and use them. - - Statistics collection. PostgreSQL's query optimizer uses these stats to - evaluate different query plans and pick the best one. - - Simple setup. Create foreign table and copy data. Run SQL. diff --git a/databases/postgresql-cstore_fdw/pkg-plist b/databases/postgresql-cstore_fdw/pkg-plist deleted file mode 100644 index 7930bd3cbffc..000000000000 --- a/databases/postgresql-cstore_fdw/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -lib/postgresql/cstore_fdw.so -share/postgresql/extension/cstore_fdw--1.0--1.1.sql -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--1.6.sql -share/postgresql/extension/cstore_fdw--1.6--1.7.sql -share/postgresql/extension/cstore_fdw--1.7.sql -share/postgresql/extension/cstore_fdw.controlhome | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69cc13ff.1966c.61993c9c>
