summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfox <fox@pkgsrc.org>2019-08-14 14:19:38 +0000
committerfox <fox@pkgsrc.org>2019-08-14 14:19:38 +0000
commit0887952bc7201c6b4a9a23e264f4e9ad1a6d9da5 (patch)
tree65b6f9bc42fe9234b64440e9e67c8e43995b7fe1
parentfef68c94658a4222e37700d4b5af25b6138dce3c (diff)
downloadpkgsrc-0887952bc7201c6b4a9a23e264f4e9ad1a6d9da5.tar.gz
databases/pgbouncer: Update to 1.10.0
Changes since 1.9.0 2019-07-01 - PgBouncer 1.10.0 - "Afraid of the World" Features Add support for enabling and disabling TLS 1.3. (TLS 1.3 was already supported, depending on the OpenSSL library, but now the configuration settings to pick the TLS protocol versions also support it.) Fixes Fix TLS 1.3 support. This was broken with OpenSSL 1.1.1 and 1.1.1a (but not before or after). Fix a rare crash in SHOW FDS (https://github.com/pgbouncer/pgbouncer/issues/311/). Fix an issue that could lead to prolonged downtime if many cancel requests arrive (https://github.com/pgbouncer/pgbouncer/issues/329/). Avoid "unexpected response from login query" after a postgres reload (https://github.com/pgbouncer/pgbouncer/issues/220/). Fix idle_transaction_timeout calculation (https://github.com/pgbouncer/pgbouncer/issues/125/). The bug would lead to premature timeouts in specific situations. Cleanups Make various log and error messages more precise. Fix issues found by Coverity (none had a significant impact in practice). Improve and document all test scripts. Add additional SHOW commands to the documentation. Convert the documentation from rst to Markdown. Python scripts in the source tree are all compatible with Python 3 now.
-rw-r--r--databases/pgbouncer/Makefile4
-rw-r--r--databases/pgbouncer/PLIST6
-rw-r--r--databases/pgbouncer/distinfo12
-rw-r--r--databases/pgbouncer/patches/patch-Makefile11
4 files changed, 17 insertions, 16 deletions
diff --git a/databases/pgbouncer/Makefile b/databases/pgbouncer/Makefile
index a7f7c756493..83584eb6cf0 100644
--- a/databases/pgbouncer/Makefile
+++ b/databases/pgbouncer/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.13 2018/08/14 14:02:36 fhajny Exp $
+# $NetBSD: Makefile,v 1.14 2019/08/14 14:19:38 fox Exp $
#
-DISTNAME= pgbouncer-1.9.0
+DISTNAME= pgbouncer-1.10.0
CATEGORIES= databases
MASTER_SITES= http://pgbouncer.github.io/downloads/files/${PKGVERSION_NOREV}/
diff --git a/databases/pgbouncer/PLIST b/databases/pgbouncer/PLIST
index bf3e77b4f17..501c3cc6cb2 100644
--- a/databases/pgbouncer/PLIST
+++ b/databases/pgbouncer/PLIST
@@ -1,8 +1,8 @@
-@comment $NetBSD: PLIST,v 1.4 2016/03/15 11:29:35 fhajny Exp $
+@comment $NetBSD: PLIST,v 1.5 2019/08/14 14:19:38 fox Exp $
bin/pgbouncer
man/man1/pgbouncer.1
man/man5/pgbouncer.5
-share/doc/pgbouncer/NEWS.rst
-share/doc/pgbouncer/README.rst
+share/doc/pgbouncer/NEWS.md
+share/doc/pgbouncer/README.md
share/examples/pgbouncer/pgbouncer.ini
share/examples/pgbouncer/userlist.txt
diff --git a/databases/pgbouncer/distinfo b/databases/pgbouncer/distinfo
index 21bbd418280..e5e3ec4f9e4 100644
--- a/databases/pgbouncer/distinfo
+++ b/databases/pgbouncer/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.9 2018/08/14 14:02:36 fhajny Exp $
+$NetBSD: distinfo,v 1.10 2019/08/14 14:19:38 fox Exp $
-SHA1 (pgbouncer-1.9.0.tar.gz) = 284dd692437f4454e4f787832f4912d2eb219b25
-RMD160 (pgbouncer-1.9.0.tar.gz) = 20eb123a2aabf99153e47b9400e2eaaa2c612f46
-SHA512 (pgbouncer-1.9.0.tar.gz) = b127f4cb60ca5cdf339da76727918f0a3797a3e0a89f8ed6fdcaa80f3391d2c5bb51e19731915775210c0e5070dd611ee2e410c9a947624e45b5cf11aecdacf9
-Size (pgbouncer-1.9.0.tar.gz) = 469300 bytes
-SHA1 (patch-Makefile) = 1c76e84975111d9ce077e73fe888dfe466874e33
+SHA1 (pgbouncer-1.10.0.tar.gz) = 3a98af79ef660c7bc3fc6219405af0a75e2b138d
+RMD160 (pgbouncer-1.10.0.tar.gz) = 20f0d3504c460abe8568e91bc3a8597b975c92ff
+SHA512 (pgbouncer-1.10.0.tar.gz) = 8ec9f102b57ca5f92fb689588ec090056ac29f21825400ec67bca413fe076ad50e0b491e65c4cfebc488cc245eb3c88c36db2ee0ba1cb737f35404be0983dd1d
+Size (pgbouncer-1.10.0.tar.gz) = 480571 bytes
+SHA1 (patch-Makefile) = 91a59289d4fcd4b8258ed191f2deeb1e24853106
diff --git a/databases/pgbouncer/patches/patch-Makefile b/databases/pgbouncer/patches/patch-Makefile
index 79ea3a9f66b..7ec0a83311c 100644
--- a/databases/pgbouncer/patches/patch-Makefile
+++ b/databases/pgbouncer/patches/patch-Makefile
@@ -1,14 +1,15 @@
-$NetBSD: patch-Makefile,v 1.2 2016/03/15 11:29:35 fhajny Exp $
+$NetBSD: patch-Makefile,v 1.3 2019/08/14 14:19:38 fox Exp $
Install sample config files as... config files.
---- Makefile.orig 2016-02-26 08:56:32.000000000 +0000
+--- Makefile.orig 2019-07-01 04:00:00.000000000 -0400
+++ Makefile
-@@ -50,6 +50,8 @@ pgbouncer_EMBED_LIBUSUAL = 1
+@@ -51,7 +51,8 @@
+ pgbouncer_EMBED_LIBUSUAL = 1
# docs to install as-is
- dist_doc_DATA = README.rst NEWS.rst etc/pgbouncer.ini etc/userlist.txt
-+dist_doc_DATA = README.rst NEWS.rst
+-dist_doc_DATA = README.md NEWS.md etc/pgbouncer.ini etc/userlist.txt
++dist_doc_DATA = README.md NEWS.md
+dist_sysconf_DATA = etc/pgbouncer.ini etc/userlist.txt
DISTCLEANFILES = config.mak config.status lib/usual/config.h config.log