Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/linux-kernel-in-a-nutshell/
Date: Tue, 29 Jun 2021 21:23:26
Message-Id: 1625001409.856094db67b1b34134370e0e60135848ffae7d86.sam@gentoo
1 commit: 856094db67b1b34134370e0e60135848ffae7d86
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 29 21:06:25 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 29 21:16:49 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=856094db
7
8 app-doc/linux-kernel-in-a-nutshell: fix installation path, EAPI 8
9
10 Closes: https://bugs.gentoo.org/799278
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 ...ell-1-r1.ebuild => linux-kernel-in-a-nutshell-1-r2.ebuild} | 11 ++++++-----
14 1 file changed, 6 insertions(+), 5 deletions(-)
15
16 diff --git a/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild b/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r2.ebuild
17 similarity index 81%
18 rename from app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild
19 rename to app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r2.ebuild
20 index 8eb1f22922d..012e435f045 100644
21 --- a/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild
22 +++ b/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r2.ebuild
23 @@ -1,7 +1,7 @@
24 # Copyright 1999-2021 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 -EAPI=6
28 +EAPI=8
29
30 DESCRIPTION="Linux Kernel in a Nutshell: A Desktop Quick Reference"
31 HOMEPAGE="http://www.kroah.com/lkn/"
32 @@ -14,8 +14,9 @@ SLOT="0"
33 KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
34
35 src_install() {
36 - insinto /usr/share/doc/${PN}/pdf
37 - doins -r lkn_pdf/*
38 - insinto /usr/share/doc/${PN}/xml
39 - doins -r lkn_xml/*
40 + docinto pdf
41 + dodoc -r lkn_pdf/*
42 +
43 + docinto xml
44 + dodoc -r lkn_xml/*
45 }