public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] portage issue ?
@ 2004-05-10 19:05 Frederick Ros
  2004-05-10 21:29 ` Chris Smith
  0 siblings, 1 reply; 4+ messages in thread
From: Frederick Ros @ 2004-05-10 19:05 UTC (permalink / raw
  To: gentoo-dev

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

Hi,

First of all I apologize if the following is irrelevant, but I didn't
find anything related to it in the recent mails.

My emerge seems to have strange behaviour today:

hal root # emerge -pu world

These are the packages that I would merge, in order:

Calculating world dependencies ...done!
[ebuild     UD] app-admin/gkrellm-2.1.28-r1 [2.2.0_pre1] 
[ebuild     UD] net-misc/rsync-2.6.0 [2.6.2-r2] 
[ebuild     UD] sys-apps/pcmcia-cs-3.2.5-r1 [3.2.7] 


but when using --upgradeonly :

hal root # emerge -pu --upgradeonly world

These are the packages that I would merge, in order:

Calculating world dependencies ...done!


i.e, the rsync vanishes ....

Moreover if I do :

hal root # emerge -puD --upgradeonly world

These are the packages that I would merge, in order:

Calculating world dependencies /
!!! all ebuilds that could satisfy ">=virtual/linux-sources-2.4" have
been masked.
!!! possible candidates are:
- sys-kernel/mm-sources-2.6.6_rc1-r1 (masked by: -* keyword)
- sys-kernel/mm-sources-2.6.6-r1 (masked by: -* keyword)
- sys-kernel/mm-sources-2.6.6_rc3-r1 (masked by: -* keyword)
- sys-kernel/mm-sources-2.6.6_rc2-r1 (masked by: -* keyword)
!!!    (dependency required by "media-video/ati-drivers-3.2.8-r1"
[ebuild])

!!! Problem with ebuild media-video/ati-drivers-extra-3.2.8-r1
!!! Possibly a DEPEND/*DEPEND problem.

!!! Depgraph creation failed.

I admit I only have 2.6 kernels on my laptop, but this warning is very
recent (last emerge -puD world was saturday) ...

Did I have something wrong ?

Best Regards.
-- 
Frederick Ros aka Sleeper

"Whip me.  Beat me.  Make me maintain AIX."
(By Stephan Zielinski)

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

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

* Re: [gentoo-dev] portage issue ?
  2004-05-10 19:05 [gentoo-dev] portage issue ? Frederick Ros
@ 2004-05-10 21:29 ` Chris Smith
  2004-05-20 19:06   ` Frederick Ros
  0 siblings, 1 reply; 4+ messages in thread
From: Chris Smith @ 2004-05-10 21:29 UTC (permalink / raw
  To: gentoo-dev

On Tuesday 11 May 2004 07:05, Frederick Ros wrote:
> hal root # emerge -pu world
>
> These are the packages that I would merge, in order:
>
> Calculating world dependencies ...done!
> [ebuild     UD] app-admin/gkrellm-2.1.28-r1 [2.2.0_pre1]
> [ebuild     UD] net-misc/rsync-2.6.0 [2.6.2-r2]
> [ebuild     UD] sys-apps/pcmcia-cs-3.2.5-r1 [3.2.7]

Yep, seems in order.

> but when using --upgradeonly :
>
> hal root # emerge -pu --upgradeonly world
>
> These are the packages that I would merge, in order:
>
> Calculating world dependencies ...done!
>
>
> i.e, the rsync vanishes ....

I fail to see what the problem is! In your code excerpt above rsync was marked 
for downgrading and you used the upgradeonly flag.

> Moreover if I do :
>
> hal root # emerge -puD --upgradeonly world
>
> These are the packages that I would merge, in order:
>
> Calculating world dependencies /
> !!! all ebuilds that could satisfy ">=virtual/linux-sources-2.4" have
> been masked.
---snip----

Looks like a virtuals problem. Could you send the output of:
cat /var/cache/edb/virtuals
That may help.

> Did I have something wrong ?

Check your virtuals file and make sure everything is in order.

Cheers,
Chris.

--
gentoo-dev@gentoo.org mailing list


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

* Re: [gentoo-dev] portage issue ?
  2004-05-20 19:06   ` Frederick Ros
@ 2004-05-20 19:03     ` Marius Mauch
  0 siblings, 0 replies; 4+ messages in thread
From: Marius Mauch @ 2004-05-20 19:03 UTC (permalink / raw
  To: gentoo-dev

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

On 05/20/04  Frederick Ros wrote:

> 
> Chris Smith wrote :
> | > Calculating world dependencies /
> | > !!! all ebuilds that could satisfy ">=virtual/linux-sources-2.4"
> | > have been masked.
> 
> OK. As I had some time I looked at this. What happens is that the
> ati-drivers ebuild requests :
> 
> DEPEND=">=virtual/linux-sources-2.4
>         app-arch/rpm2targz
>         >=x11-base/xfree-4.3.0"
> 
> On my laptop I only have 2.6.X-mmY kernel installed. Thus portage is
> not happy with this when I try an emerge -upD world
> 
> Is this a problem of the ebuild or from the virtuals ? The only
> "kernel related" virtual I have are:
> 
> virtual/linux-sources sys-kernel/mm-sources 
> virtual/os-headers sys-kernel/linux-headers 
> virtual/kernel sys-kernel/linux-headers 

Problem is that currently all mm-sources are masked.

Marius

-- 
Public Key at http://www.genone.de/info/gpg-key.pub

In the beginning, there was nothing. And God said, 'Let there be
Light.' And there was still nothing, but you could see a bit better.

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

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

* Re: [gentoo-dev] portage issue ?
  2004-05-10 21:29 ` Chris Smith
@ 2004-05-20 19:06   ` Frederick Ros
  2004-05-20 19:03     ` Marius Mauch
  0 siblings, 1 reply; 4+ messages in thread
From: Frederick Ros @ 2004-05-20 19:06 UTC (permalink / raw
  To: gentoo-dev


Chris Smith wrote :
| > Calculating world dependencies /
| > !!! all ebuilds that could satisfy ">=virtual/linux-sources-2.4" have
| > been masked.

OK. As I had some time I looked at this. What happens is that the
ati-drivers ebuild requests :

DEPEND=">=virtual/linux-sources-2.4
        app-arch/rpm2targz
        >=x11-base/xfree-4.3.0"

On my laptop I only have 2.6.X-mmY kernel installed. Thus portage is not
happy with this when I try an emerge -upD world

Is this a problem of the ebuild or from the virtuals ? The only "kernel
related" virtual I have are:

virtual/linux-sources sys-kernel/mm-sources 
virtual/os-headers sys-kernel/linux-headers 
virtual/kernel sys-kernel/linux-headers 

Best Regards.

-- 
Frederick Ros aka Sleeper

linux: the choice of a GNU generation
(ksh@cis.ufl.edu put this on Tshirts in '93)

--
gentoo-dev@gentoo.org mailing list


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

end of thread, other threads:[~2004-05-20 19:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-05-10 19:05 [gentoo-dev] portage issue ? Frederick Ros
2004-05-10 21:29 ` Chris Smith
2004-05-20 19:06   ` Frederick Ros
2004-05-20 19:03     ` Marius Mauch

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