mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 19:06:28 -04:00
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>
This commit is contained in:
parent
5aeaeef95d
commit
10bed6ffcc
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=446726
4 changed files with 35 additions and 0 deletions
|
@ -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
|
||||
|
|
27
databases/pg_dirtyread/Makefile
Normal file
27
databases/pg_dirtyread/Makefile
Normal file
|
@ -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>
|
3
databases/pg_dirtyread/distinfo
Normal file
3
databases/pg_dirtyread/distinfo
Normal file
|
@ -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
|
4
databases/pg_dirtyread/pkg-descr
Normal file
4
databases/pg_dirtyread/pkg-descr
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue