notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
non port: databases/pgpool/Makefile

Number of commits found: 46

Sunday, 15 Mar 2020
21:11 tz search for other commits by this committer
databases/pgpool: Update from 3.4.25 to 3.4.26 and deprecated the port

Enhancements

    * Import some of memory manager debug facilities from PostgreSQL. (Tatsuo
Ishii)

    * Use pg_get_expr() instead of pg_attrdef.adsrc to support for PostgreSQL
12. (Bo Peng)

    * Enhance shutdown script of pgpool_setup. (Tatsuo Ishii)

        * Make shutdownall to wait for completion of shutdown of Pgpool-II.

        * If environment variable CHECK_TIME_WAIT is set to true, use netstat
command to confirm usage of the TCP/IP port while executing shutdown script.

    * Deal pgpool_adm extension with PostgreSQL 12. (Tatsuo Ishii)

Bug fixes

    * Fix pgpool_setup to produce correct follow master command. (Tatsuo Ishii)

    * Fix query cache module so that it checks oid array's bound. (Tatsuo Ishii)

    * Fix off-by-one error in query cache module. (Tatsuo Ishii)

    * Fix segfault when samenet is specified in pool_hba.conf. (Tatsuo Ishii)

    * Fix to deal with backslashes according to the config of
standard_conforming_strings in native replication mode. (bug 467) (Bo Peng)

    * Fix memory leaks. (Tatsuo Ishii)

Changelog taken from:
https://www.pgpool.net/docs/latest/en/html/release-3-4-25.html

Also set DEPRECATED and EXPIRATION_DATE because the port reached its EOL at
2019-08-15. This will give possible user a short time period for an update and
also warn them.
Original commitRevision:528501 
Saturday, 31 Aug 2019
21:12 tz search for other commits by this committer
databases/pgpool: Update from 3.4.24 to 3.4.25

Changelog:

    Enhancements:
    - Import some of memory manager debug facilities from PostgreSQL. (Tatsuo
Ishii)
    - Use pg_get_expr() instead of pg_attrdef.adsrc to support for PostgreSQL
12. (Bo Peng)
    - Enhance shutdown script of pgpool_setup. (Tatsuo Ishii)
        - Make shutdownall to wait for completion of shutdown of Pgpool-II.
        - If environment variable CHECK_TIME_WAIT is set to true, use netstat
command to confirm usage of the TCP/IP port while executing shutdown script.
    - Deal pgpool_adm extension with PostgreSQL 12. (Tatsuo Ishii)

    Bug fixes:
    - Fix pgpool_setup to produce correct follow master command. (Tatsuo Ishii)
    - Fix query cache module so that it checks oid array's bound. (Tatsuo Ishii)
    - Fix off-by-one error in query cache module. (Tatsuo Ishii)
    - Fix segfault when samenet is specified in pool_hba.conf. (Tatsuo Ishii)
    - Fix to deal with backslashes according to the config of
standard_conforming_strings in native replication mode. (bug 467) (Bo Peng)
    - Fix memory leaks. (Tatsuo Ishii)

MFH:		2019Q3
Original commitRevision:510418 
Friday, 26 Jul 2019
20:46 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.

PR:		238330
Original commitRevision:507372 
Friday, 17 May 2019
08:30 tz search for other commits by this committer
databases/pgpool: Upgrade from 3.4.23 to 3.4.24

Changelog:

  Enhancements

    - Speed up failover when all of backends are down. (Tatsuo Ishii)
    - pgpool-recovery extension and pgpool_setup is now ready for the next major
release PostgreSQL 12. (Tatsuo Ishii)

  Bug fixes

    - Fix the wrong error message "ERROR: connection cache is full", when all
backend nodes are down. (bug 487) (Bo Peng)
    - Avoid exit/fork storm of pool_worker_child process. (Tatsuo Ishii)
    - Fix black_function_list's broken default value. (Tatsuo Ishii)
    - Fix "not enough space in buffer" error. (bug 499) (Tatsuo Ishii)
    - The error occurred while processing error message returned from backend
