From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1MXpNi-0006ea-3y for garchives@archives.gentoo.org; Mon, 03 Aug 2009 04:42:42 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18267E01FA; Mon, 3 Aug 2009 04:42:41 +0000 (UTC) Received: from mail-gx0-f220.google.com (mail-gx0-f220.google.com [209.85.217.220]) by pigeon.gentoo.org (Postfix) with ESMTP id EA4BBE01FA for ; Mon, 3 Aug 2009 04:42:40 +0000 (UTC) Received: by gxk20 with SMTP id 20so14340488gxk.10 for ; Sun, 02 Aug 2009 21:42:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:in-reply-to :references:content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; bh=IMtXkHUG1vGkWZdcfW5PunMDeo+YzSOVjQzJfS75PR4=; b=hvtrO/GXaaA/er5Km8B7R9sGP/cnH9e8wkUu+5GYRiSnGtQvQRf8k/+csUG6I+Gy6N ygx48aJ1VBAouDWcBOd/l2YXVBMSvnZI7tpzVPubLFYwabcWn6PomZul3JY3cuISge2r sH+zeUl2Q22d1Lpz30wmiKLzIsofCj+0TgB40= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:in-reply-to:references:content-type:date:message-id :mime-version:x-mailer:content-transfer-encoding; b=tIUNl2LRfCV9xvSSt2+uscDA5Jmop9Yxg9WgYcEq4D8zgYO+9MU5qBJM2pUTzQoX3A ym078USJjr7SIPvzD5BMbc/VAloYR1SwEFe6t7pjYmBv/R2qtBGlBvmw3uY+Ocqy+F6w /BAIjn+RWI4k9V6UOocFHKiqXWHz0SbYeHvxQ= Received: by 10.151.78.5 with SMTP id f5mr3127262ybl.285.1249274560649; Sun, 02 Aug 2009 21:42:40 -0700 (PDT) Received: from ?24.252.115.177? (ip24-252-115-177.no.no.cox.net [24.252.115.177]) by mx.google.com with ESMTPS id 21sm137047ywh.9.2009.08.02.21.42.39 (version=SSLv3 cipher=RC4-MD5); Sun, 02 Aug 2009 21:42:39 -0700 (PDT) Subject: Re: [gentoo-amd64] Python-updater line 415 error From: Lance Lassetter To: gentoo-amd64@lists.gentoo.org In-Reply-To: <20090803003643.31db32ad.frank.peters@comcast.net> References: <20090803003643.31db32ad.frank.peters@comcast.net> Content-Type: text/plain Date: Sun, 02 Aug 2009 23:42:38 -0500 Message-Id: <1249274558.5149.12.camel@localhost> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-amd64@lists.gentoo.org Reply-to: gentoo-amd64@lists.gentoo.org Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 Content-Transfer-Encoding: 7bit X-Archives-Salt: 6d704733-b005-4581-a94a-214ad7306608 X-Archives-Hash: 7be42ab9ca260df92fd9aac34bf225ea On Mon, 2009-08-03 at 00:36 -0400, Frank Peters wrote: > I run python-updater. I get this: > > command substitution: line 415: syntax error near unexpected token `<' > command substitution: line 415: `scanelf -qBN ${OLD_SONAME} < <(' > > Python-updater is a bash script. Checking the source reveals > this code at line 415: > > broken_libs="$(scanelf -qBN ${OLD_SONAME} < <( > grep -e '^obj' ${content} | cut -d' ' -f2))" > > Now, this line is a nested command substitution. To fix, just > replace the second "<" character with "$": > > broken_libs="$(scanelf -qBN ${OLD_SONAME} < $( > grep -e '^obj' ${content} | cut -d' ' -f2))" > > > This fix removes the error message and allows python-updater to > check my system, but I now see some other messages which are, > to me, a bit puzzling. Here is just one example of many: > > /usr/bin/rgb2ycbcr: No such file or directory > > The file rgb2ycbcr is there, as are all the other files that are > marked as missing. > > Is python-updater working properly for everyone? I searched > google and bugs.gentoo.org for the above line 415 error message but > found nothing, and I can't believe that no one else has so far > missed it. A bug like this should have been spotted immediately, > yet re-emerging python-updater gives the same error. > > Frank Peters > > ran python-updater yesterday and worked fine. upgraded from 2.5 to 2.6. i had to run it twice though to catch everything. Lance