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 9C8FB1388C1 for ; Fri, 18 Dec 2015 00:00:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CA23E086E; Fri, 18 Dec 2015 00:00:46 +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 7C1D7E086E for ; Fri, 18 Dec 2015 00:00:45 +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 67F493404A5 for ; Fri, 18 Dec 2015 00:00:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5815FC94 for ; Fri, 18 Dec 2015 00:00:42 +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: <1450396805.8b462df9b928414beb7271fce8e52fb5bd9d5a08.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/open-iscsi/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/open-iscsi/open-iscsi-2.0.873.ebuild X-VCS-Directories: sys-block/open-iscsi/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 8b462df9b928414beb7271fce8e52fb5bd9d5a08 X-VCS-Branch: master Date: Fri, 18 Dec 2015 00:00:42 +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: de4dec64-5b87-4681-931a-5f5a75eef151 X-Archives-Hash: 42589dfe7f7961d0dd79f7ca2ebe59e0 commit: 8b462df9b928414beb7271fce8e52fb5bd9d5a08 Author: Mike Frysinger gentoo org> AuthorDate: Thu Dec 17 23:46:40 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Dec 18 00:00:05 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b462df9 sys-block/open-iscsi: fix mishandling of MY_PV The code to set up MY_PV was based on MY_PV which mean successive env loads would generate an incorrect value. Drop the loading of it (as the default PV is what we want) and rename the var to MY_P as that is what it actually represents. sys-block/open-iscsi/open-iscsi-2.0.873.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild b/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild index 43baf52..e3e161b 100644 --- a/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild +++ b/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild @@ -6,11 +6,11 @@ EAPI=5 inherit versionator linux-info eutils flag-o-matic toolchain-funcs -MY_PV="${PN}-$(replace_version_separator 2 "-" $MY_PV)" +MY_P="${PN}-$(replace_version_separator 2 "-")" DESCRIPTION="Open-iSCSI is a high performance, transport independent, multi-platform implementation of RFC3720" HOMEPAGE="http://www.open-iscsi.org/" -SRC_URI="http://www.open-iscsi.org/bits/${MY_PV}.tar.gz" +SRC_URI="http://www.open-iscsi.org/bits/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" @@ -22,7 +22,7 @@ RDEPEND="${DEPEND} sys-fs/lsscsi sys-apps/util-linux" -S="${WORKDIR}/${MY_PV}" +S="${WORKDIR}/${MY_P}" pkg_setup() { linux-info_pkg_setup