diff options
author | Michael Zhilin <mizhka@FreeBSD.org> | 2021-10-24 06:59:31 +0000 |
---|---|---|
committer | Michael Zhilin <mizhka@FreeBSD.org> | 2021-10-24 14:00:31 +0000 |
commit | 644cbbab127d6ef8a4d2026f496aa03511771e6a (patch) | |
tree | 49b8f7288aa995141862dd579c610364d3741943 | |
parent | 73111d0acf1e4014404801599ab652f00082efcd (diff) |
databases/pgbouncer: update to 1.16.0
- Update to 1.16.0
- Remove an unneeded patch (merged upstream)
Submitted by: m.tsatsenko@gmail.com (maintainer)
-rw-r--r-- | databases/pgbouncer/Makefile | 3 | ||||
-rw-r--r-- | databases/pgbouncer/distinfo | 6 | ||||
-rw-r--r-- | databases/pgbouncer/files/patch-src_pooler.c | 25 |
3 files changed, 4 insertions, 30 deletions
diff --git a/databases/pgbouncer/Makefile b/databases/pgbouncer/Makefile index fbe2855b598e..430486806c35 100644 --- a/databases/pgbouncer/Makefile +++ b/databases/pgbouncer/Makefile @@ -1,8 +1,7 @@ # Created by: Sergey Skvortsov <skv@protey.ru> PORTNAME= pgbouncer -PORTVERSION= 1.14.0 -PORTREVISION= 1 +PORTVERSION= 1.16.0 CATEGORIES= databases MASTER_SITES= https://pgbouncer.github.io/downloads/files/${PORTVERSION}/ \ http://pgbouncer.github.io/downloads/files/${PORTVERSION}/ diff --git a/databases/pgbouncer/distinfo b/databases/pgbouncer/distinfo index b490dccd8afa..56326eeeb9e9 100644 --- a/databases/pgbouncer/distinfo +++ b/databases/pgbouncer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1592427794 -SHA256 (pgbouncer-1.14.0.tar.gz) = a0c13d10148f557e36ff7ed31793abb7a49e1f8b09aa2d4695d1c28fa101fee7 -SIZE (pgbouncer-1.14.0.tar.gz) = 578955 +TIMESTAMP = 1635022010 +SHA256 (pgbouncer-1.16.0.tar.gz) = a4a391618bb83caaee2a8cd9653974f4c1b98b95987d5cabbbeb801da6342652 +SIZE (pgbouncer-1.16.0.tar.gz) = 592136 diff --git a/databases/pgbouncer/files/patch-src_pooler.c b/databases/pgbouncer/files/patch-src_pooler.c deleted file mode 100644 index 6ea7b0c1dc0c..000000000000 --- a/databases/pgbouncer/files/patch-src_pooler.c +++ /dev/null @@ -1,25 +0,0 @@ ---- src/pooler.c.orig 2020-05-26 09:38:55 UTC -+++ src/pooler.c -@@ -127,16 +127,16 @@ static bool add_listen(int af, const struct sockaddr * - * unportable, so perhaps better to avoid it.) - */ - if (af != AF_UNIX && cf_so_reuseport) { --#if defined(SO_REUSEPORT) -+#if defined(SO_REUSEPORT_LB) - int val = 1; -- errpos = "setsockopt/SO_REUSEPORT"; -- res = setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(val)); -+ errpos = "setsockopt/SO_REUSEPORT_LB"; -+ res = setsockopt(sock, SOL_SOCKET, SO_REUSEPORT_LB, &val, sizeof(val)); - if (res < 0) - goto failed; --#elif defined(SO_REUSEPORT_LB) -+#elif defined(SO_REUSEPORT) - int val = 1; -- errpos = "setsockopt/SO_REUSEPORT_LB"; -- res = setsockopt(sock, SOL_SOCKET, SO_REUSEPORT_LB, &val, sizeof(val)); -+ errpos = "setsockopt/SO_REUSEPORT"; -+ res = setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(val)); - if (res < 0) - goto failed; - #else |