Gentoo Archives: gentoo-user

From: v_2e@×××.net
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Fetch List
Date: Wed, 06 Jun 2012 05:03:34
Message-Id: 20120606075404.0a16de9b.v_2e@ukr.net
In Reply to: [gentoo-user] Fetch List by Silvio Siefke
1 Hello!
2
3 On Tue, 5 Jun 2012 13:37:11 +0200
4 Silvio Siefke <siefke_listen@×××.de> wrote:
5
6 > Hello,
7 >
8 > is there a option that i can build a list of Requirements to download
9 > of a ebuild?
10 >
11 I usually use
12
13 emerge --pretend --fetchonly media-gfx/inkscape > files_to_fetch.txt
14
15 or in a short form
16
17 emerge -fp media-gfx/inkscape > files_to_fetch.txt
18
19 And after that I download the files with wget as follows:
20
21 cat files_to_fetch.txt | cut -d " "-f 1| wget -c -i -
22
23 Note: if there are some errors during download, you may try to use
24 different fields in 'cut' -- like "-f 2" or "-f 3" and so on.
25
26 Hope, this helps. :)
27
28 Regards,
29 Vladimir
30
31 -----
32 <v_2e@×××.net>