Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/vilearn/
Date: Mon, 29 Nov 2021 13:27:40
Message-Id: 1638192437.425ac573dc53dc05444b300f993e9115a36bfb15.hattya@gentoo
1 commit: 425ac573dc53dc05444b300f993e9115a36bfb15
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 29 13:27:17 2021 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 29 13:27:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=425ac573
7
8 app-doc/vilearn: update to EAPI 8
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 app-doc/vilearn/metadata.xml | 7 ++++---
14 app-doc/vilearn/vilearn-1.0.ebuild | 14 +++++++++-----
15 2 files changed, 13 insertions(+), 8 deletions(-)
16
17 diff --git a/app-doc/vilearn/metadata.xml b/app-doc/vilearn/metadata.xml
18 index 9a97f3478d31..987ce1bc2ed6 100644
19 --- a/app-doc/vilearn/metadata.xml
20 +++ b/app-doc/vilearn/metadata.xml
21 @@ -1,7 +1,8 @@
22 <?xml version="1.0" encoding="UTF-8"?>
23 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
24 <pkgmetadata>
25 - <maintainer type="person">
26 - <email>hattya@g.o</email>
27 - </maintainer>
28 + <maintainer type="person">
29 + <email>hattya@g.o</email>
30 + <name>Akinori Hattori</name>
31 + </maintainer>
32 </pkgmetadata>
33
34 diff --git a/app-doc/vilearn/vilearn-1.0.ebuild b/app-doc/vilearn/vilearn-1.0.ebuild
35 index 4aebafc4f7ce..7b8ab4ab0ef9 100644
36 --- a/app-doc/vilearn/vilearn-1.0.ebuild
37 +++ b/app-doc/vilearn/vilearn-1.0.ebuild
38 @@ -1,7 +1,7 @@
39 # Copyright 1999-2021 Gentoo Authors
40 # Distributed under the terms of the GNU General Public License v2
41
42 -EAPI="5"
43 +EAPI="8"
44
45 DESCRIPTION="An interactive vi tutorial comprised of 5 tutorials for the vi-impaired"
46 HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
47 @@ -14,15 +14,19 @@ IUSE=""
48
49 RDEPEND="app-editors/vim"
50
51 +DOCS=( README outline )
52 +
53 src_prepare() {
54 + default
55 +
56 sed -i "s:/usr/local:${EPREFIX}/usr:" Makefile
57 }
58
59 src_install() {
60 - dobin vilearn
61 - doman vilearn.1
62 - dodoc README outline
63 + dobin ${PN}
64 + doman ${PN}.1
65 + einstalldocs
66
67 - insinto /usr/lib/vilearn
68 + insinto /usr/lib/${PN}
69 doins [0-9]*
70 }