Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pms:master commit in: /
Date: Thu, 05 Nov 2015 16:05:20
Message-Id: 1446153535.ba45c9882a6c2a1abf414b46bc3b7767b25bf3ec.ulm@gentoo
1 commit: ba45c9882a6c2a1abf414b46bc3b7767b25bf3ec
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 29 21:18:55 2015 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 29 21:18:55 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=ba45c988
7
8 Fix some of the "Underfull \hbox" warnings.
9
10 dependencies.tex | 19 ++++++++++---------
11 1 file changed, 10 insertions(+), 9 deletions(-)
12
13 diff --git a/dependencies.tex b/dependencies.tex
14 index 0582be5..46485fc 100644
15 --- a/dependencies.tex
16 +++ b/dependencies.tex
17 @@ -6,7 +6,7 @@
18
19 \begin{centertable}{Dependency classes required to be satisfied for a particular phase function}
20 \label{tab:phase-function-dependency-classes}
21 - \begin{tabular}{ p{0.2\textwidth} p{0.7\textwidth} }
22 + \begin{tabular}{P{7.5em} P{0.7\textwidth}}
23 \toprule
24 \multicolumn{1}{c}{\textbf{Phase function}} &
25 \multicolumn{1}{c}{\textbf{Satisfied dependency classes}} \\
26 @@ -59,30 +59,31 @@ be surrounded on both sides by whitespace, except at the start and end of the st
27 \item An all-of group, which consists of an open parenthesis, followed by whitespace,
28 followed by zero or more of (a dependency item of any kind followed by whitespace), followed
29 by a close parenthesis. More formally:
30 - \t{all-of ::= '(' whitespace (item whitespace)* ')'}. Permitted in all specification style
31 - variables.
32 + \t{all-of} \t{::=} \t{'(' whitespace (item whitespace)* ')'}. Permitted in all specification
33 + style variables.
34 \item An any-of group, which consists of the string \t{||}, followed by whitespace,
35 followed by an open parenthesis, followed by whitespace, followed by zero or more
36 of (a dependency item of any kind followed by whitespace), followed by a close parenthesis.
37 - More formally: \t{any-of ::= '||' whitespace '(' whitespace (item whitespace)* ')'}.
38 + More formally: \t{any-of} \t{::=} \t{'||' whitespace '(' whitespace (item whitespace)* ')'}.
39 Permitted in \t{DEPEND}, \t{RDEPEND}, \t{PDEPEND}, \t{LICENSE}, \t{REQUIRED\_USE}.
40 \item An exactly-one-of group, which consists of the string \t{\textasciicircum\textasciicircum},
41 followed by whitespace, followed by an open parenthesis, followed by whitespace, followed by
42 zero or more of (a dependency item of any kind followed by whitespace), followed by a close
43 - parenthesis. More formally: \t{exactly-one-of ::= '\textasciicircum\textasciicircum' whitespace
44 - '(' whitespace (item whitespace)* ')'}.
45 + parenthesis. More formally: \t{exactly-one-of} \t{::=} \t{'\textasciicircum\textasciicircum'
46 + whitespace '(' whitespace (item whitespace)* ')'}.
47 Permitted in \t{REQUIRED\_USE}.
48 \item \featurelabel{at-most-one-of} An at-most-one-of group, which consists of the string \t{??},
49 followed by whitespace, followed by an open parenthesis, followed by whitespace, followed by
50 zero or more of (a dependency item of any kind followed by whitespace), followed by a close
51 - parenthesis. More formally: \t{at-most-one-of ::= '??'\ whitespace '(' whitespace (item
52 - whitespace)* ')'}. Permitted in \t{REQUIRED\_USE} in EAPIs listed in
53 + parenthesis. More formally: \t{at-most-one-of} \t{::=} \t{'??'\ whitespace '(' whitespace
54 + (item whitespace)* ')'}. Permitted in \t{REQUIRED\_USE} in EAPIs listed in
55 table~\ref{tab:at-most-one-of-table} as supporting \t{REQUIRED\_USE ??}\ groups.
56 \item A use-conditional group, which consists of an optional exclamation mark, followed by
57 a use flag name, followed by a question mark, followed by whitespace, followed by
58 an open parenthesis, followed by whitespace, followed by zero or more of (a dependency item
59 of any kind followed by whitespace), followed by a close parenthesis. More formally:
60 - \t{use-conditional ::= '!'?\ flag-name '?'\ whitespace '(' whitespace (item whitespace)* ')'}.
61 + \t{use-conditional} \t{::=} \t{'!'?\ flag-name '?'\ whitespace '(' whitespace (item
62 + whitespace)* ')'}.
63 Permitted in all specification style variables.
64 \end{compactitem}