public inbox for gentoo-server@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-server] small tip how to really "emerge world"
@ 2008-09-15  7:51 Tomasz Lutelmowski
  2008-09-15 11:57 ` Andreas Prieß
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Tomasz Lutelmowski @ 2008-09-15  7:51 UTC (permalink / raw
  To: gentoo-server

Hi,

If you want to get list of all possible updates after "emerge --sync", 

# emerge -puDvNt world

...might be not enough. If it returns "0 packages" to update, try also this
(it takes very long time to finish, requires app-portage/portage-utils)

# for f in `qlist -IC`; do emerge -puDvNt $f | grep ebuild; done

Regards,
Tomek



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

* Re: [gentoo-server] small tip how to really "emerge world"
  2008-09-15  7:51 [gentoo-server] small tip how to really "emerge world" Tomasz Lutelmowski
@ 2008-09-15 11:57 ` Andreas Prieß
  2008-09-15 12:37   ` Tomasz Lutelmowski
  2008-09-15 13:35   ` Kent Fredric
  2008-09-15 14:35 ` Marius Mauch
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 9+ messages in thread
From: Andreas Prieß @ 2008-09-15 11:57 UTC (permalink / raw
  To: gentoo-server

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

Hi,

Tomasz Lutelmowski wrote:
> If you want to get list of all possible updates after "emerge --sync", 
> # emerge -puDvNt world
> ...might be not enough.

you might not get all possible updates, depending on your settings for
EMERGE_DEFAULT_OPTS in make.conf :-)

I think, if you have a look at the emerge option
--with-bdeps < y | n >
you should be able to get really, really all possible updates with 
emerge and without further gimmicks.

> If it returns "0 packages" to update, try also this
> (it takes very long time to finish, requires app-portage/portage-utils)
> 
> # for f in `qlist -IC`; do emerge -puDvNt $f | grep ebuild; done

There should not be any difference if you use the mentioned option to 
emerge.


Just my 2 cents.

Andreas


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

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

* Re: [gentoo-server] small tip how to really "emerge world"
  2008-09-15 11:57 ` Andreas Prieß
@ 2008-09-15 12:37   ` Tomasz Lutelmowski
  2008-09-15 13:35   ` Kent Fredric
  1 sibling, 0 replies; 9+ messages in thread
From: Tomasz Lutelmowski @ 2008-09-15 12:37 UTC (permalink / raw
  To: gentoo-server

Hi!

I prefer your 2 cents solution, thanks !

Tomek

On Mon, 15 Sep 2008 13:57:49 +0200, Andreas Prieß wrote
> Hi,
> 
> Tomasz Lutelmowski wrote:
> > If you want to get list of all possible updates after "emerge --sync", 
> > # emerge -puDvNt world
> > ...might be not enough.
> 
> you might not get all possible updates, depending on your settings 
> for EMERGE_DEFAULT_OPTS in make.conf :-)
> 
> I think, if you have a look at the emerge option
> --with-bdeps < y | n >
> you should be able to get really, really all possible updates with 
> emerge and without further gimmicks.
> 
> > If it returns "0 packages" to update, try also this
> > (it takes very long time to finish, requires app-portage/portage-utils)
> > 
> > # for f in `qlist -IC`; do emerge -puDvNt $f | grep ebuild; done
> 
> There should not be any difference if you use the mentioned option 
> to emerge.
> 
> Just my 2 cents.
> 
> Andreas




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

* Re: [gentoo-server] small tip how to really "emerge world"
  2008-09-15 11:57 ` Andreas Prieß
  2008-09-15 12:37   ` Tomasz Lutelmowski
@ 2008-09-15 13:35   ` Kent Fredric
  1 sibling, 0 replies; 9+ messages in thread
From: Kent Fredric @ 2008-09-15 13:35 UTC (permalink / raw
  To: gentoo-server

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

On Mon, Sep 15, 2008 at 11:57 PM, Andreas Prieß <ap@metaphysis.net> wrote:

>
> I think, if you have a look at the emerge option
> --with-bdeps < y | n >
> you should be able to get really, really all possible updates with emerge
> and without further gimmicks.
>
>  If it returns "0 packages" to update, try also this
>> (it takes very long time to finish, requires app-portage/portage-utils)
>>
>> # for f in `qlist -IC`; do emerge -puDvNt $f | grep ebuild; done
>>
>
> There should not be any difference if you use the mentioned option to
> emerge.


Unless of course
1) a package is installed
2) that package has been upgraded
3) that package is absent from world
4) no packages exist in world which that package is a dependant of ( via
recursive propogation )

However, imo, such entries should  either be injected into world, or removed
:)


-- 
Kent
ruby -e '[1, 2, 4, 7, 0, 9, 5, 8, 3, 10, 11, 6, 12, 13].each{|x|
print "enNOSPicAMreil kdrtf@gma.com"[(2*x)..(2*x+1)]}'

[-- Attachment #2: Type: text/html, Size: 1590 bytes --]

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

* Re: [gentoo-server] small tip how to really "emerge world"
  2008-09-15  7:51 [gentoo-server] small tip how to really "emerge world" Tomasz Lutelmowski
  2008-09-15 11:57 ` Andreas Prieß
