From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 28 16:30:04 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80594106567A for ; Thu, 28 Aug 2008 16:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6FB6F8FC0A for ; Thu, 28 Aug 2008 16:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m7SGU4Vd008944 for ; Thu, 28 Aug 2008 16:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m7SGU403008941; Thu, 28 Aug 2008 16:30:04 GMT (envelope-from gnats) Date: Thu, 28 Aug 2008 16:30:04 GMT Message-Id: <200808281630.m7SGU403008941@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Matthias Andree Cc: Subject: Re: ports/126518: Unbroke archivers/lzo2 on i386 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Andree List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Aug 2008 16:30:04 -0000 The following reply was made to PR ports/126518; it has been noted by GNATS. From: Matthias Andree To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/126518: Unbroke archivers/lzo2 on i386 Date: Thu, 28 Aug 2008 18:22:30 +0200 This is a multi-part message in MIME format. --------------020809080402040305070908 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Please try this debugging patch, remove the BROKEN= tag, and give it a go. Longer message was sent to portsmgr@, edwin, erwin and lippe, but not presented here since it contains private end user mail not warranting a request to publish it. If the port fails again, I need SSH access to a machine where the self-test gets stuck, so I can debug. No root privileges or user password required; I will provide ssh2 keys. HTH Matthias - lzo2 port maintainer - --------------020809080402040305070908 Content-Type: text/plain; name="patch-lzo2" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-lzo2" diff -ruN --exclude=CVS /usr/ports/archivers/lzo2/Makefile /usr/home/emma/ports/archivers/lzo2/Makefile --- /usr/ports/archivers/lzo2/Makefile 2008-06-20 20:38:52.000000000 +0200 +++ /usr/home/emma/ports/archivers/lzo2/Makefile 2008-07-29 11:04:20.000000000 +0200 @@ -26,7 +26,7 @@ post-build: @${ECHO_MSG} "===> Running self-tests for ${PKGNAME} (can take a few minutes, without output)" - cd ${WRKSRC} && ${MAKE} test + cd ${WRKSRC} && ${MAKE} test SHELL="${SHELL} -x" post-install: .if !defined(NOPORTDOCS) diff -ruN --exclude=CVS /usr/ports/archivers/lzo2/files/patch-util-check_sh /usr/home/emma/ports/archivers/lzo2/files/patch-util-check_sh --- /usr/ports/archivers/lzo2/files/patch-util-check_sh 1970-01-01 01:00:00.000000000 +0100 +++ /usr/home/emma/ports/archivers/lzo2/files/patch-util-check_sh 2008-07-29 11:00:50.000000000 +0200 @@ -0,0 +1,11 @@ +--- ./util/check.sh~ 2008-04-30 14:51:49.000000000 +0200 ++++ ./util/check.sh 2008-07-29 11:00:31.000000000 +0200 +@@ -19,7 +19,7 @@ + + TMPFILE="/tmp/lzo_$$.tmp" + rm -f $TMPFILE +-(find $dir/ -type f -print > $TMPFILE) || true ++find $dir/ -type f -print | tee $TMPFILE + + ## methods=`$LZOTEST -m | sed -n 's/^ *-m\([0-9]*\).*/\1/p'` + ## methods="9721 9722 9723 9724 9725 9726 9727 9728 9729" --------------020809080402040305070908--