diff --git a/databases/Makefile b/databases/Makefile index e0d37b514062..49a2d6a90a4a 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -567,6 +567,7 @@ SUBDIR += percona57-server SUBDIR += pg_activity SUBDIR += pg_citus + SUBDIR += pg_dirtyread SUBDIR += pg_qualstats SUBDIR += pg_reorg SUBDIR += pg_repack diff --git a/databases/pg_dirtyread/Makefile b/databases/pg_dirtyread/Makefile new file mode 100644 index 000000000000..fc610c86f002 --- /dev/null +++ b/databases/pg_dirtyread/Makefile @@ -0,0 +1,27 @@ +# Created by: Jov +# $FreeBSD$ + +PORTNAME= pg_dirtyread +PORTVERSION= 1.1 +CATEGORIES= databases +PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- + +MAINTAINER= amutu@amutu.com +COMMENT= Read dead but unvacuumed tuples from a PostgreSQL relation + +LICENSE= BSD3CLAUSE + +USES= gmake pgsql:9.2+ +USE_GITHUB= yes +GH_ACCOUNT= ChristophBerg + +WANT_PGSQL= server + +PLIST_FILES= lib/postgresql/pg_dirtyread.so \ + share/postgresql/extension/pg_dirtyread--1.0.sql \ + share/postgresql/extension/pg_dirtyread.control + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pg_dirtyread.so + +.include diff --git a/databases/pg_dirtyread/distinfo b/databases/pg_dirtyread/distinfo new file mode 100644 index 000000000000..5c4ca050e343 --- /dev/null +++ b/databases/pg_dirtyread/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1500809216 +SHA256 (ChristophBerg-pg_dirtyread-1.1_GH0.tar.gz) = 47ea47b76b4f231d7665f22216621276d1d3387953fd2456099caecdbf2cef1f +SIZE (ChristophBerg-pg_dirtyread-1.1_GH0.tar.gz) = 12020 diff --git a/databases/pg_dirtyread/pkg-descr b/databases/pg_dirtyread/pkg-descr new file mode 100644 index 000000000000..68be0f83c6f7 --- /dev/null +++ b/databases/pg_dirtyread/pkg-descr @@ -0,0 +1,4 @@ +The pg_dirtyread extension provides the ability to read dead but unvacuumed +rows from a relation. + +WWW: https://github.com/ChristophBerg/pg_dirtyread