aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2020-01-20 17:32:43 +0100
committerUlrich Müller <ulm@gentoo.org>2020-01-23 01:01:01 +0100
commit9e1a56d2ff7389708c55423037cb96570e4d52ed (patch)
tree256b3746bff7969f34508fc1610b08ebd79751b9 /ebuild-writing/variables/text.xml
parentgeneral-concepts/dependencies: Drop section on if-else USE blocks. (diff)
downloaddevmanual-9e1a56d2ff7389708c55423037cb96570e4d52ed.tar.gz
devmanual-9e1a56d2ff7389708c55423037cb96570e4d52ed.tar.bz2
devmanual-9e1a56d2ff7389708c55423037cb96570e4d52ed.zip
ebuild-writing/eapi: Move EAPI=2 information to other sections.
- doman language support: incorporated into function-reference/install-functions - Blockers incorporated into general-concepts/dependencies (also say "weak" and "strong" blockers instead of "soft" and "hard", in order to agree with the terms used in PMS) - USE dependencies: already in general-concepts/dependencies - SRC_URI arrows: incorporated into ebuild-writing/variables - src_prepare: already in ebuild-writing/functions/src_prepare - src_configure: already in ebuild-writing/functions/src_configure - Execution order: already in ebuild-writing/functions - Default phase functions moved to ebuild-writing/functions Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'ebuild-writing/variables/text.xml')
-rw-r--r--ebuild-writing/variables/text.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/ebuild-writing/variables/text.xml b/ebuild-writing/variables/text.xml
index b9310a1..66a9822 100644
--- a/ebuild-writing/variables/text.xml
+++ b/ebuild-writing/variables/text.xml
@@ -388,11 +388,12 @@ and in the local distdir.
<p>
Here we download a file from upstream which has a plain name like
<c>1.0.tar.gz</c> and save/mirror it with a better name like
-<c>thepackage-1.0.tar.gz</c>.
+<c>thepackage-1.0.tar.gz</c>. As usual, all tokens, including the operator
+and the output file name, must be separated by whitespace.
</p>
<codesample lang="ebuild">
-SRC_URI="https://example.com/files/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://example.com/files/${PV}.tar.gz -&gt; ${P}.tar.gz"
</codesample>
</body>