public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] list of emerged programs?
@ 2009-06-28 20:06 James
  2009-06-28 20:19 ` Justin
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: James @ 2009-06-28 20:06 UTC (permalink / raw
  To: gentoo-user

All,

Is there a simple, quick way to list all of the packages that have
been emerged in cronological order?

-j



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

* Re: [gentoo-user] list of emerged programs?
  2009-06-28 20:06 [gentoo-user] list of emerged programs? James
@ 2009-06-28 20:19 ` Justin
  2009-06-28 20:25   ` [gentoo-user] " Nikos Chantziaras
  2009-06-28 20:23 ` Nikos Chantziaras
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Justin @ 2009-06-28 20:19 UTC (permalink / raw
  To: gentoo-user

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

James wrote:
> All,
> 
> Is there a simple, quick way to list all of the packages that have
> been emerged in cronological order?
> 
> -j
> 
genlop -l

qlop -l


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

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

* [gentoo-user]  Re: list of emerged programs?
  2009-06-28 20:06 [gentoo-user] list of emerged programs? James
  2009-06-28 20:19 ` Justin
@ 2009-06-28 20:23 ` Nikos Chantziaras
  2009-06-28 20:31   ` James
  2009-06-28 20:37   ` Daniel Troeder
  2009-06-28 21:17 ` [gentoo-user] " Roger Mason
  2009-06-29  9:35 ` Peter Humphrey
  3 siblings, 2 replies; 8+ messages in thread
From: Nikos Chantziaras @ 2009-06-28 20:23 UTC (permalink / raw
  To: gentoo-user

On 06/28/2009 11:06 PM, James wrote:
> All,
>
> Is there a simple, quick way to list all of the packages that have
> been emerged in cronological order?

for f in `ls -rt \`find /var/db/pkg -name "*.ebuild"\``; do basename $f 
.ebuild; done

(The above command is just one line, in case your mail/news client 
breaks it into two lines.)




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

* [gentoo-user]  Re: list of emerged programs?
  2009-06-28 20:19 ` Justin
@ 2009-06-28 20:25   ` Nikos Chantziaras
  0 siblings, 0 replies; 8+ messages in thread
From: Nikos Chantziaras @ 2009-06-28 20:25 UTC (permalink / raw
  To: gentoo-user

On 06/28/2009 11:19 PM, Justin wrote:
> James wrote:
>> All,
>>
>> Is there a simple, quick way to list all of the packages that have
>> been emerged in cronological order?
>>
>> -j
>>
> genlop -l
>
> qlop -l

Or that :P :P :P




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

* Re: [gentoo-user] Re: list of emerged programs?
  2009-06-28 20:23 ` Nikos Chantziaras
@ 2009-06-28 20:31   ` James
  2009-06-28 20:37   ` Daniel Troeder
  1 sibling, 0 replies; 8+ messages in thread
From: James @ 2009-06-28 20:31 UTC (permalink / raw
  To: gentoo-user

Thanks to you and Justin for the insanely quick answers.

-j

On Sun, Jun 28, 2009 at 4:23 PM, Nikos Chantziaras<realnc@arcor.de> wrote:
> On 06/28/2009 11:06 PM, James wrote:
>>
>> All,
>>
>> Is there a simple, quick way to list all of the packages that have
>> been emerged in cronological order?
>
> for f in `ls -rt \`find /var/db/pkg -name "*.ebuild"\``; do basename $f
> .ebuild; done
>
> (The above command is just one line, in case your mail/news client breaks it
> into two lines.)
>



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

* Re: [gentoo-user]  Re: list of emerged programs?
  2009-06-28 20:23 ` Nikos Chantziaras
  2009-06-28 20:31   ` James
@ 2009-06-28 20:37   ` Daniel Troeder
  1 sibling, 0 replies; 8+ messages in thread
From: Daniel Troeder @ 2009-06-28 20:37 UTC (permalink / raw
  To: gentoo-user

On Sun, 2009-06-28 at 23:23 +0300, Nikos Chantziaras wrote:
> On 06/28/2009 11:06 PM, James wrote:
> > All,
> >
> > Is there a simple, quick way to list all of the packages that have
> > been emerged in cronological order?
> 
> for f in `ls -rt \`find /var/db/pkg -name "*.ebuild"\``; do basename $f 
> .ebuild; done
> 
> (The above command is just one line, in case your mail/news client 
> breaks it into two lines.)

$ cd /var/db/pkg/; find * -maxdepth 1 -mindepth 1

$ eix -I --only-names




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

* Re: [gentoo-user] list of emerged programs?
  2009-06-28 20:06 [gentoo-user] list of emerged programs? James
  2009-06-28 20:19 ` Justin
  2009-06-28 20:23 ` Nikos Chantziaras
@ 2009-06-28 21:17 ` Roger Mason
  2009-06-29  9:35 ` Peter Humphrey
  3 siblings, 0 replies; 8+ messages in thread
From: Roger Mason @ 2009-06-28 21:17 UTC (permalink / raw
  To: gentoo-user

Hello,

James <jtp@nc.rr.com> writes:

> Is there a simple, quick way to list all of the packages that have
> been emerged in cronological order?

Listing /var/log/portage with appropriate options to ls may work.

Cheers,
Roger



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

* Re: [gentoo-user] list of emerged programs?
  2009-06-28 20:06 [gentoo-user] list of emerged programs? James
                   ` (2 preceding siblings ...)
  2009-06-28 21:17 ` [gentoo-user] " Roger Mason
@ 2009-06-29  9:35 ` Peter Humphrey
  3 siblings, 0 replies; 8+ messages in thread
From: Peter Humphrey @ 2009-06-29  9:35 UTC (permalink / raw
  To: gentoo-user

On Sunday 28 June 2009 21:06:15 James wrote:

> Is there a simple, quick way to list all of the packages that have
> been emerged in cronological order?

grep '::: completed' /var/log/emerge.log

-- 
Rgds
Peter



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

end of thread, other threads:[~2009-06-29  9:39 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-28 20:06 [gentoo-user] list of emerged programs? James
2009-06-28 20:19 ` Justin
2009-06-28 20:25   ` [gentoo-user] " Nikos Chantziaras
2009-06-28 20:23 ` Nikos Chantziaras
2009-06-28 20:31   ` James
2009-06-28 20:37   ` Daniel Troeder
2009-06-28 21:17 ` [gentoo-user] " Roger Mason
2009-06-29  9:35 ` Peter Humphrey

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