and the cause is that the query string in question is too big. Problem is, the
buffer is in fixed size (8192 bytes). Eliminate the fixed size buffer and use
palloced buffer instead. This also saves some memory copy work.
    - Fix DROP DATABASE failure. (Tatsuo Ishii)
    - Fix wrong variable in read_status_file() function. (bug 493) (Takuma
Hoshiai)
    - Fix compiler warnings. (Tatsuo Ishii)

Changelog taken from:
http://www.pgpool.net/docs/latest/en/html/release-3-4-24.html
Original commitRevision:501841 
Monday, 8 Apr 2019
07:05 tz search for other commits by this committer
databases/pgpool: Update from 3.4.22 to 3.4.23

Changelog:

Enhancements

    * Add new configuration option ssl_prefer_server_ciphers. (Muhammad Usama)

      Add the new setting ssl_prefer_server_ciphers to let users configure if
they want client's or server's cipher order to take preference.

      The default for this parameter is off, which prioritize the client's
cipher order as usual. However this is just for keeping backward compatibility,
and it is possible that a malicious client uses weak ciphers. For this reason we
recommend to set this parameter to on at all times.

    * Allow to set a client cipher list. (Tatsuo Ishii)

      For this purpose new parameter ssl_ciphers, which specifies the cipher
list to be accepted by Pgpool-II, is added. This is already implemented in
PostgreSQL and useful to enhance security when SSL is enabled.

Bug fixes

    * Fix unnecessary fsync() to pgpool_status file. (Tatsuo Ishii)

      Whenever new connections are created to PostgreSQL backend, fsync() was
issued to pgpool_status file, which could generate excessive I/O in certain
conditions. So reduce the chance of issuing fsync() so that it is issued only
when backend status is changed.

Changelog taken from:
http://www.pgpool.net/docs/latest/en/html/release-3-4-23.html

MFH:		2019Q2
Original commitRevision:498348 
Friday, 8 Mar 2019
15:51 tz search for other commits by this committer
databases/pgpool: Upgrade from 3.4.21 to 3.4.22

Changelog:
- Doc: Fix configuration change timing regarding memory_cache_enabled.
- Fix online recovery failed due to client_idle_limit_in_recovery in certain
cases. (bug 431)
- Fix corner case bug when strip_quote() handle a empty query string. (bug 458)
- Fix Pgpool child segfault if failover occurs when trying to establish a
connection.
- Fix Pgpool-II hang when idle_in_transaction_session_timeout = on.

MFH:		2019Q1
Original commitRevision:495048 
Wednesday, 12 Dec 2018
01:35 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.

PR:		231590
Original commitRevision:487272 
Tuesday, 27 Nov 2018
09:33 tz search for other commits by this committer
databases/pgpool: Upgrade from 3.4.20 to 3.4.21

Changelog: http://www.pgpool.net/docs/latest/en/html/release-3-4-21.html
Original commitRevision:485994 
Thursday, 22 Nov 2018
09:32 tobik search for other commits by this committer
databases/pgpool-II-* build fine with OpenSSL 1.1.1 too

http://beefy6.nyi.freebsd.org/data/120amd64-default/485373/logs/pgpool-3.4.20.log
http://beefy6.nyi.freebsd.org/data/120amd64-default/485373/logs/pgpool-II35-3.5.17.log
http://beefy6.nyi.freebsd.org/data/120amd64-default/485373/logs/pgpool-II36-3.6.13.log
http://beefy6.nyi.freebsd.org/data/120amd64-default/485373/logs/pgpool-II37-3.7.6.log
Original commitRevision:485587 
Thursday, 15 Nov 2018
21:46 joneum search for other commits by this committer
Update to 3.4.20

Changelog: http://www.pgpool.net/docs/latest/en/html/release-3-4-20.html

Approved by:	tz (implicit)
Sponsored by:	Netzkommune GmbH
Original commitRevision:485051 
Saturday, 10 Nov 2018
10:09 mat search for other commits by this committer
security/openssl-devel was removed, but there is a security/openssl111 now.
Original commitRevision:484599 
Tuesday, 31 Jul 2018
08:14 tz search for other commits by this committer
databases/pgpool: Update from 3.4.18 to 3.4.19

