Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: quickstart/
Date: Wed, 24 Oct 2018 17:50:01
Message-Id: 1540403366.caf420c807bd52e6f0bdbf12845cf7f72a87c55f.grknight@gentoo
1 commit: caf420c807bd52e6f0bdbf12845cf7f72a87c55f
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 24 17:49:26 2018 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 24 17:49:26 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=caf420c8
7
8 Change eutils in quickstart to epatch and desktop where necessary
9
10 Signed-off-by: Brian Evans <grknight <AT> gentoo.org>
11
12 quickstart/text.xml | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/quickstart/text.xml b/quickstart/text.xml
16 index b82185d..19a2b9e 100644
17 --- a/quickstart/text.xml
18 +++ b/quickstart/text.xml
19 @@ -260,9 +260,9 @@ compile-time dependencies, and the <c>RDEPEND</c> lists runtime dependencies. Se
20 <p>
21 Often we need to apply patches. This is done in the <c>src_prepare</c>
22 function using the <c>epatch</c> helper function. To use <c>epatch</c>
23 -one must first tell Portage that the <c>eutils</c> eclass (an eclass is
24 +one must first tell Portage that the <c>epatch</c> eclass (an eclass is
25 like a library) is required <d/>
26 -this is done via <c>inherit eutils</c> at the top of the ebuild. Here's
27 +this is done via <c>inherit epatch</c> at the top of the ebuild. Here's
28 <c>app-misc/detox/detox-1.1.0.ebuild</c>:
29 </p>
30
31 @@ -272,7 +272,7 @@ this is done via <c>inherit eutils</c> at the top of the ebuild. Here's
32
33 EAPI=5
34
35 -inherit eutils
36 +inherit epatch
37
38 DESCRIPTION="detox safely removes spaces and strange characters from filenames"
39 HOMEPAGE="http://detox.sourceforge.net/"
40 @@ -372,7 +372,7 @@ Another more complicated example, this time based upon
41
42 EAPI=5
43
44 -inherit eutils
45 +inherit epatch desktop
46
47 DESCRIPTION="A lightweight email client and newsreader"
48 HOMEPAGE="https://sylpheed.good-day.net/"