public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] Modify emerge --resume
@ 2006-10-17  7:20 Marco Calviani
  2006-10-17  7:30 ` Bo Ørsted Andresen
  2006-10-17  7:58 ` Neil Bothwick
  0 siblings, 2 replies; 6+ messages in thread
From: Marco Calviani @ 2006-10-17  7:20 UTC (permalink / raw
  To: gentoo-user

Hi list,
   i was running an emerge -e world while emerge stuck on a package
(that was openinventor). The problem was that with the modular X, the
"testing" version was necessary. Now i would like to resume the emerge
process, but however with emerge --resume, Portage wants to install
the older version.
How is it possible to force the newer one?

Regards and thanks,
Marco
-- 
gentoo-user@gentoo.org mailing list



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

* Re: [gentoo-user] Modify emerge --resume
  2006-10-17  7:20 [gentoo-user] Modify emerge --resume Marco Calviani
@ 2006-10-17  7:30 ` Bo Ørsted Andresen
  2006-10-17  8:07   ` Marco Calviani
  2006-10-17  7:58 ` Neil Bothwick
  1 sibling, 1 reply; 6+ messages in thread
From: Bo Ørsted Andresen @ 2006-10-17  7:30 UTC (permalink / raw
  To: gentoo-user


[-- Attachment #1.1: Type: text/plain, Size: 633 bytes --]

On Tuesday 17 October 2006 09:20, Marco Calviani wrote:
>    i was running an emerge -e world while emerge stuck on a package
> (that was openinventor). The problem was that with the modular X, the
> "testing" version was necessary. Now i would like to resume the emerge
> process, but however with emerge --resume, Portage wants to install
> the older version.
> How is it possible to force the newer one?

If you save the attached file I believe that:

# python resume_list.py

should give you the resume list. Then you can alter the resulting list and 
emerge the altered list with --oneshot ...

-- 
Bo Andresen

[-- Attachment #1.2: resume_list.py --]
[-- Type: application/x-python, Size: 131 bytes --]

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

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

* Re: [gentoo-user] Modify emerge --resume
  2006-10-17  7:20 [gentoo-user] Modify emerge --resume Marco Calviani
  2006-10-17  7:30 ` Bo Ørsted Andresen
@ 2006-10-17  7:58 ` Neil Bothwick
  1 sibling, 0 replies; 6+ messages in thread
From: Neil Bothwick @ 2006-10-17  7:58 UTC (permalink / raw
  To: gentoo-user

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

On Tue, 17 Oct 2006 09:20:02 +0200, Marco Calviani wrote:

>    i was running an emerge -e world while emerge stuck on a package
> (that was openinventor). The problem was that with the modular X, the
> "testing" version was necessary. Now i would like to resume the emerge
> process, but however with emerge --resume, Portage wants to install
> the older version.

emerge the testing version of the package manually then use emerge
--resume --skipfirst. Single emerges don't clear the list used by --resume.


-- 
Neil Bothwick

Favorite Windoze game: Guess what this icon does?

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

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

* Re: [gentoo-user] Modify emerge --resume
  2006-10-17  7:30 ` Bo Ørsted Andresen
@ 2006-10-17  8:07   ` Marco Calviani
  2006-10-17  8:12     ` Bo Ørsted Andresen
  0 siblings, 1 reply; 6+ messages in thread
From: Marco Calviani @ 2006-10-17  8:07 UTC (permalink / raw
  To: gentoo-user

Hi Bo,

> # python resume_list.py
>
> should give you the resume list. Then you can alter the resulting list and
> emerge the altered list with --oneshot ...

thanks for this. This script gave me the resume list. However i'm not
able to give the file to emerge... i've tried with emerge -1 <
resume.list but with no success, it give me the emerge usage howto...

m
-- 
gentoo-user@gentoo.org mailing list



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

* Re: [gentoo-user] Modify emerge --resume
  2006-10-17  8:07   ` Marco Calviani
@ 2006-10-17  8:12     ` Bo Ørsted Andresen
  2006-10-17  8:21       ` Marco Calviani
  0 siblings, 1 reply; 6+ messages in thread
From: Bo Ørsted Andresen @ 2006-10-17  8:12 UTC (permalink / raw
  To: gentoo-user

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

On Tuesday 17 October 2006 10:07, Marco Calviani wrote:
> Hi Bo,
>
> > # python resume_list.py
> >
> > should give you the resume list. Then you can alter the resulting list
> > and emerge the altered list with --oneshot ...
>
> thanks for this. This script gave me the resume list. However i'm not
> able to give the file to emerge... i've tried with emerge -1 <
> resume.list but with no success, it give me the emerge usage howto...

# echo $(python resume_list.py)

# emerge -va1 $(python resume_list.py)

-- 
Bo Andresen

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

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

* Re: [gentoo-user] Modify emerge --resume
  2006-10-17  8:12     ` Bo Ørsted Andresen
@ 2006-10-17  8:21       ` Marco Calviani
  0 siblings, 0 replies; 6+ messages in thread
From: Marco Calviani @ 2006-10-17  8:21 UTC (permalink / raw
  To: gentoo-user

Thanks Bo and Neil,

> # echo $(python resume_list.py)
> # emerge -va1 $(python resume_list.py)

both of your solutions solved my problem!

Thanks again,
mc
-- 
gentoo-user@gentoo.org mailing list



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

end of thread, other threads:[~2006-10-17  8:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-17  7:20 [gentoo-user] Modify emerge --resume Marco Calviani
2006-10-17  7:30 ` Bo Ørsted Andresen
2006-10-17  8:07   ` Marco Calviani
2006-10-17  8:12     ` Bo Ørsted Andresen
2006-10-17  8:21       ` Marco Calviani
2006-10-17  7:58 ` Neil Bothwick

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