aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2020-01-15 21:08:13 +0100
committerUlrich Müller <ulm@gentoo.org>2020-01-16 19:49:08 +0100
commit67b22764d134fdf6812efaa495c563ae1e639b9c (patch)
tree527082c63ac4e76d7bfb8564ba9023573cd14cbd
parentdevbook.xsl: Fix links to eclass references. (diff)
downloaddevmanual-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>
-rw-r--r--appendices/contributors/text.xml2
-rw-r--r--ebuild-writing/functions/src_compile/build-environment/text.xml2
-rw-r--r--ebuild-writing/functions/src_compile/building/text.xml5
-rw-r--r--ebuild-writing/functions/src_unpack/svn-sources/text.xml4
-rw-r--r--ebuild-writing/using-eclasses/text.xml8
-rw-r--r--tasks-reference/completion/text.xml3
6 files changed, 12 insertions, 12 deletions
diff --git a/appendices/contributors/text.xml b/appendices/contributors/text.xml
index db7694d..d06ccf9 100644
--- a/appendices/contributors/text.xml
+++ b/appendices/contributors/text.xml
@@ -17,7 +17,7 @@ This page lists the contributions to the Gentoo Development Guide:
</author>
<author name="Aaron Walker" email="ka0ttic@gentoo.org">
<uri link="::tasks-reference/completion"/>,
- <uri link="::eclass-reference/subversion.eclass">subversion.eclass</uri>
+ <uri link="::eclass-reference/subversion.eclass"/>
</author>
<author name="Robert Coie" email="rac@gentoo.org">
<uri link="::appendices/editor-configuration/xemacs"/>
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>
diff --git a/tasks-reference/completion/text.xml b/tasks-reference/completion/text.xml
index bda584c..8b76be7 100644
--- a/tasks-reference/completion/text.xml
+++ b/tasks-reference/completion/text.xml
@@ -8,8 +8,7 @@
Since v2.05a, <c>bash</c> has offered intelligent programmable completion. Writing
such completions for your own programs/things you maintain is relatively easy
provided you know bash already. See
-<uri link="::eclass-reference/bash-completion-r1.eclass/">
-bash-completion-r1.eclass</uri>
+<uri link="::eclass-reference/bash-completion-r1.eclass/"/>
for how to install completion files.
</p>
</body>