From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0DC0F138330 for ; Tue, 29 May 2018 20:10:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55176E0798; Tue, 29 May 2018 20:10:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 30D77E0788 for ; Tue, 29 May 2018 20:10:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 27CE8335C72 for ; Tue, 29 May 2018 20:10:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF5E7129 for ; Tue, 29 May 2018 20:10:33 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527624605.415fd7b149a2ab8c34711dacc8b6c0a6333f4a7e.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/coldfire/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/coldfire/coldfire-0.3.1.ebuild X-VCS-Directories: app-emulation/coldfire/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 415fd7b149a2ab8c34711dacc8b6c0a6333f4a7e X-VCS-Branch: master Date: Tue, 29 May 2018 20:10:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7122442c-10cd-453e-90e8-ce8bac9b120d X-Archives-Hash: 971f1a1c5da9c6d8cfe7aff86adbbf83 commit: 415fd7b149a2ab8c34711dacc8b6c0a6333f4a7e Author: Aaron Bauman gentoo org> AuthorDate: Tue May 29 14:02:17 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Tue May 29 20:10:05 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=415fd7b1 app-emulation/coldfire: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8640 app-emulation/coldfire/coldfire-0.3.1.ebuild | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/app-emulation/coldfire/coldfire-0.3.1.ebuild b/app-emulation/coldfire/coldfire-0.3.1.ebuild index ac3e77cd5aa..91abcd06d00 100644 --- a/app-emulation/coldfire/coldfire-0.3.1.ebuild +++ b/app-emulation/coldfire/coldfire-0.3.1.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" - -inherit eutils +EAPI=7 DESCRIPTION="Motorola Coldfire Emulator" HOMEPAGE="http://www.slicer.ca/coldfire/" @@ -17,13 +15,12 @@ IUSE="" DEPEND="sys-libs/ncurses sys-libs/readline" -src_prepare() { - epatch "${FILESDIR}"/${P}-build.patch - epatch "${FILESDIR}"/${P}-headers.patch -} +PATCHES=( + "${FILESDIR}/${P}-build.patch" + "${FILESDIR}/${P}-headers.patch" +) src_install() { - dodir /usr/bin - einstall || die + dobin coldfire dodoc CONTRIBUTORS HACKING README }