Changelog: http://www.pgpool.net/docs/latest/en/html/release-3-4-19.html
Original commitRevision:475975 
Wednesday, 27 Jun 2018
11:01 tz search for other commits by this committer
databases/pgpool: Update from 3.4.17 to 3.4.18

Changelog: http://www.pgpool.net/docs/latest/en/html/release-3-4-18.html
Original commitRevision:473429 
Wednesday, 18 Apr 2018
12:27 tz search for other commits by this committer
databases/pgpool: Update from 3.4.16 to 3.4.17

Changelog: http://www.pgpool.net/docs/latest/en/html/release-3-4-17.html
Original commitRevision:467708 
Wednesday, 21 Feb 2018
10:56 tz search for other commits by this committer
databases/pgpool: Upgrade from 3.4.11 to 3.4.16

Changelogs:
- http://www.pgpool.net/docs/latest/en/html/release-3-4-12.html
- http://www.pgpool.net/docs/latest/en/html/release-3-4-13.html
- http://www.pgpool.net/docs/latest/en/html/release-3-4-14.html
- http://www.pgpool.net/docs/latest/en/html/release-3-4-15.html
- http://www.pgpool.net/docs/latest/en/html/release-3-4-16.html
Original commitRevision:462489 
Friday, 16 Feb 2018
17:52 brnrd search for other commits by this committer
BROKEN_SSL: Add REASON for breakage

Reported by:	matwq
Original commitRevision:462050 
14:03 brnrd search for other commits by this committer
security/openssl-devel: Mark broken databases cat
Original commitRevision:462016 
Tuesday, 16 May 2017
08:58 tz search for other commits by this committer
databases/pgpool: Limit PORTSCOUT to 3.4.x

Future pgpool version of 3.5 and 3.6 will get an own port,
therefore limiting the PORTSCOUT check to actual branch

PR: 206839
Original commitRevision:440992 
Monday, 15 May 2017
13:48 tz search for other commits by this committer
databases/pgpool: Update from 3.4.9 to 3.4.11

Changelog: http://www.pgpool.net/docs/latest/en/html/release-3-4-10.html
Changelog: http://www.pgpool.net/docs/latest/en/html/release-3-4-11.html

PR: 206839
Original commitRevision:440927 
Wednesday, 15 Mar 2017
14:45 mat search for other commits by this committer
Remove all _USE=openssl occurrences.

Sponsored by:	Absolight
Original commitRevision:436248 
08:58 tz search for other commits by this committer
databases/pgpool: Add options DOCS and SSL

Reintegrate DOCS and SSL options already used in previous
versions in the ports-tree.

Submitted by: Adam Schumacher <adam.schumacher@flightaware.com>
Original commitRevision:436201 
Thursday, 2 Mar 2017
12:24 tz search for other commits by this committer
databases/pgpool: Update from 3.4.3 to 3.4.9

Changelog: http://www.pgpool.net/docs/pgpool-II-3.4.8/NEWS.txt
Changelog: http://www.pgpool.net/docs/latest/en/html/release-3-4-9.html

PR:           206839
Submitted by: Felix Hanley <felix@userspace.com.au>
Original commitRevision:435231 
Friday, 10 Jun 2016
09:08 tz search for other commits by this committer
Change MAINTAINER from ports@toco-domains.de to tz@FreeBSD.org

Approved by:	junovitch (mentor)
Original commitRevision:416662 
Sunday, 15 Nov 2015
03:02 amdmi3 search for other commits by this committer
- Update to 3.4.3
- Pass maintainership to submitter
- Update MASTERSITE and www
- Strip library

PR:		203769
Submitted by:	ports@toco-domains.de
Original commitRevision:401653 
Saturday, 6 Dec 2014
22:24 feld search for other commits by this committer
The pgpool license is actually an old minimal variant of the MIT license

Submitted by:	antoine
Original commitRevision:374161 
Friday, 5 Dec 2014
00:30 feld search for other commits by this committer
Update "BSD" licenses in databases category
Original commitRevision:373992 
Thursday, 3 Jul 2014
21:48 adamw search for other commits by this committer
Nuke NOPORTDOCS. While, here, correct a couple offenders who label examples
with PORTDOCS. And, fix a couple WITH_foo invocations.
Original commitRevision:360463 
Friday, 13 Jun 2014
15:46 vanilla search for other commits by this committer
Stagify.

