Gentoo Archives: gentoo-user

From: Rich Freeman <rich0@g.o>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Use Flags and Updating
Date: Fri, 23 May 2014 09:22:08
Message-Id: CAGfcS_kSoLcaVjv_JKh14ePnJ2_K9Uf=3q0uUuxShuOugLfxTQ@mail.gmail.com
In Reply to: Re: [gentoo-user] Use Flags and Updating by Marc Joliet
1 On Thu, May 22, 2014 at 3:54 AM, Marc Joliet <marcec@×××.de> wrote:
2 > I think nowadays one would prefer --keep-going, which automatically resumes on
3 > failure (and recomputes the dependency tree!), and prints a list of failed
4 > packages when it's finished. However its output is more verbose than just "ok"
5 > and "failed" (it'll print the build.log if it's only one package, IIRC).
6
7 Yup. Upon reflection the whole script can be replaced by:
8 emerge -uvD --changed-use --color=n --with-bdeps=y --quiet-build
9 --buildpkgonly --keep-going world | col -bx | mutt -s "world update"
10 you@×××××××.com
11
12 That will give you a decent report of what is new, build binary
13 packages, do it in parallel, and not recompute dependencies for every
14 package.
15
16 Rich