Gentoo Archives: gentoo-commits

From: "罗百科" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/pgbouncer/
Date: Fri, 19 Aug 2022 13:33:43
Message-Id: 1660916016.731dfbf219909ae2547e80a9bf95c1e94964308e.patrick@gentoo
1 commit: 731dfbf219909ae2547e80a9bf95c1e94964308e
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 19 13:32:32 2022 +0000
4 Commit: 罗百科 <patrick <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 19 13:33:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=731dfbf2
7
8 dev-db/pgbouncer: Add 1.17.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
12
13 dev-db/pgbouncer/Manifest | 1 +
14 dev-db/pgbouncer/pgbouncer-1.17.0.ebuild | 81 ++++++++++++++++++++++++++++++++
15 2 files changed, 82 insertions(+)
16
17 diff --git a/dev-db/pgbouncer/Manifest b/dev-db/pgbouncer/Manifest
18 index 5ee6658cca72..3e2adb57c8d4 100644
19 --- a/dev-db/pgbouncer/Manifest
20 +++ b/dev-db/pgbouncer/Manifest
21 @@ -1,3 +1,4 @@
22 DIST pgbouncer-1.15.0.tar.gz 588042 BLAKE2B 3dac09303e1c86126dd9cb44823c6f3fca4195e3155b360719c736c6e1327cc10d05e7f1e45c08d14c1dd0cb5c074b32263eee3be9e6350db9a8c5cbdfe61aa1 SHA512 5f78018ab80ab8d81f20ef3df1314ffc9557f1c6469d485d11ac822f596e3d4b554743fd9e9fe19b008a8aaf93bcf3673b42a8fb82bbd9611bd735cd2cbb98c6
23 DIST pgbouncer-1.16.0.tar.gz 592136 BLAKE2B 752d5cfa18dacfdb72e9e9f12d5a1ac5346649e3a0c49ef530dd29ca16039949af0993d54080a7cf558c6eb6a919254c1dc4a36ab22f38992e790469ecd973bf SHA512 3b6f23052ca3b8af40a618da6bed2577b92ffe27b627f8980cda2d645991434bf298f720c1d423a272961c9f3f52a9d1b28154ed7f355d539f71dc68c028b617
24 DIST pgbouncer-1.16.1.tar.gz 591450 BLAKE2B 137193ad614586d708598fd7003af4dee69f03f88a7235ba4074b63d57ffc3ee1c41fbccb49c5df7c23a2272b33810f8c2a9084d98e2e695a3b5f5ec317e0227 SHA512 9ecb7c7ae136d85e3da434094909df3a6ff06ce8586a1848c0c00914d87a877aecbb26ea30ad8230062160f3177621cc16deb4a490e9a2a649c8032dacb86341
25 +DIST pgbouncer-1.17.0.tar.gz 598294 BLAKE2B 697411c612b4d53c779c3170692e49afd250c28a1674a835403aa6e0ee27f1e52627b97d0ed478868f8658be7ce2323fdfd1604e5a00d739f3152c55332479b2 SHA512 5913ce542f0f694f114db8a2f339e536fb2b5887efb160b7ce3c708ae3d638bee95943104eafb9fbc4fc225649bd5625da2ccf1b56489afe33ebf8aacac48863
26
27 diff --git a/dev-db/pgbouncer/pgbouncer-1.17.0.ebuild b/dev-db/pgbouncer/pgbouncer-1.17.0.ebuild
28 new file mode 100644
29 index 000000000000..3103f9c999c7
30 --- /dev/null
31 +++ b/dev-db/pgbouncer/pgbouncer-1.17.0.ebuild
32 @@ -0,0 +1,81 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit systemd
39 +
40 +DESCRIPTION="Lightweight connection pooler for PostgreSQL"
41 +HOMEPAGE="https://www.pgbouncer.org/"
42 +SRC_URI="https://www.pgbouncer.org/downloads/files/${PV}/pgbouncer-${PV}.tar.gz"
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="+c-ares debug doc pam ssl systemd udns"
47 +
48 +# At-most-one-of, one can be enabled but not both
49 +REQUIRED_USE="?? ( c-ares udns )"
50 +
51 +RDEPEND="
52 + >=dev-libs/libevent-2.0:=
53 + >=sys-libs/glibc-2.10
54 + acct-user/pgbouncer
55 + c-ares? ( >=net-dns/c-ares-1.10 )
56 + ssl? ( >=dev-libs/openssl-1.0.1:=[-bindist(-)] )
57 + systemd? ( sys-apps/systemd )
58 + udns? ( >=net-libs/udns-0.1 )
59 +"
60 +
61 +DEPEND="${RDEPEND}"
62 +
63 +# Tests require a local database server, wants to fiddle with iptables,
64 +# and doesn't support overriding.
65 +RESTRICT="test"
66 +
67 +src_prepare() {
68 + eapply "${FILESDIR}"/pgbouncer-1.12-dirs.patch
69 +
70 + default
71 +}
72 +
73 +src_configure() {
74 + # --enable-debug is only used to disable stripping
75 + econf \
76 + --docdir=/usr/share/doc/${PF} \
77 + --enable-debug \
78 + $(use_with c-ares cares) \
79 + $(use_enable debug cassert) \
80 + $(use_with pam) \
81 + $(use_with ssl openssl) \
82 + $(use_with systemd) \
83 + $(use_with udns)
84 +}
85 +
86 +src_install() {
87 + emake DESTDIR="${D}" install
88 +
89 + dodoc AUTHORS
90 + use doc && dodoc doc/*.md
91 +
92 + newconfd "${FILESDIR}/${PN}.confd-r1" "${PN}"
93 + newinitd "${FILESDIR}/${PN}.initd-r2" "${PN}"
94 +
95 + insinto /etc
96 + doins etc/pgbouncer.ini
97 +
98 + insinto /etc/logrotate.d
99 + newins "${FILESDIR}/logrotate" pgbouncer
100 +}
101 +
102 +pkg_postinst() {
103 + if [[ -z ${REPLACING_VERSIONS} ]] ; then
104 + einfo "Please read the config.txt for Configuration Directives"
105 + einfo
106 + einfo "For Administration Commands, see:"
107 + einfo " man pgbouncer"
108 + einfo
109 + einfo "By default, PgBouncer does not have access to any database."
110 + einfo "GRANT the permissions needed for your application and make sure that it"
111 + einfo "exists in PgBouncer's auth_file."
112 + fi
113 +}