Date: Mon, 23 Feb 2009 13:49:57 +0100 (CET) From: Martin Matuska <mm@FreeBSD.org> To: FreeBSD-gnats-submit@FreeBSD.org Cc: skv@FreeBSD.org Subject: ports/132003: [PATCH] databases/pgbouncer: update to 1.3 Message-ID: <20090223124957.2A4344AD88@mail.vx.sk> Resent-Message-ID: <200902231300.n1ND09mV047490@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 132003 >Category: ports >Synopsis: [PATCH] databases/pgbouncer: update to 1.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Feb 23 13:00:09 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Martin Matuska >Release: FreeBSD 7.1-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD neo2.vx.sk 7.1-RELEASE-p2 FreeBSD 7.1-RELEASE-p2 #11 r179970M: Thu Jan 15 23:58:53 CET >Description: - Update to 1.3 - Make portlint happier (replace some spaces with tabs) Port maintainer (skv@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- pgbouncer-1.3.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/databases/pgbouncer/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- Makefile 19 Aug 2008 16:40:12 -0000 1.6 +++ Makefile 23 Feb 2009 12:48:10 -0000 @@ -6,10 +6,9 @@ # PORTNAME= pgbouncer -PORTVERSION= 1.2.3 -PORTREVISION= 1 +PORTVERSION= 1.3 CATEGORIES= databases -MASTER_SITES= http://pgfoundry.org/frs/download.php/1873/ +MASTER_SITES= http://pgfoundry.org/frs/download.php/2092/ MAINTAINER= skv@FreeBSD.org COMMENT= Lightweight connection pooler for PostgreSQL @@ -41,19 +40,19 @@ .include <bsd.port.pre.mk> # Parse ${PORTSDIR}/UIDs and GIDs for the defaults -USER!= ${GREP} -E '^${PGBOUNCER_USER}:' ${PORTSDIR}/UIDs | \ +USER!= ${GREP} -E '^${PGBOUNCER_USER}:' ${PORTSDIR}/UIDs | \ ${SED} -Ee 's/^([^:]*):([^:]*):([^:]*):([^:]*)::0:0:([^:]*):([^:]*):([^:]*)$$/USER="\1" UID="\3" GECOS="\5" HOME="\6" SHELL="\7"/' -GROUP!= ${GREP} -E '^${PGBOUNCER_GROUP}:' ${PORTSDIR}/GIDs | \ +GROUP!= ${GREP} -E '^${PGBOUNCER_GROUP}:' ${PORTSDIR}/GIDs | \ ${SED} -Ee 's/^([^:]*):([^:]*):([^:]*):$$/GROUP="\1" GID="\3"/' # Apply the defaults where necessary -PGBOUNCER_USER?= ${USER:MUSER*:C/^[^=]*=\"([^\"]*)\"$/\1/} -PGBOUNCER_UID?= ${USER:MUID*:C/^[^=]*=\"([^\"]*)\"$/\1/} -PGBOUNCER_GECOS?= ${USER:MGECOS*:C/^[^=]*=\"([^\"]*)\"$/\1/} -PGBOUNCER_HOME?= ${USER:MHOME*:C/^[^=]*=\"([^\"]*)\"$/\1/} -PGBOUNCER_SHELL?= ${USER:MSHELL*:C/^[^=]*=\"([^\"]*)\"$/\1/} -PGBOUNCER_GROUP?= ${GROUP:MGROUP*:C/^[^=]*=\"([^\"]*)\"$/\1/} -PGBOUNCER_GID?= ${GROUP:MGID*:C/^[^=]*=\"([^\"]*)\"$/\1/} +PGBOUNCER_USER?= ${USER:MUSER*:C/^[^=]*=\"([^\"]*)\"$/\1/} +PGBOUNCER_UID?= ${USER:MUID*:C/^[^=]*=\"([^\"]*)\"$/\1/} +PGBOUNCER_GECOS?= ${USER:MGECOS*:C/^[^=]*=\"([^\"]*)\"$/\1/} +PGBOUNCER_HOME?= ${USER:MHOME*:C/^[^=]*=\"([^\"]*)\"$/\1/} +PGBOUNCER_SHELL?= ${USER:MSHELL*:C/^[^=]*=\"([^\"]*)\"$/\1/} +PGBOUNCER_GROUP?= ${GROUP:MGROUP*:C/^[^=]*=\"([^\"]*)\"$/\1/} +PGBOUNCER_GID?= ${GROUP:MGID*:C/^[^=]*=\"([^\"]*)\"$/\1/} SUB_LIST+= PGBOUNCER_USER="${PGBOUNCER_USER}" \ PGBOUNCER_UID="${PGBOUNCER_UID}" \ @@ -83,7 +82,7 @@ post-install: @if [ ! -f ${PREFIX}/etc/pgbouncer.ini ]; then \ ${CP} -p ${PREFIX}/etc/pgbouncer.ini.sample ${PREFIX}/etc/pgbouncer.ini ; \ - fi + fi @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL @${CAT} ${PKGMESSAGE} Index: distinfo =================================================================== RCS file: /home/pcvs/ports/databases/pgbouncer/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- distinfo 11 Aug 2008 20:09:15 -0000 1.3 +++ distinfo 23 Feb 2009 12:48:10 -0000 @@ -1,3 +1,3 @@ -MD5 (pgbouncer-1.2.3.tar.gz) = e8afc79103cd464c109a56e418a9ba24 -SHA256 (pgbouncer-1.2.3.tar.gz) = 3dfbdf1afd506f676bdb517da43791a37b76def2c4cc8735ded017e12c829a6a -SIZE (pgbouncer-1.2.3.tar.gz) = 145372 +MD5 (pgbouncer-1.3.tar.gz) = 95f79289ccb8322758c608015e31f1f5 +SHA256 (pgbouncer-1.3.tar.gz) = 87b489e173d7e66c440218e7b026943789da66c2b5bd6ef85f5a354a92a66cae +SIZE (pgbouncer-1.3.tar.gz) = 160154 --- pgbouncer-1.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20090223124957.2A4344AD88>