From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id AD2781386F4 for ; Mon, 10 Aug 2015 09:18:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4962A1419A; Mon, 10 Aug 2015 09:18:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5CE3114186 for ; Mon, 10 Aug 2015 09:18:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 426113408AB for ; Mon, 10 Aug 2015 09:18:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E4D4146 for ; Mon, 10 Aug 2015 09:18:40 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1439197836.cf1d04bc96d7068f0e1e4f89ba930e0fb6a2ed91.vapier@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: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: cf1d04bc96d7068f0e1e4f89ba930e0fb6a2ed91 X-VCS-Branch: master Date: Mon, 10 Aug 2015 09:18:40 +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: b72057e0-9428-4f7d-8d95-4d45c2a34863 X-Archives-Hash: 83a5c3ff6f07b1a6f15708fe9c970439 commit: cf1d04bc96d7068f0e1e4f89ba930e0fb6a2ed91 Author: Mike Frysinger gentoo org> AuthorDate: Mon Aug 10 09:10:36 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Aug 10 09:10:36 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf1d04bc extract-xiso: EAPI: bump to 5 app-cdr/extract-xiso/extract-xiso-2.7.1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 804db20..21da94d 100644 --- a/app-cdr/extract-xiso/extract-xiso-2.7.1.ebuild +++ b/app-cdr/extract-xiso/extract-xiso-2.7.1.ebuild @@ -2,6 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ +EAPI="5" + inherit toolchain-funcs MY_PV=${PV/_beta/b} @@ -17,9 +19,7 @@ IUSE="" S=${WORKDIR}/${PN} -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { sed -i \ -e 's:__LINUX__:__linux__:' \ *.[ch] */*.[ch] || die @@ -33,6 +33,6 @@ src_compile() { } src_install() { - dobin extract-xiso || die + dobin extract-xiso dodoc README.TXT }