Update to 2.0.3
Add PG 9.6 compatibility Fix issues in shared memory estimation, which could prevent starting postgres or reduce the amount of possible locks (thanks to Jean-Sébastien BACQ for the report) Add hint of possible reasons pgss.max could not be retrieved, which could prevent starting postgres Make portlint happy
This commit is contained in:
@@ -3,15 +3,17 @@
|
||||
|
||||
PORTNAME= pg_stat_kcache
|
||||
DISTVERSIONPREFIX= REL
|
||||
DISTVERSION= 2_0_2
|
||||
DISTVERSION= 2_0_3
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= girgen@FreeBSD.org
|
||||
COMMENT= Gather statistics about PostgreSQL I/O and CPU usage
|
||||
|
||||
LICENSE= PostgreSQL
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= dalibo
|
||||
|
||||
MAINTAINER= girgen@FreeBSD.org
|
||||
COMMENT= Gather statistics about PostgreSQL I/O and CPU usage
|
||||
|
||||
USES= gmake pgsql:9.4+
|
||||
WANT_PGSQL= server contrib
|
||||
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1464768857
|
||||
SHA256 (dalibo-pg_stat_kcache-REL2_0_2_GH0.tar.gz) = 72b8850c7ede052bce2a51aa6a11b3ec1db2214dcea3911be0aa5324040154f1
|
||||
SIZE (dalibo-pg_stat_kcache-REL2_0_2_GH0.tar.gz) = 9731
|
||||
TIMESTAMP = 1475570856
|
||||
SHA256 (dalibo-pg_stat_kcache-REL2_0_3_GH0.tar.gz) = b1a5e66d58e98f5fbd6bf1b60c6105edc994df21b159590999bea6c60d6fc2f2
|
||||
SIZE (dalibo-pg_stat_kcache-REL2_0_3_GH0.tar.gz) = 10323
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
--- Makefile.orig 2016-01-21 22:44:44.214163699 +0100
|
||||
+++ Makefile 2016-01-21 22:44:51.788162213 +0100
|
||||
@@ -3,7 +3,7 @@
|
||||
--- Makefile.orig 2015-03-17 16:28:17 UTC
|
||||
+++ Makefile
|
||||
@@ -3,7 +3,7 @@ EXTVERSION = $(shell grep default_vers
|
||||
TESTS = $(wildcard test/sql/*.sql)
|
||||
REGRESS = $(patsubst test/sql/%.sql,%,$(TESTS))
|
||||
REGRESS_OPTS = --inputdir=test
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Gathers statistics about real reads and writes done by the filesystem layer. It
|
||||
is provided in the form of an extension for PostgreSQL >= 9.4.
|
||||
|
||||
WWW: https://github.com/dalibo/pg_stat_kcache
|
||||
WWW: https://github.com/dalibo/pg_stat_kcache
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
To activate pg_stat_kcache on your PostgreSQL server, add 'pg_stat_kcache' to
|
||||
shared_preload_libraries in ~pgsql/data/postgresql.conf. For every database,
|
||||
shared_preload_libraries in $PGDATA/postgresql.conf. For every database,
|
||||
run
|
||||
CREATE EXTENSION IF NOT EXISTS pg_stat_kcache
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
lib/postgresql/pg_stat_kcache.so
|
||||
share/doc/postgresql/extension/pg_stat_kcache-README.rst
|
||||
share/postgresql/extension/pg_stat_kcache--2.0.2--2.0.3.sql
|
||||
share/postgresql/extension/pg_stat_kcache--2.0.1--2.0.2.sql
|
||||
share/postgresql/extension/pg_stat_kcache--2.0.2.sql
|
||||
share/postgresql/extension/pg_stat_kcache--2.0.3.sql
|
||||
share/postgresql/extension/pg_stat_kcache.control
|
||||
|
||||
Reference in New Issue
Block a user