Approved by:	portmgr@
Original commitRevision:357694 
Tuesday, 10 Jun 2014
07:39 olgeni search for other commits by this committer
Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories D-F.

CR:		D196
Approved by:	portmgr (bapt)
Original commitRevision:357277 
Monday, 26 May 2014
11:57 miwi search for other commits by this committer
- Convert gmake, bzip to USES

Approved by:	portmgr
Original commitRevision:355309 
Friday, 20 Sep 2013
16:13 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
Original commitRevision:327717 
Wednesday, 13 Oct 2010
11:49 kuriyama search for other commits by this committer
- Upgrade to 3.0 after repocopied to pgpool-II-23.

PR:             ports/150907
Submitted by:   Mikhail Tsatsenko <m.tsatsenko@mail.ru>
Original commit
Friday, 28 Mar 2008
00:31 pav search for other commits by this committer
- Fix plist

Pointy hat to:  nork
Original commit
Saturday, 22 Mar 2008
16:29 nork search for other commits by this committer
Fix MASTER_SITES.

Pointy hat to:  myself
Original commit
Monday, 17 Mar 2008
10:08 erwin search for other commits by this committer
Mark BROKEN: size mismatch.
Original commit
Wednesday, 5 Mar 2008
07:19 nork search for other commits by this committer
Update to 3.4.1.
Original commit
Monday, 16 Apr 2007
03:42 kuriyama search for other commits by this committer
- Add pgpool-II 1.0.2 after repocopy from databases/pgpool.
Original commit
Tuesday, 13 Feb 2007
08:54 nork search for other commits by this committer
Fix build on 4.x.

Obtained from:  PostgreSQL Japanese Mailing List
Original commit
Sunday, 11 Feb 2007
03:35 nork search for other commits by this committer
Update to 3.2.
Original commit
Thursday, 14 Dec 2006
22:19 miwi search for other commits by this committer
- Update to 3.1.2

PR:             ports/106668
Submitted by:   Robert Gogolok<gogo@cs.uni-sb.de>
Approved by:    maintainer
Original commit
Wednesday, 13 Dec 2006
12:56 linimon search for other commits by this committer
Reset whitekid@gmail.com after timeouts and no response to email.

Hat:            portmgr
Original commit
Monday, 7 Aug 2006
10:07 miwi search for other commits by this committer
- Update to 3.1.1

PR:             ports/100788
Submitted by:   Robert Gogolok <gogo(at)cs.uni-sb.de>
Approved by:    krion (mentor), maintainer timeout
Original commit
Friday, 14 Jul 2006
01:56 clsung search for other commits by this committer
- Update to version 3.1.

PR:             ports/100125
Submitted by:   Robert Gogolok <gogo_AT_cs dot uni-sb dot de>
Approved by:    maintainer (Choe, Cheng-Dae)
Original commit
Monday, 15 May 2006
09:14 lawrance search for other commits by this committer
Update to 3.0.1.
Run as 'nobody' rather than root.

PR:             ports/96637
Submitted by:   Vivek Khera <vivek@khera.org>
Approved by:    Choe, Cheng-Dae <whitekid@gmail.com> (maintainer)
Original commit
Friday, 14 Apr 2006
18:40 mnag search for other commits by this committer
- Add rc.d script.
- Bump PORTREVISION

PR:             94137
Submitted by:   Chris St Denis <chris___ctgameinfo.com>
Approved by:    maintainer timeout, 39 days
Original commit
Thursday, 3 Nov 2005
12:42 mnag search for other commits by this committer
pgpool is a connection pool server for PostgreSQL. pgpool runs between
PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can
connect to pgpool as if it were a standard PostgreSQL server.

pgpool caches the connection to PostgreSQL server to reduce the overhead to
establish the connection to it.

WWW:    http://pgpool.projects.postgresql.org/

PR:             87701
Submitted by:   Choe, Cheng-Dae <whitekid@gmail.com>
Original commit

Number of commits found: 46