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 B62381395E2 for ; Sun, 6 Nov 2016 16:25:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 95E07E0881; Sun, 6 Nov 2016 16:24:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 655FEE0881 for ; Sun, 6 Nov 2016 16:24:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 320C0341823 for ; Sun, 6 Nov 2016 16:24:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FD1F24B0 for ; Sun, 6 Nov 2016 16:24:54 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1478449422.b2a111b7db0784f57894abdea13febc300f4d235.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/refind/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/refind/refind-0.10.2-r2.ebuild sys-boot/refind/refind-0.10.3-r1.ebuild sys-boot/refind/refind-0.10.4-r1.ebuild X-VCS-Directories: sys-boot/refind/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: b2a111b7db0784f57894abdea13febc300f4d235 X-VCS-Branch: master Date: Sun, 6 Nov 2016 16:24:54 +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: aebe1858-e0eb-4a9e-9d99-6d02aef1bcc7 X-Archives-Hash: d87155f96c4345794ef914a2f2a75cef commit: b2a111b7db0784f57894abdea13febc300f4d235 Author: Göktürk Yüksek gentoo org> AuthorDate: Sun Nov 6 16:15:42 2016 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Sun Nov 6 16:23:42 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2a111b7 sys-boot/refind: add missing EROOT in postinst Package-Manager: portage-2.2.28 sys-boot/refind/refind-0.10.2-r2.ebuild | 4 ++-- sys-boot/refind/refind-0.10.3-r1.ebuild | 4 ++-- sys-boot/refind/refind-0.10.4-r1.ebuild | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sys-boot/refind/refind-0.10.2-r2.ebuild b/sys-boot/refind/refind-0.10.2-r2.ebuild index 1d50296..8f0fe22 100644 --- a/sys-boot/refind/refind-0.10.2-r2.ebuild +++ b/sys-boot/refind/refind-0.10.2-r2.ebuild @@ -147,7 +147,7 @@ src_install() { } pkg_postinst() { - elog "rEFInd has been built and installed into /usr/share/${P}" + elog "rEFInd has been built and installed into ${EROOT%/}/usr/share/${P}" elog "You will need to use the command 'refind-install' to install" elog "the binaries into your EFI System Partition" if [[ -z "${REPLACING_VERSIONS}" ]]; then @@ -158,7 +158,7 @@ pkg_postinst() { elog " sys-block/parted for automatic ESP location and mount" elog "" elog "A sample configuration can be found at" - elog "/usr/share/${P}/refind/refind.conf-sample" + elog "${EROOT%/}/usr/share/${P}/refind/refind.conf-sample" else ewarn "Note that this will not update any EFI binaries on your EFI" ewarn "System Partition - this needs to be done manually." diff --git a/sys-boot/refind/refind-0.10.3-r1.ebuild b/sys-boot/refind/refind-0.10.3-r1.ebuild index fcf8d9d..a5556a3 100644 --- a/sys-boot/refind/refind-0.10.3-r1.ebuild +++ b/sys-boot/refind/refind-0.10.3-r1.ebuild @@ -148,7 +148,7 @@ src_install() { } pkg_postinst() { - elog "rEFInd has been built and installed into /usr/share/${P}" + elog "rEFInd has been built and installed into ${EROOT%/}/usr/share/${P}" elog "You will need to use the command 'refind-install' to install" elog "the binaries into your EFI System Partition" elog "" @@ -161,7 +161,7 @@ pkg_postinst() { elog "refind-mkdefault requires >=dev-lang/python-3" elog "" elog "A sample configuration can be found at" - elog "/usr/share/${P}/refind/refind.conf-sample" + elog "${EROOT%/}/usr/share/${P}/refind/refind.conf-sample" else if ! version_is_at_least "0.10.3" "${REPLACING_VERSIONS}"; then elog "The new refind-mkdefault script requires >=dev-lang/python-3" diff --git a/sys-boot/refind/refind-0.10.4-r1.ebuild b/sys-boot/refind/refind-0.10.4-r1.ebuild index fcf8d9d..2bc85ce 100644 --- a/sys-boot/refind/refind-0.10.4-r1.ebuild +++ b/sys-boot/refind/refind-0.10.4-r1.ebuild @@ -148,7 +148,7 @@ src_install() { } pkg_postinst() { - elog "rEFInd has been built and installed into /usr/share/${P}" + elog "rEFInd has been built and installed into ${EROOT%/}/usr/share/${P}" elog "You will need to use the command 'refind-install' to install" elog "the binaries into your EFI System Partition" elog "" @@ -161,7 +161,7 @@ pkg_postinst() { elog "refind-mkdefault requires >=dev-lang/python-3" elog "" elog "A sample configuration can be found at" - elog "/usr/share/${P}/refind/refind.conf-sample" + elog "${EROOT%}/usr/share/${P}/refind/refind.conf-sample" else if ! version_is_at_least "0.10.3" "${REPLACING_VERSIONS}"; then elog "The new refind-mkdefault script requires >=dev-lang/python-3"