public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] dev-libs/glib
@ 2003-05-13 22:42 William Hubbs
  2003-05-13 23:47 ` Canek Peláez Valdés
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: William Hubbs @ 2003-05-13 22:42 UTC (permalink / raw
  To: Gentoo Developers; +Cc: Gentoo Users

Hi all,

I'm not sure whether this goes to gentoo-dev or gentoo-users, so I appologise in advance for the cross-post.

The problem I am having is this:

I am trying to remove the dev-libs/glib package from my system.
It is not in the world file, and it isn't in /etc/make.profile anywhere.
However, emerge -uD world insists on installing it.

I have attempted to find the package that depends on it, but I get the following results:

dep-clean -Cv
Retrieving currently merged packages.
128 currently merged packages.

Retrieving system packages.
89 packages contained in system.

Preparing world file.

Preparing list of installed world packages.

8586	ebuilds available.
42	packages contained in final world file.

List prepared, checking dependencies with emerge -eup
130 packages contained in final image.

These packages have no other packages depending on them.
Total of 0 unneeded packages.

These packages are depended upon but are not present on the system.
dev-libs/glib-1.2.10-r5
dev-libs/glib-2.2.1
Total of 2 needed packages.

These packages are installed but not in the portage tree.
Total of 0 removed packages.

Then, here is what qpkg tells me about the package:

qpkg -nc -q -i dev-libs/glib
dev-libs/glib-2.0.4-r1
DEPENDED ON BY:
dev-libs/glib-1.2.10-r5
DEPENDED ON BY:
dev-libs/glib-2.0.6-r1
DEPENDED ON BY:
dev-libs/glib-2.0.7
DEPENDED ON BY:
dev-libs/glib-2.2.0
DEPENDED ON BY:
dev-libs/glib-2.2.1
DEPENDED ON BY:

Here are my use flags:
USE="-cups -gif -gnome -gpm -gtk -imlib -kde maildir -jpeg -nls -png -qt -svga -X -xv -xmms -truetype -tcpd"

What is going on here?  Can someone tell me why my system thinks this packag is needed?

Thanks,

William


--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-dev] dev-libs/glib
  2003-05-13 22:42 [gentoo-dev] dev-libs/glib William Hubbs
@ 2003-05-13 23:47 ` Canek Peláez Valdés
  2003-05-13 23:58 ` Thomas de Grenier de Latour
  2003-05-14  0:19 ` Spider
  2 siblings, 0 replies; 5+ messages in thread
From: Canek Peláez Valdés @ 2003-05-13 23:47 UTC (permalink / raw
  To: William Hubbs; +Cc: Gentoo Developers, Gentoo Users

[...]

William> I am trying to remove the dev-libs/glib package from my system.  It
William> is not in the world file, and it isn't in /etc/make.profile
William> anywhere.  However, emerge -uD world insists on installing it.

Gtk+ depends on glib; if you're using Gnome or another Gtk+ based
application, you need it. A lot of things depends on glib; and it's
relatively small, so I don't see the need for removal...

Canek
-- 
Is it possible that software is not like anything else, that it is meant to
be discarded:  that the whole point is to always see it as a soap bubble?

--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-dev] dev-libs/glib
  2003-05-13 22:42 [gentoo-dev] dev-libs/glib William Hubbs
  2003-05-13 23:47 ` Canek Peláez Valdés
@ 2003-05-13 23:58 ` Thomas de Grenier de Latour
  2003-05-14  0:19 ` Spider
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas de Grenier de Latour @ 2003-05-13 23:58 UTC (permalink / raw
  To: gentoo-dev

On Tue, 13 May 2003 17:42:58 -0500
William Hubbs <kc5eiv@kc5eiv.homeip.net> wrote:

> 
> Here are my use flags:
> USE="-cups -gif -gnome -gpm -gtk -imlib -kde maildir -jpeg -nls -png
> -qt -svga -X -xv -xmms -truetype -tcpd"
> 

Glib is at least needed by "sys-libs/pam" (because of the "pam_console"
module). Hence, you do need glib (which is however a good C library,
even for non-gtk code).

-- 
Thomas de Grenier de Latour.

--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-dev] dev-libs/glib
  2003-05-13 22:42 [gentoo-dev] dev-libs/glib William Hubbs
  2003-05-13 23:47 ` Canek Peláez Valdés
  2003-05-13 23:58 ` Thomas de Grenier de Latour
@ 2003-05-14  0:19 ` Spider
  2003-05-14  0:48   ` William Hubbs
  2 siblings, 1 reply; 5+ messages in thread
From: Spider @ 2003-05-14  0:19 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: text/plain, Size: 493 bytes --]

begin  quote
On Tue, 13 May 2003 17:42:58 -0500
William Hubbs <kc5eiv@kc5eiv.homeip.net> wrote:

> What is going on here?  Can someone tell me why my system thinks this
> packag is needed?

try  this
cd /var/db/pkg
find . -iname \*.ebuild | while read F ;
   do grep "dev-libs/glib" -q ${F} && echo ${F};
done

and see if it responds something?


-- 
begin  .signature
This is a .signature virus! Please copy me into your .signature!
See Microsoft KB Article Q265230 for more information.
end

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-dev] dev-libs/glib
  2003-05-14  0:19 ` Spider
@ 2003-05-14  0:48   ` William Hubbs
  0 siblings, 0 replies; 5+ messages in thread
From: William Hubbs @ 2003-05-14  0:48 UTC (permalink / raw
  To: Spider; +Cc: gentoo-dev

Hi,

I used the commands you gave me and got this response:

./sys-libs/pam-0.75-r11/pam-0.75-r11.ebuild
./dev-libs/glib-2.2.1/glib-2.2.1.ebuild
./net-irc/irssi-0.8.6-r2/irssi-0.8.6-r2.ebuild

That explains why I need the package, thanks a lot. :-)

William


On Wed, May 14, 2003 at 02:19:14AM +0200, Spider wrote:
> begin  quote
> On Tue, 13 May 2003 17:42:58 -0500
> William Hubbs <kc5eiv@kc5eiv.homeip.net> wrote:
> 
> > What is going on here?  Can someone tell me why my system thinks this
> > packag is needed?
> 
> try  this
> cd /var/db/pkg
> find . -iname \*.ebuild | while read F ;
>    do grep "dev-libs/glib" -q ${F} && echo ${F};
> done
> 
> and see if it responds something?
> 
> 
> -- 
> begin  .signature
> This is a .signature virus! Please copy me into your .signature!
> See Microsoft KB Article Q265230 for more information.
> end



--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2003-05-14  0:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-13 22:42 [gentoo-dev] dev-libs/glib William Hubbs
2003-05-13 23:47 ` Canek Peláez Valdés
2003-05-13 23:58 ` Thomas de Grenier de Latour
2003-05-14  0:19 ` Spider
2003-05-14  0:48   ` William Hubbs

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox