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 BB2071388BF for ; Mon, 11 Jan 2016 18:05:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50DBA21C029; Mon, 11 Jan 2016 18:05:32 +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 E8A8C21C029 for ; Mon, 11 Jan 2016 18:05:31 +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 1AF85340834 for ; Mon, 11 Jan 2016 18:05:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4E5FE5F for ; Mon, 11 Jan 2016 18:05:29 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1452535522.e4dfed6b9c61b9c69434bdf51063522d8d14bff3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/abi-compliance-checker/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild X-VCS-Directories: dev-util/abi-compliance-checker/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e4dfed6b9c61b9c69434bdf51063522d8d14bff3 X-VCS-Branch: master Date: Mon, 11 Jan 2016 18:05:29 +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: 7bdfde96-33e6-4b3d-afae-013607fee4cb X-Archives-Hash: 82ecd1a2d1c776789f07dcfece55fe28 commit: e4dfed6b9c61b9c69434bdf51063522d8d14bff3 Author: Michał Górny gentoo org> AuthorDate: Mon Jan 11 18:03:03 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jan 11 18:05:22 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4dfed6b dev-util/abi-compliance-checker: Switch to EAPI=6, add Prefix support dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild b/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild index 2a3cd68..051f48a 100644 --- a/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild +++ b/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 #if LIVE EGIT_REPO_URI="git://github.com/lvc/${PN}.git @@ -35,5 +35,5 @@ src_compile() { src_install() { mkdir -p "${D}"/usr || die - perl Makefile.pl --install --prefix=/usr --destdir="${D}" || die + perl Makefile.pl --install --prefix="${EPREFIX}"/usr --destdir="${D}" || die }