From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=DMARC_MISSING, MAILING_LIST_MULTI,NICE_REPLY_A autolearn=unavailable autolearn_force=no version=4.0.0 Received: from smtprelay7.dc2.adelphia.net (smtprelay7.dc2.adelphia.net [64.8.50.39]) by chiba.3jane.net (Postfix) with ESMTP id 633C327C5E for ; Sat, 19 Jan 2002 11:38:20 -0600 (CST) Received: from gent.gentoo.org ([24.48.37.176]) by smtprelay7.dc2.adelphia.net (Netscape Messaging Server 4.15) with SMTP id GQ752300.9A1 for ; Sat, 19 Jan 2002 12:39:39 -0500 Date: Sat, 19 Jan 2002 12:39:35 -0500 From: mikepolniak To: gentoo-dev@gentoo.org Subject: Re: [gentoo-dev] where does world update find gnome dependencies with no gnome installed in my gentoo? Message-Id: <20020119123935.62f5bc5b.mikpolniak@adelphia.net> In-Reply-To: <1011455076.1512.1.camel@inventor.gentoo.org> References: <20020118121625.490fb805.mikpolniak@adelphia.net> <1011455076.1512.1.camel@inventor.gentoo.org> X-Mailer: Sylpheed version 0.7.0 (GTK+ 1.2.10; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: gentoo-dev-admin@gentoo.org Errors-To: gentoo-dev-admin@gentoo.org X-BeenThere: gentoo-dev@gentoo.org X-Mailman-Version: 2.0.6 Precedence: bulk Reply-To: gentoo-dev@gentoo.org List-Help: List-Post: List-Subscribe: , List-Id: Developer discussion list List-Unsubscribe: , List-Archive: X-Archives-Salt: 91360276-3375-499d-bc58-e1c731428cd0 X-Archives-Hash: 07befdf602f42185dc10ef9265857e53 On 19 Jan 2002 08:44:36 -0700 Daniel Robbins wrote: > On Fri, 2002-01-18 at 10:16, mikepolniak wrote: > > With my USE= while building gentoo i do not have any gnome installed. > > I also made sure to not emerge anything with gnome -dependencies. > > > > Today an emerge --pretend --world update now wants to add gnome-base/ORBit > > and gnome-libs: > > [snip] > > > [ebuild U] x11-wm/fluxbox-0.1.6 to / > > [ebuild N ] gnome-base/ORBit-0.5.12-r1 to / <----where does it find this > > [ebuild N ] media-libs/audiofile-0.2.2 to / > > [ebuild N ] media-sound/esound-0.2.23 to / > > [ebuild N ] gnome-base/gnome-libs-1.4.1.2-r3 to / <----where does it find this > > I'm guessing that you *do* have a /var/db/pkg/gnome-base/gnome-libs* > entry, possibly an old one. Look and see. You can also do a: > > cd /var/db/pkg > grep -r gnome-base/gnome-libs * > > ...to see what packaage caused it to be installed. Well grep -r gnome-base/gnome-libs * shows nothing in /var/db/pkg. If i grep -r gnome/base * then xmms and xchat show: RDEPEND:gnome? ( >=gnome-base/gnome-core-1.4.0.4-r1 ) ebuild: gnome? ( >=gnome-base/gnome-core-1.4.0.4-r1 but if gnome is not present in USE= ... then i assume gnome should not be a dependency. Which is the case if i emerge all the ebuilds in the list individually, because then there are _no_ gnome dependencies. However, when building gqview which has a dependency on gdk-pixbuf i did remove a Depend >=gnome-base/gnome-libs-1.4.1.2-r1 from the ebuild of gdk-pixbuf so that i could have gqview without gnome (neither gqview or gdk-pixbuf needs gnome) So then in my /var/db/pkg/media-libs/gdk-pixbuf i have: DEPEND=">=x11-libs/gtk+-1.2.10-r4 >=gnome-base/gnome-libs-1.4.1.2-r1" <-----i removed this And my /var/db/pkg/media-gfx/gqview has the unchanged DEPEND="virtual/glibc media-libs/libpng >=media-libs/gdk-pixbuf-0.11.0-r1 >=x11-libs/gtk+-1.2.10-r4 nls? ( sys-devel/gettext )" But again this means that a gnome depends is _not_ in my /var/db/pkg although it is in my original /usr/portage/media-libs/gdk-pixbuf. Could this be causing --world update to find a gnome depends?