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 B2D261382C5 for ; Mon, 19 Apr 2021 20:54:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAA32E086C; Mon, 19 Apr 2021 20:54:45 +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 C60CFE086A for ; Mon, 19 Apr 2021 20:54:45 +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 EA82C340E6C for ; Mon, 19 Apr 2021 20:54:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA836735 for ; Mon, 19 Apr 2021 20:54:39 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1618865643.80033e154663a4770f73a577a6348099a9fe9fa1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/extract-xiso/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/extract-xiso/extract-xiso-2.7.1.ebuild X-VCS-Directories: app-cdr/extract-xiso/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 80033e154663a4770f73a577a6348099a9fe9fa1 X-VCS-Branch: master Date: Mon, 19 Apr 2021 20:54:39 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: aa046044-d32e-402c-b5bb-4211d9063b55 X-Archives-Hash: 11b9e0b7252a86283134b325df8ecab2 commit: 80033e154663a4770f73a577a6348099a9fe9fa1 Author: Sam James gentoo org> AuthorDate: Mon Apr 19 20:33:16 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 19 20:54:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80033e15 app-cdr/extract-xiso: port to EAPI 7 Signed-off-by: Sam James gentoo.org> app-cdr/extract-xiso/extract-xiso-2.7.1.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/app-cdr/extract-xiso/extract-xiso-2.7.1.ebuild b/app-cdr/extract-xiso/extract-xiso-2.7.1.ebuild index c89c16d1ea4..f4e6324db81 100644 --- a/app-cdr/extract-xiso/extract-xiso-2.7.1.ebuild +++ b/app-cdr/extract-xiso/extract-xiso-2.7.1.ebuild @@ -1,25 +1,28 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=7 -inherit epatch toolchain-funcs +inherit toolchain-funcs MY_PV=${PV/_beta/b} DESCRIPTION="Tool for extracting and creating optimised Xbox ISO images" HOMEPAGE="https://sourceforge.net/projects/extract-xiso" SRC_URI="mirror://sourceforge/extract-xiso/${P}.tar.gz" +S="${WORKDIR}"/${PN} LICENSE="BSD-4" SLOT="0" KEYWORDS="amd64 ppc x86" -IUSE="" -S=${WORKDIR}/${PN} +PATCHES=( + "${FILESDIR}"/${PN}-2.7.1-headers.patch +) src_prepare() { - epatch "${FILESDIR}"/${PN}-2.7.1-headers.patch + default + sed -i \ -e 's:__LINUX__:__linux__:' \ *.[ch] */*.[ch] || die