diff options
author | Ulrich Müller <ulm@gentoo.org> | 2020-01-15 21:08:13 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2020-01-16 19:49:08 +0100 |
commit | 67b22764d134fdf6812efaa495c563ae1e639b9c (patch) | |
tree | 527082c63ac4e76d7bfb8564ba9023573cd14cbd /ebuild-writing | |
parent | devbook.xsl: Fix links to eclass references. (diff) | |
download | devmanual-67b22764d134fdf6812efaa495c563ae1e639b9c.tar.gz devmanual-67b22764d134fdf6812efaa495c563ae1e639b9c.tar.bz2 devmanual-67b22764d134fdf6812efaa495c563ae1e639b9c.zip |
Revert "Fixed eclass-reference links"
This is now fixed in devbook.xsl, so the changes in the text
(which were meant as a stop-gap measure) can be reverted again.
This reverts commit 481c88ea7ca8d93b17ac6668186216baf50daab9.
Bug: https://bugs.gentoo.org/475332
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'ebuild-writing')
4 files changed, 10 insertions, 9 deletions
diff --git a/ebuild-writing/functions/src_compile/build-environment/text.xml b/ebuild-writing/functions/src_compile/build-environment/text.xml index 9d2122e..706b9fc 100644 --- a/ebuild-writing/functions/src_compile/build-environment/text.xml +++ b/ebuild-writing/functions/src_compile/build-environment/text.xml @@ -141,7 +141,7 @@ functions can be used here. </codesample> <p> -See <uri link="::eclass-reference/flag-o-matic.eclass/">flag-o-matic.eclass</uri> for a full reference. +See <uri link="::eclass-reference/flag-o-matic.eclass/"/> for a full reference. </p> </body> </section> diff --git a/ebuild-writing/functions/src_compile/building/text.xml b/ebuild-writing/functions/src_compile/building/text.xml index 679879a..4245c5f 100644 --- a/ebuild-writing/functions/src_compile/building/text.xml +++ b/ebuild-writing/functions/src_compile/building/text.xml @@ -34,8 +34,9 @@ some MIPS and SPARC systems. <p> Sometimes a package will try to use a bizarre compiler, or will need to be told which compiler to use. In these situations, the <c>tc-getCC()</c> function from -<uri link="::eclass-reference/toolchain-funcs.eclass/">toolchain-funcs.eclass</uri> should be used. Other similar functions are available -<d/> these are documented in <c>man toolchain-funcs.eclass</c>. +<uri link="::eclass-reference/toolchain-funcs.eclass/"/> should be used. +Other similar functions are available <d/> these are documented in +<c>man toolchain-funcs.eclass</c>. </p> <note> diff --git a/ebuild-writing/functions/src_unpack/svn-sources/text.xml b/ebuild-writing/functions/src_unpack/svn-sources/text.xml index ed76798..5e0b2a8 100644 --- a/ebuild-writing/functions/src_unpack/svn-sources/text.xml +++ b/ebuild-writing/functions/src_unpack/svn-sources/text.xml @@ -6,7 +6,7 @@ <body> <p> As with CVS, an eclass exists for working directly with upstream -Subversion repositories. See <uri link="::eclass-reference/subversion.eclass/">subversion.eclass</uri> +Subversion repositories. See <uri link="::eclass-reference/subversion.eclass/"/> for a full list of functions and variables. Also see the <uri link="::ebuild-writing/functions/src_unpack/cvs-sources"/> section. @@ -89,7 +89,7 @@ following variables are also noteworthy: </table> <p> -See the eclass itself and <uri link="::eclass-reference/subversion.eclass/">subversion.eclass</uri> +See the eclass itself and <uri link="::eclass-reference/subversion.eclass/"/> for the full range of options. To perform the actual checkout, use the <c>subversion_src_unpack</c> function, which calls both <c>subversion_svn_fetch</c> and <c>subversion_bootstrap</c> diff --git a/ebuild-writing/using-eclasses/text.xml b/ebuild-writing/using-eclasses/text.xml index c46d16f..b957ca2 100644 --- a/ebuild-writing/using-eclasses/text.xml +++ b/ebuild-writing/using-eclasses/text.xml @@ -7,7 +7,7 @@ <p> An eclass is a collection (library) of functions or functionality that is shared between packages. See <uri link="::eclass-writing/" /> for the full story on what -eclasses can do, how they work and how to write them, and <uri link="::eclass-reference/">the eclass reference</uri> +eclasses can do, how they work and how to write them, and <uri link="::eclass-reference/"/> for documentation on various commonly used eclasses. This section only explains how to use an eclass which has already been written. </p> @@ -78,10 +78,10 @@ Note the <c>inherit</c> immediately after the header. </p> <p> -The <c>autotools</c> eclass (see <uri link="::eclass-reference/autotools.eclass/">autotools.eclass</uri>) is needed to get the +The <c>autotools</c> eclass (see <uri link="::eclass-reference/autotools.eclass/"/>) is needed to get the <c>eautoreconf</c> function. The <c>flag-o-matic</c> eclass (see <uri -link="::eclass-reference/flag-o-matic.eclass/">flag-o-matic.eclass</uri>) is needed for <c>replace-flags</c>, and -the <c>bash-completion-r1</c> eclass (<uri link="::eclass-reference/bash-completion-r1.eclass/">bash-completion-r1.eclass</uri>) is used +link="::eclass-reference/flag-o-matic.eclass/"/>) is needed for <c>replace-flags</c>, and +the <c>bash-completion-r1</c> eclass (<uri link="::eclass-reference/bash-completion-r1.eclass/"/>) is used to handle the bash completion file via <c>dobashcomp</c>. </p> |