public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/devmanual:master commit in: tasks-reference/completion/, ebuild-writing/functions/src_unpack/svn-sources/, ...
@ 2020-01-16 18:53 Ulrich Müller
  0 siblings, 0 replies; only message in thread
From: Ulrich Müller @ 2020-01-16 18:53 UTC (permalink / raw
  To: gentoo-commits

commit:     67b22764d134fdf6812efaa495c563ae1e639b9c
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 15 20:08:13 2020 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Jan 16 18:49:08 2020 +0000
URL:        https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=67b22764

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 <AT> gentoo.org>

 appendices/contributors/text.xml                                | 2 +-
 ebuild-writing/functions/src_compile/build-environment/text.xml | 2 +-
 ebuild-writing/functions/src_compile/building/text.xml          | 5 +++--
 ebuild-writing/functions/src_unpack/svn-sources/text.xml        | 4 ++--
 ebuild-writing/using-eclasses/text.xml                          | 8 ++++----
 tasks-reference/completion/text.xml                             | 3 +--
 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>


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-01-16 18:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-16 18:53 [gentoo-commits] proj/devmanual:master commit in: tasks-reference/completion/, ebuild-writing/functions/src_unpack/svn-sources/, Ulrich Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox