Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/coldfire/
Date: Tue, 29 May 2018 20:10:38
Message-Id: 1527624605.415fd7b149a2ab8c34711dacc8b6c0a6333f4a7e.bman@gentoo
1 commit: 415fd7b149a2ab8c34711dacc8b6c0a6333f4a7e
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 29 14:02:17 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Tue May 29 20:10:05 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=415fd7b1
7
8 app-emulation/coldfire: bump EAPI and drop eutils
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11 Closes: https://github.com/gentoo/gentoo/pull/8640
12
13 app-emulation/coldfire/coldfire-0.3.1.ebuild | 17 +++++++----------
14 1 file changed, 7 insertions(+), 10 deletions(-)
15
16 diff --git a/app-emulation/coldfire/coldfire-0.3.1.ebuild b/app-emulation/coldfire/coldfire-0.3.1.ebuild
17 index ac3e77cd5aa..91abcd06d00 100644
18 --- a/app-emulation/coldfire/coldfire-0.3.1.ebuild
19 +++ b/app-emulation/coldfire/coldfire-0.3.1.ebuild
20 @@ -1,9 +1,7 @@
21 -# Copyright 1999-2010 Gentoo Foundation
22 +# Copyright 1999-2018 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI="2"
26 -
27 -inherit eutils
28 +EAPI=7
29
30 DESCRIPTION="Motorola Coldfire Emulator"
31 HOMEPAGE="http://www.slicer.ca/coldfire/"
32 @@ -17,13 +15,12 @@ IUSE=""
33 DEPEND="sys-libs/ncurses
34 sys-libs/readline"
35
36 -src_prepare() {
37 - epatch "${FILESDIR}"/${P}-build.patch
38 - epatch "${FILESDIR}"/${P}-headers.patch
39 -}
40 +PATCHES=(
41 + "${FILESDIR}/${P}-build.patch"
42 + "${FILESDIR}/${P}-headers.patch"
43 +)
44
45 src_install() {
46 - dodir /usr/bin
47 - einstall || die
48 + dobin coldfire
49 dodoc CONTRIBUTORS HACKING README
50 }