aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2015-08-17 17:30:20 +0200
committerJohannes Huber <johu@gentoo.org>2015-08-17 17:30:20 +0200
commit5a8e432771b80cbc652ad53321c75606d239cedd (patch)
tree108824570b12c83f1b07eff23e5af49bb0bab035 /ebuild-writing
parentMerge remote-tracking branch 'github/master' (diff)
downloaddevmanual-5a8e432771b80cbc652ad53321c75606d239cedd.tar.gz
devmanual-5a8e432771b80cbc652ad53321c75606d239cedd.tar.bz2
devmanual-5a8e432771b80cbc652ad53321c75606d239cedd.zip
Consistent EAPI declaration
Most of occurrence of the EAPI declarations are without the quotes, so align the rest for more consistency.
Diffstat (limited to 'ebuild-writing')
-rw-r--r--ebuild-writing/functions/src_prepare/epatch/text.xml2
-rw-r--r--ebuild-writing/functions/src_prepare/text.xml2
-rw-r--r--ebuild-writing/using-eclasses/text.xml2
3 files changed, 3 insertions, 3 deletions
diff --git a/ebuild-writing/functions/src_prepare/epatch/text.xml b/ebuild-writing/functions/src_prepare/epatch/text.xml
index 1322a5e..91d869e 100644
--- a/ebuild-writing/functions/src_prepare/epatch/text.xml
+++ b/ebuild-writing/functions/src_prepare/epatch/text.xml
@@ -8,7 +8,7 @@
The canonical way of applying patches in ebuilds is to
use <c>epatch</c> (from <c>eutils.eclass</c>, which you must make sure
to import!) inside <c>src_prepare</c>. This function automatically
-handles <c>-p</c> levels, <c>gunzip</c> and so on as necessary. Also note that olds ebuild may still use src_unpack to apply patches. This is because those ebuilds are based in EAPI="1". You are advised to use EAPI="2" and apply your patches in src_prepare function instead.
+handles <c>-p</c> levels, <c>gunzip</c> and so on as necessary. Also note that olds ebuild may still use src_unpack to apply patches. This is because those ebuilds are based in EAPI=1. You are advised to use EAPI=2 and apply your patches in src_prepare function instead.
</p>
<p>
diff --git a/ebuild-writing/functions/src_prepare/text.xml b/ebuild-writing/functions/src_prepare/text.xml
index 29b1588..3d9030c 100644
--- a/ebuild-writing/functions/src_prepare/text.xml
+++ b/ebuild-writing/functions/src_prepare/text.xml
@@ -32,7 +32,7 @@
<title>Default <c>src_prepare</c></title>
<body>
<p>
-Starting from EAPI="2", the src_prepare function is the appropriate area to perform
+Starting from EAPI=2, the src_prepare function is the appropriate area to perform
any kind of patching and source code manipulation, instead of src_unpack.
</p>
<codesample lang="ebuild">
diff --git a/ebuild-writing/using-eclasses/text.xml b/ebuild-writing/using-eclasses/text.xml
index de9ec7f..503ce34 100644
--- a/ebuild-writing/using-eclasses/text.xml
+++ b/ebuild-writing/using-eclasses/text.xml
@@ -34,7 +34,7 @@ After inheriting an eclass, its provided functions can be used as normal. Here's
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI="2"
+EAPI=2
inherit eutils bash-completion flag-o-matic autotools