Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: quickstart/
Date: Fri, 28 Oct 2016 14:41:17
Message-Id: 1477665487.003c9dc975e405c979b5fd285e23bd25ce9711e4.gokturk@gentoo
1 commit: 003c9dc975e405c979b5fd285e23bd25ce9711e4
2 Author: Manuel Rüger <manuel <AT> rueg <DOT> eu>
3 AuthorDate: Mon Oct 3 00:12:20 2016 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 28 14:38:07 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=003c9dc9
7
8 quickstart: Update the first ebuild to the latest EAPI
9
10 Drop dohtml, as it is deprecated in EAPI=6 and we should not encourage
11 new users to use it.
12
13 quickstart/text.xml | 5 ++---
14 1 file changed, 2 insertions(+), 3 deletions(-)
15
16 diff --git a/quickstart/text.xml b/quickstart/text.xml
17 index e919716..25d66bd 100644
18 --- a/quickstart/text.xml
19 +++ b/quickstart/text.xml
20 @@ -38,7 +38,7 @@ can see real ebuilds in the main tree).
21 # Distributed under the terms of the GNU General Public License v2
22 # &#36;Id&#36;
23
24 -EAPI=5
25 +EAPI=6
26
27 DESCRIPTION="Exuberant ctags generates tags files for quick source navigation"
28 HOMEPAGE="http://ctags.sourceforge.net"
29 @@ -56,7 +56,6 @@ src_install() {
30 emake DESTDIR="${D}" install
31
32 dodoc FAQ NEWS README
33 - dohtml EXTENDING.html ctags.html
34 }
35 </codesample>
36 </body>
37 @@ -162,7 +161,7 @@ installs.
38 </note>
39
40 <p>
41 -The <c>dodoc</c> and <c>dohtml</c> are helper functions for installing
42 +The <c>dodoc</c> is a helper function for installing
43 files into the relevant part of <c>/usr/share/doc</c>.
44 </p>