Gentoo Archives: gentoo-user

From: Alexander Kapshuk <alexander.kapshuk@×××××.com>
To: Gentoo mailing list <gentoo-user@l.g.o>
Subject: Re: [gentoo-user] Updateing linux-headers ...
Date: Tue, 14 Jun 2016 06:26:31
Message-Id: CAJ1xhMUFZdm3fRTvuZLeLdATdP5-OLecxk=B6mXkdxwX=u3XQQ@mail.gmail.com
In Reply to: Re: [gentoo-user] Updateing linux-headers ... by Dale
1 On Mon, Jun 13, 2016 at 11:29 AM, Dale <rdalek1967@×××××.com> wrote:
2 > J. Roeleveld wrote:
3 >> On Saturday, June 11, 2016 03:54:32 PM Alexander Kapshuk wrote:
4 >>>
5 >>> If what you're after is rebuilding all the packages that depend on
6 >>> linux-headers, a command line below might be one way of doing it:
7 >>>
8 >>> emerge -a `equery -q d '=sys-kernel/linux-headers-4.3' | sed
9 >>> 's/\-[0-9].*//'` `
10 >>>
11 >>> These are the packages that would be merged, in order:
12 >>>
13 >>> Calculating dependencies ..... done!
14 >>> [ebuild R ] virtual/os-headers-0
15 >>> [ebuild R ] sys-apps/busybox-1.24.2
16 >>> [ebuild R ] sys-libs/mtdev-1.1.5
17 >>> [ebuild R ] dev-util/strace-4.9
18 >>> [ebuild R ] sys-apps/hwinfo-21.4
19 >>> [ebuild R ] sys-libs/libcap-ng-0.7.7
20 >>> [ebuild R ] sys-libs/libseccomp-2.3.0
21 >>> [ebuild R ] sys-apps/iproute2-4.4.0
22 >>> [ebuild R ] sys-libs/libcap-2.24-r2
23 >>> [ebuild R ] media-gfx/sane-backends-1.0.24-r6
24 >>> [ebuild R ] media-video/ffmpeg-2.8.6
25 >>> [ebuild R ] x11-drivers/xf86-input-evdev-2.9.2
26 >>> [ebuild R ] sys-fs/udev-225-r1
27 >>> [ebuild R ] sys-fs/udisks-2.1.4
28 >>>
29 >>> Would you like to merge these packages? [Yes/No]
30 >> Please ensure you pass " --oneshot " or " -1 " to emerge. Otherwise all these
31 >> will end up in your world-file causing interesting blockers later.
32 >>
33 >> --
34 >> Joost
35 >>
36 >>
37 >
38 >
39 > One other option, add it to emerge options in make.conf. Then if you
40 > really want it in world, use --select or add it to the world file
41 > manually. I added it to my make.conf file a long time ago. It makes it
42 > much easier to keep a clean world file. I would always forget to add
43 > that option.
44 >
45 > Dale
46 >
47 > :-) :-)
48 >
49
50 Understood. Thanks.