From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 425CA139694 for ; Mon, 10 Apr 2017 18:13:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D754F21C1D3; Mon, 10 Apr 2017 18:12:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5DF521C1CD for ; Mon, 10 Apr 2017 18:12:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 884D034168B for ; Mon, 10 Apr 2017 18:12:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E33AC7452 for ; Mon, 10 Apr 2017 18:12:18 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1491840048.251bdc7a835b9a584e19d757191c24aa9bec9710.ulm@gentoo> Subject: [gentoo-commits] proj/pms:eapi-7 commit in: / X-VCS-Repository: proj/pms X-VCS-Files: ebuild-functions.tex ebuild-vars.tex eclasses.tex pkg-mgr-commands.tex profiles.tex X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 251bdc7a835b9a584e19d757191c24aa9bec9710 X-VCS-Branch: eapi-7 Date: Mon, 10 Apr 2017 18:12:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bf3ebaba-87db-4e56-8232-a0a8b15b5862 X-Archives-Hash: 0234607cf5325647af726cac77feef12 Message-ID: <20170410181218.PtkXH62ITo46gi3IT-wcvzbz3PafH6H6nj5WtyLi34I@z> commit: 251bdc7a835b9a584e19d757191c24aa9bec9710 Author: Ulrich Müller gentoo org> AuthorDate: Mon Apr 10 16:00:48 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Apr 10 16:00:48 2017 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=251bdc7a In captions, use teletype font where appropriate. ebuild-functions.tex | 16 ++++++++-------- ebuild-vars.tex | 2 +- eclasses.tex | 2 +- pkg-mgr-commands.tex | 14 +++++++------- profiles.tex | 2 +- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/ebuild-functions.tex b/ebuild-functions.tex index e808a6a..a744ae1 100644 --- a/ebuild-functions.tex +++ b/ebuild-functions.tex @@ -106,7 +106,7 @@ The initial working directory must be \t{WORKDIR}, and the default implementatio the ebuild lacks the \t{src\_unpack} function shall behave as: \begin{listing}[H] -\caption{src\_unpack} +\caption{\t{src\_unpack}} \begin{verbatim} src_unpack() { if [[ -n ${A} ]]; then @@ -130,7 +130,7 @@ section~\ref{sec:s-to-workdir-fallback}. as: \begin{listing}[H] -\caption{src\_prepare, format~6} +\caption{\t{src\_prepare}, format~6} \begin{verbatim} src_prepare() { if declare -p PATCHES | grep -q "^declare -a "; then @@ -174,7 +174,7 @@ The \t{src\_configure} function configures the package's build environment. The implementation used when the ebuild lacks the \t{src\_configure} function shall behave as: \begin{listing}[H] -\caption{src\_configure} +\caption{\t{src\_configure}} \begin{verbatim} src_configure() { if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then @@ -211,7 +211,7 @@ section~\ref{sec:s-to-workdir-fallback}. as: \begin{listing}[H] -\caption{src\_compile, format~0} +\caption{\t{src\_compile}, format~0} \begin{verbatim} src_compile() { if [[ -x ./configure ]]; then @@ -229,7 +229,7 @@ src_compile() { as: \begin{listing}[H] -\caption{src\_compile, format~1} +\caption{\t{src\_compile}, format~1} \begin{verbatim} src_compile() { if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then @@ -247,7 +247,7 @@ src_compile() { as: \begin{listing}[H] -\caption{src\_compile, format~2} +\caption{\t{src\_compile}, format~2} \begin{verbatim} src_compile() { if [[ -f Makefile ]] || [[ -f GNUmakefile ]] || [[ -f makefile ]]; then @@ -316,7 +316,7 @@ section~\ref{sec:s-to-workdir-fallback}. as: \begin{listing}[H] -\caption{src\_install, format~4} +\caption{\t{src\_install}, format~4} \begin{verbatim} src_install() { if [[ -f Makefile ]] || [[ -f GNUmakefile ]] || [[ -f makefile ]]; then @@ -343,7 +343,7 @@ src_install() { as: \begin{listing}[H] -\caption{src\_install, format~6} +\caption{\t{src\_install}, format~6} \begin{verbatim} src_install() { if [[ -f Makefile ]] || [[ -f GNUmakefile ]] || [[ -f makefile ]]; then diff --git a/ebuild-vars.tex b/ebuild-vars.tex index 6c5a396..ecb50df 100644 --- a/ebuild-vars.tex +++ b/ebuild-vars.tex @@ -177,7 +177,7 @@ the ebuild portion, and any \t{DEPEND} value set in an eclass does not get treat \t{RDEPEND}. \ChangeWhenAddingAnEAPI{6} -\begin{centertable}{EAPIs with \t{RDEPEND=DEPEND} Default} +\begin{centertable}{EAPIs with \t{RDEPEND=DEPEND} default} \label{tab:rdepend-depend-table} \begin{tabular}{ll} \toprule diff --git a/eclasses.tex b/eclasses.tex index 0f172f7..51c9a83 100644 --- a/eclasses.tex +++ b/eclasses.tex @@ -49,7 +49,7 @@ call the eclass-defined version from it. The use of it is best illustrated by an given in listing~\ref{lst:export-functions} and is a snippet from a hypothetical \t{foo.eclass}. \begin{listing} -\caption{EXPORT\_FUNCTIONS example: foo.eclass} \label{lst:export-functions} +\caption{\t{EXPORT\_FUNCTIONS} example: \t{foo.eclass}} \label{lst:export-functions} \begin{verbatim} foo_src_compile() { diff --git a/pkg-mgr-commands.tex b/pkg-mgr-commands.tex index 0847e4c..929cb43 100644 --- a/pkg-mgr-commands.tex +++ b/pkg-mgr-commands.tex @@ -26,7 +26,7 @@ The following commands affect this behaviour: \end{description} \ChangeWhenAddingAnEAPI{6} -\begin{centertable}{EAPI Command Failure Behaviour} +\begin{centertable}{EAPI command failure behaviour} \label{tab:commands-die-table} \begin{tabular}{lll} \toprule @@ -166,7 +166,7 @@ Ebuilds must not run any of these commands once the current phase function has r \end{description} \begin{algorithm} -\caption{eapply logic} \label{alg:eapply} +\caption{\t{eapply} logic} \label{alg:eapply} \begin{algorithmic}[1] \IF{any parameter is equal to \t{"-{}-"}} \STATE collect all parameters before the first \t{"-{}-"} in the \t{options} array @@ -283,7 +283,7 @@ current phase function has returned. \t{nonfatal}, in which case it must return non-zero exit status. \begin{algorithm} -\caption{econf -{}-libdir logic} \label{alg:econf-libdir} +\caption{\t{econf -{}-libdir} logic} \label{alg:econf-libdir} \begin{algorithmic}[1] \STATE let prefix=\$\{EPREFIX\}/usr \IF{the caller specified -{}-prefix=\$p} @@ -323,7 +323,7 @@ current phase function has returned. Algorithm~\ref{alg:ebuild-libdir}. \begin{listing}[H] -\caption{einstall command} \label{lst:einstall} +\caption{\t{einstall} command} \label{lst:einstall} \begin{verbatim} emake \ prefix="${ED}"/usr \ @@ -757,7 +757,7 @@ table~\ref{tab:use-list-strictness}. \end{description} \ChangeWhenAddingAnEAPI{6} -\begin{centertable}{EAPI Behaviour for Use Queries not in IUSE\_EFFECTIVE} +\begin{centertable}{EAPI behaviour for use queries not in \t{IUSE\_EFFECTIVE}} \label{tab:use-list-strictness} \begin{tabular}{ll} \toprule @@ -928,7 +928,7 @@ has returned. \end{description} \begin{algorithm} -\caption{einstalldocs logic} \label{alg:einstalldocs} +\caption{\t{einstalldocs} logic} \label{alg:einstalldocs} \begin{algorithmic}[1] \STATE save the value of the install directory for \t{dodoc} \STATE set the install directory for \t{dodoc} to \t{/usr/share/doc/\$\{PF\}} @@ -956,7 +956,7 @@ has returned. \end{algorithm} \begin{algorithm} -\caption{get\_libdir logic} \label{alg:get-libdir} +\caption{\t{get\_libdir} logic} \label{alg:get-libdir} \begin{algorithmic}[1] \STATE let libdir=lib \IF{the ABI environment variable is set} diff --git a/profiles.tex b/profiles.tex index 35f85b3..ff791ac 100644 --- a/profiles.tex +++ b/profiles.tex @@ -141,7 +141,7 @@ The precise manner in which the eight files interact is less simple, and is best of the algorithm used to determine whether a flag is masked for a given package version. This is described in Algorithm~\ref{alg:use-masking}. \begin{algorithm} -\caption{USE masking logic} \label{alg:use-masking} +\caption{\t{USE} masking logic} \label{alg:use-masking} \begin{algorithmic}[1] \STATE let masked = false \FOR{each profile in the inheritance tree, depth first}