svn commit: r529842 - in head/databases: . pgpool-II-41 pgpool-II-41/files

Torsten Zuehlsdorff tz at FreeBSD.org
Sun Mar 29 21:55:42 UTC 2020


Author: tz
Date: Sun Mar 29 21:48:12 2020
New Revision: 529842
URL: https://svnweb.freebsd.org/changeset/ports/529842

Log:
  New port: databases/pgpool-II-41
  
  Repocopy databases/pgpool-II-40 and modify it to introduce
  new pgpool version 4.1.x.
  
  Major enhancements in Pgpool-II 4.1 include:
  
      * Statement level load balancing.
      * Auto failback.
      * Enhance performance in number of areas.
          * Shared relation cache allows to reuse relation cache among sessions to reduce internal queries against PostgreSQL system catalogs.
          * Have separate SQL parser for DML statements to eliminate unnecessary parsing effort.
          * Load balancing control for specific queries.
      * Reduce Internal Queries against System Catalogs.
      * Import PostgreSQL 12 SQL parser.
  
  PR:		244646
  Submitted by:	Franko Ricci <franco.ricc at gmail.com>

Added:
  head/databases/pgpool-II-41/
     - copied from r529831, head/databases/pgpool-II-40/
Deleted:
  head/databases/pgpool-II-41/files/patch-src_auth_pool__hba.c
Modified:
  head/databases/Makefile
  head/databases/pgpool-II-41/Makefile
  head/databases/pgpool-II-41/distinfo
  head/databases/pgpool-II-41/pkg-plist

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Sun Mar 29 21:26:32 2020	(r529841)
+++ head/databases/Makefile	Sun Mar 29 21:48:12 2020	(r529842)
@@ -597,6 +597,7 @@
     SUBDIR += pgpool-II-36
     SUBDIR += pgpool-II-37
     SUBDIR += pgpool-II-40
+    SUBDIR += pgpool-II-41
     SUBDIR += pgreplay
     SUBDIR += pgroonga
     SUBDIR += pgrouting

Modified: head/databases/pgpool-II-41/Makefile
==============================================================================
--- head/databases/pgpool-II-40/Makefile	Sun Mar 29 20:12:28 2020	(r529831)
+++ head/databases/pgpool-II-41/Makefile	Sun Mar 29 21:48:12 2020	(r529842)
@@ -1,10 +1,10 @@
 # $FreeBSD$
 
 PORTNAME=	pgpool-II
-PORTVERSION=	4.0.8
+PORTVERSION=	4.1.1
 CATEGORIES=	databases
 MASTER_SITES=	http://www.pgpool.net/mediawiki/images/
-PKGNAMESUFFIX=	40
+PKGNAMESUFFIX=	41
 
 MAINTAINER=	tz at FreeBSD.org
 COMMENT=	Connection pool server for PostgreSQL
@@ -12,7 +12,7 @@ COMMENT=	Connection pool server for PostgreSQL
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-PORTSCOUT=	limit:^4.0.[0-9]*
+PORTSCOUT=	limit:^4.1.[0-9]*
 
 USES=		gmake libtool pgsql:9.6+
 GNU_CONFIGURE=	yes

Modified: head/databases/pgpool-II-41/distinfo
==============================================================================
--- head/databases/pgpool-II-40/distinfo	Sun Mar 29 20:12:28 2020	(r529831)
+++ head/databases/pgpool-II-41/distinfo	Sun Mar 29 21:48:12 2020	(r529842)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1584221322
-SHA256 (pgpool-II-4.0.8.tar.gz) = 6d3ade6f4af23dff1738354ac645adaeaa04c98b79591b9b734142eb18355842
-SIZE (pgpool-II-4.0.8.tar.gz) = 3832833
+TIMESTAMP = 1583510780
+SHA256 (pgpool-II-4.1.1.tar.gz) = b6e334984aeed36e1a882266e65963dd0f5145d19bc0b30019c0b566dce33b61
+SIZE (pgpool-II-4.1.1.tar.gz) = 4238410

Modified: head/databases/pgpool-II-41/pkg-plist
==============================================================================
--- head/databases/pgpool-II-40/pkg-plist	Sun Mar 29 20:12:28 2020	(r529831)
+++ head/databases/pgpool-II-41/pkg-plist	Sun Mar 29 21:48:12 2020	(r529842)
@@ -15,13 +15,19 @@ bin/pgpool
 bin/pgpool_setup
 bin/pgproto
 bin/watchdog_setup
+ at sample etc/failover.sh.sample
+ at sample etc/follow_master.sh.sample
 @sample etc/pcp.conf.sample
 @sample etc/pgpool.conf.sample
-etc/pgpool.conf.sample-logical
-etc/pgpool.conf.sample-master-slave
-etc/pgpool.conf.sample-replication
-etc/pgpool.conf.sample-stream
+ at sample etc/pgpool.conf.sample-logical
+ at sample etc/pgpool.conf.sample-master-slave
+ at sample etc/pgpool.conf.sample-replication
+ at sample etc/pgpool.conf.sample-stream
+ at sample etc/pgpool_remote_start.sample
 @sample etc/pool_hba.conf.sample
+etc/rc.d/pgpool
+etc/recovery_1st_stage.sample
+etc/recovery_2nd_stage.sample
 include/libpcp_ext.h
 include/pcp.h
 include/pool_process_reporting.h


More information about the svn-ports-all mailing list