@ 2008-09-15 14:35 ` Marius Mauch
  2008-09-15 15:01 ` Andrew Gaffney
  2008-09-16  2:14 ` Bryce Porter
  3 siblings, 0 replies; 9+ messages in thread
From: Marius Mauch @ 2008-09-15 14:35 UTC (permalink / raw
  To: gentoo-server

On Mon, 15 Sep 2008 09:51:22 +0200
"Tomasz Lutelmowski" <tomek@lutel.pl> wrote:

> Hi,
> 
> If you want to get list of all possible updates after "emerge
> --sync", 
> 
> # emerge -puDvNt world
> 
> ...might be not enough. If it returns "0 packages" to update, try
> also this (it takes very long time to finish, requires
> app-portage/portage-utils)
> 
> # for f in `qlist -IC`; do emerge -puDvNt $f | grep ebuild; done

With portage-2.2 you can achieve the same (much faster) with
# emerge -pvnN @installed

(yes, that's really -n in the options)

Marius



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

* Re: [gentoo-server] small tip how to really "emerge world"
  2008-09-15  7:51 [gentoo-server] small tip how to really "emerge world" Tomasz Lutelmowski
  2008-09-15 11:57 ` Andreas Prieß
  2008-09-15 14:35 ` Marius Mauch
@ 2008-09-15 15:01 ` Andrew Gaffney
  2008-09-16  2:14 ` Bryce Porter
  3 siblings, 0 replies; 9+ messages in thread
From: Andrew Gaffney @ 2008-09-15 15:01 UTC (permalink / raw
  To: gentoo-server

Tomasz Lutelmowski wrote:
> Hi,
> 
> If you want to get list of all possible updates after "emerge --sync", 
> 
> # emerge -puDvNt world
> 
> ...might be not enough. If it returns "0 packages" to update, try also this
> (it takes very long time to finish, requires app-portage/portage-utils)
> 
> # for f in `qlist -IC`; do emerge -puDvNt $f | grep ebuild; done

It's quite possible you have orphaned packages on your system. You might want to 
run 'emerge -p --depclean'.

-- 
Andrew Gaffney                                 http://dev.gentoo.org/~agaffney/
Gentoo Linux Developer            Catalyst/Genkernel + Release Engineering Lead



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

* Re: [gentoo-server] small tip how to really "emerge world"
  2008-09-15  7:51 [gentoo-server] small tip how to really "emerge world" Tomasz Lutelmowski
                   ` (2 preceding siblings ...)
  2008-09-15 15:01 ` Andrew Gaffney
@ 2008-09-16  2:14 ` Bryce Porter
  2008-09-16  8:02   ` Mark
  3 siblings, 1 reply; 9+ messages in thread
From: Bryce Porter @ 2008-09-16  2:14 UTC (permalink / raw
  To: gentoo-server

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

unsubscribe

[-- Attachment #2: Type: text/html, Size: 41 bytes --]

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

* RE: [gentoo-server] small tip how to really "emerge world"
  2008-09-16  2:14 ` Bryce Porter
@ 2008-09-16  8:02   ` Mark
  2008-09-16  8:59     ` Kent Fredric
  0 siblings, 1 reply; 9+ messages in thread
From: Mark @ 2008-09-16  8:02 UTC (permalink / raw
  To: gentoo-server

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

Stop sending me these fucking e mails
 
-----Oorspronkelijk bericht-----
Van: Bryce Porter [mailto:x86@shellshark.net] 
Verzonden: dinsdag 16 september 2008 4:14
Aan: gentoo-server@lists.gentoo.org
Onderwerp: Re: [gentoo-server] small tip how to really "emerge world"
 
unsubscribe

[-- Attachment #2: Type: text/html, Size: 4248 bytes --]

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

* Re: [gentoo-server] small tip how to really "emerge world"
  2008-09-16  8:02   ` Mark
@ 2008-09-16  8:59     ` Kent Fredric
  0 siblings, 0 replies; 9+ messages in thread
From: Kent Fredric @ 2008-09-16  8:59 UTC (permalink / raw
  To: gentoo-server

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

2008/9/16 Mark <atlee@planet.nl>

>  Stop sending me these fucking e mails
>
>
>
> -----Oorspronkelijk bericht-----
> *Van:* Bryce Porter [mailto:x86@shellshark.net]
> *Verzonden:* dinsdag 16 september 2008 4:14
> *Aan:* gentoo-server@lists.gentoo.org
> *Onderwerp:* Re: [gentoo-server] small tip how to really "emerge world"
>
>
>
> unsubscribe
>


People whom wish to unsubscribe, can read the raw email headers and extract
the following field that comes with every  copy:

List-Unsubscribe: <mailto:gentoo-server+unsubscribe@lists.gentoo.org
<gentoo-server%2Bunsubscribe@lists.gentoo.org>>

Do enjoy. Thanks.


-- 
Kent
ruby -e '[1, 2, 4, 7, 0, 9, 5, 8, 3, 10, 11, 6, 12, 13].each{|x|
print "enNOSPicAMreil kdrtf@gma.com"[(2*x)..(2*x+1)]}'

[-- Attachment #2: Type: text/html, Size: 2379 bytes --]

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

end of thread, other threads:[~2008-09-16  8:59 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-15  7:51 [gentoo-server] small tip how to really "emerge world" Tomasz Lutelmowski
2008-09-15 11:57 ` Andreas Prieß
2008-09-15 12:37   ` Tomasz Lutelmowski
2008-09-15 13:35   ` Kent Fredric
2008-09-15 14:35 ` Marius Mauch
2008-09-15 15:01 ` Andrew Gaffney
2008-09-16  2:14 ` Bryce Porter
2008-09-16  8:02   ` Mark
2008-09-16  8:59     ` Kent Fredric

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