diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2011-11-16 04:17:37 +0000 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2011-11-16 04:17:37 +0000 |
commit | 8fd93d90bd598bb4ca523330097d5f0fbd7333e4 (patch) | |
tree | e5eaf67a6054a3439251b7578838c6920037d2ac /dev-db/pgbouncer | |
parent | New snapshot (diff) | |
download | gentoo-2-8fd93d90bd598bb4ca523330097d5f0fbd7333e4.tar.gz gentoo-2-8fd93d90bd598bb4ca523330097d5f0fbd7333e4.tar.bz2 gentoo-2-8fd93d90bd598bb4ca523330097d5f0fbd7333e4.zip |
Initial commit. Ebuild written by Johan Bergström <bugs@bergstroem.nu>. Fixes bug 243232.
(Portage version: 2.1.10.11/cvs/Linux i686)
Diffstat (limited to 'dev-db/pgbouncer')
-rw-r--r-- | dev-db/pgbouncer/ChangeLog | 11 | ||||
-rw-r--r-- | dev-db/pgbouncer/files/pgbouncer.initd | 37 | ||||
-rw-r--r-- | dev-db/pgbouncer/metadata.xml | 14 | ||||
-rw-r--r-- | dev-db/pgbouncer/pgbouncer-1.4.2.ebuild | 71 |
4 files changed, 133 insertions, 0 deletions
diff --git a/dev-db/pgbouncer/ChangeLog b/dev-db/pgbouncer/ChangeLog new file mode 100644 index 000000000000..6291bd0f0c20 --- /dev/null +++ b/dev-db/pgbouncer/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-db/pgbouncer +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/pgbouncer/ChangeLog,v 1.1 2011/11/16 04:17:36 titanofold Exp $ + +*pgbouncer-1.4.2 (16 Nov 2011) + + 16 Nov 2011; Aaron W. Swenson <titanofold@gentoo.org> + +pgbouncer-1.4.2.ebuild, +files/pgbouncer.initd, +metadata.xml: + Initial commit. Ebuild written by Johan Bergström <bugs@bergstroem.nu>. + Fixes bug 243232. + diff --git a/dev-db/pgbouncer/files/pgbouncer.initd b/dev-db/pgbouncer/files/pgbouncer.initd new file mode 100644 index 000000000000..b5cb52b62382 --- /dev/null +++ b/dev-db/pgbouncer/files/pgbouncer.initd @@ -0,0 +1,37 @@ +#!/sbin/runscript + +extra_started_commands="reload" + +if [ -d /run ] ; then + RUNDIR=/run/pgbouncer +else + RUNDIR=/var/run/pgbouncer +fi + +depend() { + need net + after postgresql +} + +start() { + mkdir -p ${RUNDIR} + chown pgbouncer:pgbouncer ${RUNDIR} + + ebegin "Starting pgbouncer" + start-stop-daemon --start --pidfile ${RUNDIR}/pgbouncer.pid \ + --exec /usr/bin/pgbouncer -- -q -d -u pgbouncer /etc/pgbouncer.conf + eend $? "Failed to start pgbouncer" +} + +stop() { + ebegin "Stopping pgbouncer" + start-stop-daemon --stop --quiet --pidfile ${RUNDIR}/pgbouncer.pid + eend $? +} + +reload() { + ebegin "Gracefully reloading pgbouncer" + start-stop-daemon --stop --oknodo --signal HUP \ + --pidfile ${RUNDIR}/pgbouncer.pid + eend $? +} diff --git a/dev-db/pgbouncer/metadata.xml b/dev-db/pgbouncer/metadata.xml new file mode 100644 index 000000000000..f1079c73f7ab --- /dev/null +++ b/dev-db/pgbouncer/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>postgresql</herd> + <maintainer> + <email>bugs@bergstroem.nu</email> + <name>Johan Bergström</name> + <description>Proxy-Maintainer, assign bugs</description> + </maintainer> + <maintainer> + <email>titanofold@gentoo.org</email> + <name>Aaron W. Swenson</name> + </maintainer> +</pkgmetadata> diff --git a/dev-db/pgbouncer/pgbouncer-1.4.2.ebuild b/dev-db/pgbouncer/pgbouncer-1.4.2.ebuild new file mode 100644 index 000000000000..c898e5ff0bf6 --- /dev/null +++ b/dev-db/pgbouncer/pgbouncer-1.4.2.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/pgbouncer/pgbouncer-1.4.2.ebuild,v 1.1 2011/11/16 04:17:36 titanofold Exp $ + +EAPI="4" + +inherit eutils + +RESTRICT="test" + +DESCRIPTION="Lightweight connection pooler for PostgreSQL" +HOMEPAGE="http://pgfoundry.org/projects/pgbouncer/" +SRC_URI="mirror://postgresql/projects/pgFoundry/${PN}/${P}.tgz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND="dev-libs/libevent" +RDEPEND="${DEPEND}" + +pkg_setup() { + enewgroup pgbouncer + enewuser pgbouncer -1 -1 -1 pgbouncer +} + +src_prepare() { + local rundir="" + [[ ! -d /run ]] && rundir="/var" + + sed -i -e "s,${PN}.log,/var/log/${PN}/${PN}.log," \ + -e "s,${PN}.pid,/var/run/${PN}/${PN}.pid," \ + -e "s,etc/userlist.txt,/etc/userlist.txt," \ + -e "s,;unix_socket_dir = /tmp,unix_socket_dir = ${rundir}/run/${PN}.sock," \ + "${S}"/etc/pgbouncer.ini || die +} + +src_configure() { + # --enable-debug is only used to disable stripping + econf \ + --enable-debug \ + $(use_enable debug cassert) \ + --docdir=/usr/share/doc/${PF} +} + +src_install() { + emake DESTDIR="${D}" install + + insinto /etc + newins etc/pgbouncer.ini pgbouncer.conf + newinitd "${FILESDIR}"/pgbouncer.initd "${PN}" + + dodoc README NEWS AUTHORS + dodoc doc/*.txt + + dodir /var/log/pgbouncer/ + fowners pgbouncer:pgbouncer /var/log/pgbouncer/ +} + +pkg_postinst() { + 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." + +} |