Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Aug 2003 05:08:21 +0200 (CEST)
From:      dirk.meyer@dinoex.sub.org
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/55300: processlogs on bento is broken
Message-ID:  <200308060308.h7638LM3029770@home.dinoex.sub.de>
Resent-Message-ID: <200308060310.h763AI1G028781@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         55300
>Category:       ports
>Synopsis:       processlogs on bento is broken
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Aug 05 20:10:18 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Dirk Meyer
>Release:        FreeBSD 5.1-CURRENT i386
>Organization:
privat
>Environment:

	bento cluster:

>Description:

	processlogs dows not generate new data.
	it is local modified on bento:

$ ls -l /a/asami/portbuild/scripts/processlogs
-rwxr-xr-x  1 root  portmgr  22712 Jul 28 03:22 /a/asami/portbuild/scripts/processlogs*

	this reults in no updates since July 25th on:
http://people.freebsd.org/~fenner/errorlogs/dinoex@freebsd.org.html
http://people.freebsd.org/~dinoex/errorlogs/dinoex@freebsd.org-date.html

	in between there have beenn plenty errors to report like in:
http://people.freebsd.org/~dinoex/errorlogs/dinoex-date.html

>How-To-Repeat:

	start:

$ /a/asami/portbuild/scripts/processlogs
/a/asami/portbuild/scripts/processlogs: 324: Syntax error: "done" unexpected (expecting "fi")


>Fix:

	one if must be turned into elif
	apply the patch:

--- processlogs.orig    Mon Jul 28 03:22:04 2003
+++ processlogs Tue Aug  5 19:26:36 2003
@@ -62,7 +62,7 @@
     elif grep -qE '(configure: error:|script.*failed: here are the contents of)' $1; then
       if grep -qE "configure: error: cpu .* not supported" $1; then
         reason="arch"; tag="arch"
-      if grep -qE "configure: error: (This program requires STL to compile|One or more.*STL headers are missing)" $1; then
+      elif grep -qE "configure: error: (This program requires STL to compile|One or more.*STL headers are missing)" $1; then
         reason="stl"; tag="stl"
       elif grep -qE "configure: error: [Pp]erl (5.* required|version too old)" $1; then
         reason="perl"; tag="perl"


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200308060308.h7638LM3029770>