Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/lcdsplash/
Date: Sat, 02 Dec 2017 17:46:06
Message-Id: 1512236746.b03d8cd55475da80d0bd2895545f9d251fba7fd7.soap@gentoo
1 commit: b03d8cd55475da80d0bd2895545f9d251fba7fd7
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 2 17:21:15 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 2 17:45:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b03d8cd5
7
8 sys-apps/lcdsplash: Port to EAPI 6
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 sys-apps/lcdsplash/Manifest | 2 +-
13 sys-apps/lcdsplash/lcdsplash-0.3.ebuild | 15 ++++++++-------
14 2 files changed, 9 insertions(+), 8 deletions(-)
15
16 diff --git a/sys-apps/lcdsplash/Manifest b/sys-apps/lcdsplash/Manifest
17 index aff6e0aa550..93be25c41f6 100644
18 --- a/sys-apps/lcdsplash/Manifest
19 +++ b/sys-apps/lcdsplash/Manifest
20 @@ -1 +1 @@
21 -DIST lcdsplash-0.3.tar.bz2 8121 SHA256 0d5db8b897fa6508bbebf7dcc12a5afdf3f48178d72a247d3d8b611c68645c9c SHA512 4d40200882260c31cfe20988cf64d27be0af7f1ab983e5a998dcaeafede074e882379508a775f54690105591e0802eb897559eb7437d81f0b24096dd8c363243 WHIRLPOOL f4d98cab8057080a643ec5f90d9ff878c4b6647190b256261328105614f9fef6a16a3214432aec44b9afb0eab42bc02973f2641ac6babcf4ef52496550a2d94c
22 +DIST lcdsplash-0.3.tar.bz2 8121 BLAKE2B 52baebd47f6b72fd55c3afaa4a44803fd71b3674419a6fe43b8a642cdfbd14fd964e82db995707e48b23ccf0d323f9f6853f1a5558ae3ff64b6332cc9880ecf1 SHA512 4d40200882260c31cfe20988cf64d27be0af7f1ab983e5a998dcaeafede074e882379508a775f54690105591e0802eb897559eb7437d81f0b24096dd8c363243
23
24 diff --git a/sys-apps/lcdsplash/lcdsplash-0.3.ebuild b/sys-apps/lcdsplash/lcdsplash-0.3.ebuild
25 index 34046a4e316..21435a81ead 100644
26 --- a/sys-apps/lcdsplash/lcdsplash-0.3.ebuild
27 +++ b/sys-apps/lcdsplash/lcdsplash-0.3.ebuild
28 @@ -1,7 +1,7 @@
29 -# Copyright 1999-2010 Gentoo Foundation
30 +# Copyright 1999-2017 Gentoo Foundation
31 # Distributed under the terms of the GNU General Public License v2
32
33 -inherit multilib
34 +EAPI=6
35
36 DESCRIPTION="splash Gentoo boot information on LCD's"
37 HOMEPAGE="https://www.gentoo.org/"
38 @@ -13,18 +13,19 @@ SLOT="0"
39 KEYWORDS="hppa ~mips x86"
40 IUSE=""
41
42 -DEPEND="mips? ( sys-apps/lcdutils )"
43 +RDEPEND="mips? ( sys-apps/lcdutils )"
44
45 S=${WORKDIR}/${PN}
46
47 src_install() {
48 insinto /sbin
49 - doins splash-functions.sh || die "splash"
50 + doins splash-functions.sh
51 +
52 insinto /$(get_libdir)/rcscripts/lcdsplash
53 - doins -r modules/* || die "modules"
54 + doins -r modules/.
55
56 insinto /etc
57 - doins lcdsplash.conf || die "conf"
58 + doins lcdsplash.conf
59
60 - dodoc README
61 + einstalldocs
62 }