Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Jul 2017 09:19:00 +0000 (UTC)
From:      Torsten Zuehlsdorff <tz@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r446726 - in head/databases: . pg_dirtyread
Message-ID:  <201707270919.v6R9J0KZ086573@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tz
Date: Thu Jul 27 09:19:00 2017
New Revision: 446726
URL: https://svnweb.freebsd.org/changeset/ports/446726

Log:
  New port: databases/pg_dirtyread
  
  The pg_dirtyread extension provides the ability to read dead but unvacuumed
  rows from a relation.
  
  WWW: https://github.com/ChristophBerg/pg_dirtyread
  
  PR:           220537
  Submitted by: Jov <amutu@amutu.com>

Added:
  head/databases/pg_dirtyread/
  head/databases/pg_dirtyread/Makefile   (contents, props changed)
  head/databases/pg_dirtyread/distinfo   (contents, props changed)
  head/databases/pg_dirtyread/pkg-descr   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Thu Jul 27 09:11:26 2017	(r446725)
+++ head/databases/Makefile	Thu Jul 27 09:19:00 2017	(r446726)
@@ -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

Added: head/databases/pg_dirtyread/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/pg_dirtyread/Makefile	Thu Jul 27 09:19:00 2017	(r446726)
@@ -0,0 +1,27 @@
+# Created by: Jov <amutu@amutu.com>
+# $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 <bsd.port.mk>

Added: head/databases/pg_dirtyread/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/pg_dirtyread/distinfo	Thu Jul 27 09:19:00 2017	(r446726)
@@ -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

Added: head/databases/pg_dirtyread/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/pg_dirtyread/pkg-descr	Thu Jul 27 09:19:00 2017	(r446726)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707270919.v6R9J0KZ086573>