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 1Mdrb9-00085I-FR for garchives@archives.gentoo.org; Wed, 19 Aug 2009 20:17:33 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C856AE0295; Wed, 19 Aug 2009 20:17:29 +0000 (UTC) Received: from mail-fx0-f211.google.com (mail-fx0-f211.google.com [209.85.220.211]) by pigeon.gentoo.org (Postfix) with ESMTP id 8869DE0295 for ; Wed, 19 Aug 2009 20:17:29 +0000 (UTC) Received: by fxm7 with SMTP id 7so3879347fxm.34 for ; Wed, 19 Aug 2009 13:17:29 -0700 (PDT) Received: by 10.103.84.28 with SMTP id m28mr2674008mul.113.1250713048839; Wed, 19 Aug 2009 13:17:28 -0700 (PDT) Received: from mpismpirikos.tolises.homeunix.org (dsl-88-218-68-126.customers.vivodi.gr [88.218.68.126]) by mx.google.com with ESMTPS id 12sm1721033muq.29.2009.08.19.13.17.27 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 19 Aug 2009 13:17:28 -0700 (PDT) Date: Wed, 19 Aug 2009 23:17:21 +0300 From: Yiannis To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] Re: dev-libs/boost-1.35.0-r2 and x11-libs/vte-0.17.4-r3 still linked to libpython2.5.so.1.0 after upgrading to python-2.6.2-r1 Message-ID: <20090819231721.104e44eb@mpismpirikos.tolises.homeunix.org> In-Reply-To: References: <20090819211356.0bf8fb1e@mpismpirikos.tolises.homeunix.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Archives-Salt: a24c5df9-27d2-4480-b1b7-9aeef7b6f8b2 X-Archives-Hash: c8b61717dc65ff7ea258072d27dbef65 On Wed, 19 Aug 2009 21:30:56 +0300 Nikos Chantziaras wrote: > On 08/19/2009 09:13 PM, Yiannis wrote: > > Hello, > > > > Recently I upgraded to python-2.6.2-r1 which currently is slotted on > > my system as long as python-2.5.4-r3 is. After running > > python-upgrade twice I see that dev-libs/boost-1.35.0-r2 and > > x11-libs/vte-0.17.4-r3 are still linked to libpython2.5.so.1.0. On > > the other hand emege --depclean -p suggests that python-2.5.4-r3 > > can be removed and this is what I would like to do if possible. > > Shouldn't python-upgrade have resolved this linking issue? From the > > afore mentioned ebuilds I can tell that there is no specific > > dependency on python 2.5. Any help would be appreciated. > > That's what revdep-rebuild is for. After depclean removes > python-2.5, you need to do a revdep-rebuild which will take care of > boost and any other packages still using the old libpython. > I am a little confused here about what happened. After removing python-2.5.4-r3, # revdep-rebuilt -pv --library libpython2.5.so.1.0 did not rebuild dev-libs/boost-1.35.0-r2 nor x11-libs/vte-0.17.4-r3. Also running: # for file in `equery files vte`; do if [ -f $file ]; then ldd $file | grep python; fi; done 2>/dev/null # for file in `equery files boost`; do if [ -f $file ]; then ldd $file | grep python; fi; done 2>/dev/null returns nothing about python(I suppose that revdep-rebuild does something like this). Everything seems ok. Am I missing something here?