From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Apr 2 14:36:23 2006 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E23D16A400; Sun, 2 Apr 2006 14:36:23 +0000 (UTC) (envelope-from ports@rbt.ca) Received: from gozer.look.ca (epsilon1.look.ca [207.136.80.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 518BC43D46; Sun, 2 Apr 2006 14:36:22 +0000 (GMT) (envelope-from ports@rbt.ca) Received: from 209-161-223-20.dsl.look.ca ([209.161.223.20]) by gozer.look.ca with esmtp (Exim 4.20) id 1FQ3gi-0004Tq-Vq; Sun, 02 Apr 2006 14:36:21 +0000 From: Rod Taylor To: Pav Lucistnik In-Reply-To: <200604011725.k31HP2LB052350@freefall.freebsd.org> References: <200604011725.k31HP2LB052350@freefall.freebsd.org> Date: Sun, 02 Apr 2006 10:36:20 -0400 Message-Id: <1143988580.856.20.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.4.2.1 FreeBSD GNOME Team Port X-SA-Exim-Mail-From: ports@rbt.ca Content-Type: multipart/mixed; boundary="=-KIaKu3FfPaP4tONGc/ax" X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on chi.look.ca X-Spam-Level: X-Spam-Status: No, hits=0.0 required=9.0 tests=none autolearn=no version=2.63 X-SA-Exim-Version: 3.1 (built Tue Feb 24 05:09:27 GMT 2004) X-SA-Exim-Scanned: Yes Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/95183: [maintainer-update] www/bricolage upgrade to 1.10.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Apr 2006 14:36:23 -0000 --=-KIaKu3FfPaP4tONGc/ax Content-Type: text/plain Content-Transfer-Encoding: 7bit Sorry. I had thought the fix for that was applied upstream but I see that it was applied somewhat differently so it did not actually fix it all the time for us. Attached is a patch for ports/www/bricolage/files/ which should solve the issue. On Sat, 2006-04-01 at 17:25 +0000, Pav Lucistnik wrote: > Synopsis: [maintainer-update] www/bricolage upgrade to 1.10.1 > > State-Changed-From-To: open->feedback > State-Changed-By: pav > State-Changed-When: Sat Apr 1 17:24:38 UTC 2006 > State-Changed-Why: > Build ends in endless loop of > > Postgres System Username [pgsql] > User "pgsql" not found! This user must exist on your system. > > Can you fix that? > > > Responsible-Changed-From-To: freebsd-ports-bugs->pav > Responsible-Changed-By: pav > Responsible-Changed-When: Sat Apr 1 17:24:38 UTC 2006 > Responsible-Changed-Why: > Track > > http://www.freebsd.org/cgi/query-pr.cgi?pr=95183 > --=-KIaKu3FfPaP4tONGc/ax Content-Disposition: attachment; filename=patch-inst_postgres.pl Content-Type: text/x-patch; name=patch-inst_postgres.pl; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit *** inst/postgres.pl.orig Sun Apr 2 10:26:59 2006 --- inst/postgres.pl Sun Apr 2 10:27:55 2006 *************** *** 135,141 **** unless ($PG{host_name}) { $PG{system_user} = $PG{root_user}; ! while(1) { ask_confirm("Postgres System Username", \$PG{system_user}, $QUIET); $PG{system_user_uid} = (getpwnam($PG{system_user}))[2]; last if defined $PG{system_user_uid}; --- 135,141 ---- unless ($PG{host_name}) { $PG{system_user} = $PG{root_user}; ! while(!$QUIET) { ask_confirm("Postgres System Username", \$PG{system_user}, $QUIET); $PG{system_user_uid} = (getpwnam($PG{system_user}))[2]; last if defined $PG{system_user_uid}; --=-KIaKu3FfPaP4tONGc/ax--