From: "罗百科" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/pgbouncer/
Date: Tue, 17 Oct 2023 07:08:07 +0000 (UTC) [thread overview]
Message-ID: <1697526476.13275da516715060534ab7c374cf51981fa6574f.patrick@gentoo> (raw)
commit: 13275da516715060534ab7c374cf51981fa6574f
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 17 07:07:44 2023 +0000
Commit: 罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Tue Oct 17 07:07:56 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13275da5
dev-db/pgbouncer: add 1.21.0
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
dev-db/pgbouncer/Manifest | 1 +
dev-db/pgbouncer/pgbouncer-1.21.0.ebuild | 73 ++++++++++++++++++++++++++++++++
2 files changed, 74 insertions(+)
diff --git a/dev-db/pgbouncer/Manifest b/dev-db/pgbouncer/Manifest
index bf8eb1a45559..c40336931939 100644
--- a/dev-db/pgbouncer/Manifest
+++ b/dev-db/pgbouncer/Manifest
@@ -4,3 +4,4 @@ DIST pgbouncer-1.18.0.tar.gz 600825 BLAKE2B 5c701d6534b9127cb8aef4e47c956644e657
DIST pgbouncer-1.19.1.tar.gz 623569 BLAKE2B b62d19e097d4fb1bccda315c9a67876aecaa8647ab092cc0157591fe64644c2c84b2785efab08ac338429e3c7d2cdd2bbff20404e71d67a9b1b5695367c2586e SHA512 1f1f56f778cf1ad7bd6a9809b54443d570eb04c2d5fe416d3bc9aa2ee8e4b3404753a15d9096c88c3a86dee534aff0268d460f862326694097ae67c83f08a589
DIST pgbouncer-1.20.0.tar.gz 638020 BLAKE2B 1aa253b4f211e70e882e9b7789bfcdee3436b56d88d0448a122a6975deb379ff6034f563f3ec87997a3f8c2f0e6c25a09916989d486542356a5a5d41ef6e2039 SHA512 6386f80bb8dcdf6e9882f94dde1c5ff4b58cd6eb877233952e483d5fa765072588f12dfb39eab5989dee54eaa595db541042654ad47c1ea4b754304ecc69f3dd
DIST pgbouncer-1.20.1.tar.gz 638844 BLAKE2B 9b71b72b9baf3ce49d4b9c6597581d20a2666b5450d89bc716a4df6df0c8a8aaf92735a76033eccf358412934a3af92e1a8ed7e4ca0e863441f2d6bf43eefdc7 SHA512 7669005ac1d46d1cb5b42c853fc0fb5e495c8583c206658bf6c59f797d04eb9170a3d467a48863708ee69034ff71ac6fbbca752b239de644ef6225d46fb98e76
+DIST pgbouncer-1.21.0.tar.gz 668211 BLAKE2B 36dd43d301d1837876806688bc87febb6ae4fd40014e7e7301978026a4866b736c2c174d3b1e19a4e7bf5f8ca85025d2a0cd5711f2e4fa95e455f59ed1dbe381 SHA512 881701deae508e8e664402c0da533b25027259443551cda2974867453ad033ec5cfe8027ca3dac96a5134c57faff385c3c1e5711539e1acd6815761c9e3caee8
diff --git a/dev-db/pgbouncer/pgbouncer-1.21.0.ebuild b/dev-db/pgbouncer/pgbouncer-1.21.0.ebuild
new file mode 100644
index 000000000000..7c1d9e9a01ad
--- /dev/null
+++ b/dev-db/pgbouncer/pgbouncer-1.21.0.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Lightweight connection pooler for PostgreSQL"
+HOMEPAGE="https://www.pgbouncer.org/"
+SRC_URI="https://www.pgbouncer.org/downloads/files/${PV}/pgbouncer-${PV}.tar.gz"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+c-ares debug doc pam ssl systemd"
+
+RDEPEND="
+ >=dev-libs/libevent-2.0:=
+ acct-user/pgbouncer
+ c-ares? ( >=net-dns/c-ares-1.10 )
+ ssl? ( >=dev-libs/openssl-1.0.1:=[-bindist(-)] )
+ systemd? ( sys-apps/systemd )
+"
+
+DEPEND="${RDEPEND}"
+
+# Tests require a local database server, wants to fiddle with iptables,
+# and doesn't support overriding.
+RESTRICT="test"
+
+src_prepare() {
+ eapply "${FILESDIR}"/pgbouncer-1.12-dirs.patch
+
+ default
+}
+
+src_configure() {
+ # --enable-debug is only used to disable stripping
+ econf \
+ --docdir=/usr/share/doc/${PF} \
+ --enable-debug \
+ $(use_with c-ares cares) \
+ $(use_enable debug cassert) \
+ $(use_with pam) \
+ $(use_with ssl openssl) \
+ $(use_with systemd)
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+
+ dodoc AUTHORS
+ use doc && dodoc doc/*.md
+
+ newconfd "${FILESDIR}/${PN}.confd-r1" "${PN}"
+ newinitd "${FILESDIR}/${PN}.initd-r2" "${PN}"
+
+ insinto /etc
+ doins etc/pgbouncer.ini
+
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}/logrotate" pgbouncer
+}
+
+pkg_postinst() {
+ if [[ -z ${REPLACING_VERSIONS} ]] ; then
+ einfo "Please read the config.txt for Configuration Directives"
+ einfo
+ einfo "For Administration Commands, see:"
+ einfo " man pgbouncer"
+ einfo
+ einfo "By default, PgBouncer does not have access to any database."
+ einfo "GRANT the permissions needed for your application and make sure that it"
+ einfo "exists in PgBouncer's auth_file."
+ fi
+}
next reply other threads:[~2023-10-17 7:08 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-17 7:08 罗百科 [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-11 16:10 [gentoo-commits] repo/gentoo:master commit in: dev-db/pgbouncer/ Patrick Lauer
2025-01-11 16:10 Patrick Lauer
2025-01-11 12:22 Sam James
2025-01-11 12:22 Sam James
2025-01-11 9:57 Patrick Lauer
2025-01-11 9:56 Patrick Lauer
2024-10-17 15:28 Jakov Smolić
2024-10-17 15:28 Jakov Smolić
2024-10-17 11:38 Patrick Lauer
2024-04-07 17:00 Patrick Lauer
2024-04-07 14:58 Patrick Lauer
2024-02-16 6:47 Patrick Lauer
2024-02-16 6:47 Patrick Lauer
2023-10-05 6:57 罗百科
2023-09-20 12:35 罗百科
2023-07-22 16:34 罗百科
2023-04-17 9:10 罗百科
2023-04-17 9:10 罗百科
2022-08-19 13:33 罗百科
2022-08-19 13:33 罗百科
2022-08-16 20:22 Sam James
2022-08-16 20:22 Sam James
2022-02-13 7:02 罗百科
2021-11-10 7:04 Agostino Sarubbo
2021-11-09 21:34 Sam James
2021-11-09 15:15 罗百科
2021-10-07 14:23 罗百科
2021-06-03 19:15 Sam James
2020-12-22 17:08 Thomas Deutschmann
2020-12-21 19:45 Sam James
2020-11-22 2:31 Aaron W. Swenson
2020-06-18 14:40 罗百科
2019-08-19 11:37 Agostino Sarubbo
2019-08-18 21:51 Agostino Sarubbo
2019-07-04 12:01 Aaron W. Swenson
2019-01-07 17:00 Lars Wendler
2018-10-02 21:03 Mikle Kolyada
2018-10-01 21:47 Thomas Deutschmann
2018-01-23 16:41 Agostino Sarubbo
2018-01-21 20:30 Thomas Deutschmann
2017-10-29 23:52 Jonas Stein
2017-01-09 13:26 Thomas Deutschmann
2016-11-29 11:23 Agostino Sarubbo
2016-11-29 11:22 Agostino Sarubbo
2016-02-27 22:56 Patrick Lauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1697526476.13275da516715060534ab7c374cf51981fa6574f.patrick@gentoo \
--to=patrick@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox