Gentoo Archives: gentoo-pms

From: "Michał Górny" <mgorny@g.o>
To: gentoo-pms@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: [gentoo-pms] [PATCH] dependencies: Add extra vert spacing in phase-dep table
Date: Sun, 24 Sep 2017 21:25:58
Message-Id: 20170924212549.18048-1-mgorny@gentoo.org
In Reply to: Re: [gentoo-pms] [PATCH] dependencies: Add \midrule between rows in phase-dep table by Ulrich Mueller
1 Add additional vertical space between rows of the 'Dependency classes
2 required to be satisfied for a particular phase function' to improve
3 readbility. For all but the last row, the phase function cell spans
4 multiple lines while the dependency class cell is one line only. Without
5 the extra spacing, it is not apparent at a first glance whether
6 a particular phase function uses dependencies above or below it.
7 ---
8 dependencies.tex | 3 +++
9 1 file changed, 3 insertions(+)
10
11 diff --git a/dependencies.tex b/dependencies.tex
12 index 21eeba5..51455d0 100644
13 --- a/dependencies.tex
14 +++ b/dependencies.tex
15 @@ -13,11 +13,14 @@
16 \midrule
17 \t{pkg_pretend}, \t{pkg_setup}, \t{pkg_info}, \t{pkg_nofetch} &
18 None (ebuilds can rely only on the packages in the system set) \\
19 + \addlinespace
20 \t{src_unpack}, \t{src_prepare}, \t{src_configure}, \t{src_compile}, \t{src_test},
21 \t{src_install} & \t{DEPEND} \\
22 + \addlinespace
23 \t{pkg_preinst}, \t{pkg_postinst}, \t{pkg_prerm}, \t{pkg_postrm} &
24 \t{RDEPEND} (unless the particular dependency results in a circular dependency, in which
25 case it may be installed later) \\
26 + \addlinespace
27 \t{pkg_config} & \t{RDEPEND}, \t{PDEPEND} \\
28 \bottomrule
29 \end{tabular}
30 --
31 2.14.1

Replies