From owner-svn-ports-all@freebsd.org Fri Mar 8 15:58:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4647150E89D; Fri, 8 Mar 2019 15:58:24 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5BB51810BF; Fri, 8 Mar 2019 15:58:24 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 34A042D606; Fri, 8 Mar 2019 15:58:24 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x28FwOe1063853; Fri, 8 Mar 2019 15:58:24 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x28FwN1D063852; Fri, 8 Mar 2019 15:58:23 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201903081558.x28FwN1D063852@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 8 Mar 2019 15:58:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r495052 - head/databases/pgpool-II-40 X-SVN-Group: ports-head X-SVN-Commit-Author: tz X-SVN-Commit-Paths: head/databases/pgpool-II-40 X-SVN-Commit-Revision: 495052 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5BB51810BF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.958,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2019 15:58:24 -0000 Author: tz Date: Fri Mar 8 15:58:23 2019 New Revision: 495052 URL: https://svnweb.freebsd.org/changeset/ports/495052 Log: databases/pgpool-II-40: Update from 4.0.2 to 4.0.3 Changelog: - Skip over "host=" when getting info from conninfo string. (Bo Peng) - Test: Fix old JDBC functions and typos in regression test 068.memqcache_bug. (Takuma Hoshiai) - Doc: Fix configuration change timing regarding memory_cache_enabled. (Tatsuo Ishii) - Fix online recovery failed due to client_idle_limit_in_recovery in certain cases. (bug 431) (Tatsuo Ishii) - Reduce memory usage when large data set is returned from backend. (bug 462) (Tatsuo Ishii) - Test: Fix syntax error in extended query test script. (Tatsuo Ishii) - Fix corner case bug when strip_quote() handle a empty query string. (bug 458) (Tatsuo Ishii) - Doc: Mention that schema qualifications cannot be used in white/black_function_list. (Tatsuo Ishii) - Fix typo about wd_priority in watchdog_setup. (Takuma Hoshiai) - Fixed segfault when wd_lifecheck_method = 'query'. (bug 455) (Muhammad Usama) - The fix was proposed by Muhammad Usama and some adjustments to the patch and testing is done by Yugo Nagata. - Fix Pgpool child segfault if failover occurs when trying to establish a connection. (Tatsuo Ishii) - Doc: fix typo in logdir description. (bug 453) (Tatsuo Ishii) - Fix PAM authentication failed. (Takuma Hoshiai) - Fix Pgpool-II hang if a client sends a extended query message such as close after sync message but before next simple query. (Tatsuo Ishii) - Fix Pgpool-II hang when idle_in_transaction_session_timeout = on. (bug 448) (Tatsuo Ishii) Changelog taken from: http://www.pgpool.net/docs/latest/en/html/release-4-0-3.html MFH: 2019Q1 Modified: head/databases/pgpool-II-40/Makefile head/databases/pgpool-II-40/distinfo Modified: head/databases/pgpool-II-40/Makefile ============================================================================== --- head/databases/pgpool-II-40/Makefile Fri Mar 8 15:56:26 2019 (r495051) +++ head/databases/pgpool-II-40/Makefile Fri Mar 8 15:58:23 2019 (r495052) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= pgpool-II -PORTVERSION= 4.0.2 -PORTREVISION= 3 +PORTVERSION= 4.0.3 CATEGORIES= databases MASTER_SITES= http://www.pgpool.net/mediawiki/images/ PKGNAMESUFFIX= 40 Modified: head/databases/pgpool-II-40/distinfo ============================================================================== --- head/databases/pgpool-II-40/distinfo Fri Mar 8 15:56:26 2019 (r495051) +++ head/databases/pgpool-II-40/distinfo Fri Mar 8 15:58:23 2019 (r495052) @@ -1,3 +1,3 @@ -TIMESTAMP = 1543230542 -SHA256 (pgpool-II-4.0.2.tar.gz) = a9324dc84e63961476cd32e74e66b6fdebc5ec593942f8710a688eb88e50dcc1 -SIZE (pgpool-II-4.0.2.tar.gz) = 3576212 +TIMESTAMP = 1551102601 +SHA256 (pgpool-II-4.0.3.tar.gz) = 9eb84d14352c4ab108357c9e0a442f28bdb63e1d209ad13326b83f309e5c475d +SIZE (pgpool-II-4.0.3.tar.gz) = 3715976