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 C52DB138334 for ; Thu, 11 Apr 2019 08:07:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96B77E0784; Thu, 11 Apr 2019 08:07:21 +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 703EBE0784 for ; Thu, 11 Apr 2019 08:07:21 +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 0C2A7340BDE for ; Thu, 11 Apr 2019 08:07:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B4FC520 for ; Thu, 11 Apr 2019 08:07:18 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1554970018.e90abf4be37ca322749be5f0f088f6c07ee20b82.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/autojump/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/autojump/autojump-22.5.3.ebuild X-VCS-Directories: app-shells/autojump/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: e90abf4be37ca322749be5f0f088f6c07ee20b82 X-VCS-Branch: master Date: Thu, 11 Apr 2019 08:07:18 +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: 424840e8-441d-4772-a16f-9193af46a409 X-Archives-Hash: 4adb8db0cd200a5e84aaaa1d9d8a4150 commit: e90abf4be37ca322749be5f0f088f6c07ee20b82 Author: Fabian Groffen gentoo org> AuthorDate: Thu Apr 11 08:06:42 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Apr 11 08:06:58 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e90abf4b app-shells/autojump: fix patching for Prefix Closes: https://bugs.gentoo.org/665270 Signed-off-by: Fabian Groffen gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 app-shells/autojump/autojump-22.5.3.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app-shells/autojump/autojump-22.5.3.ebuild b/app-shells/autojump/autojump-22.5.3.ebuild index fe3883cf63e..71bd16bed2f 100644 --- a/app-shells/autojump/autojump-22.5.3.ebuild +++ b/app-shells/autojump/autojump-22.5.3.ebuild @@ -5,7 +5,7 @@ EAPI=6 PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} ) -inherit bash-completion-r1 python-r1 vcs-snapshot +inherit bash-completion-r1 python-r1 vcs-snapshot prefix DESCRIPTION="change directory command that learns" HOMEPAGE="https://github.com/wting/autojump" @@ -24,13 +24,14 @@ DEPEND="${PYTHON_DEPS}" src_prepare() { eapply_user - sed -e "s: \(/etc/profile.d\): \"${EPREFIX}\1\":" \ - -e "s:/usr/local/share:/usr/share:" \ + sed -e "s:/usr/local/share:/usr/share:" \ -i bin/autojump.sh || die # autojump_argparse is only there for Python 2.6 compatibility sed -e "s:autojump_argparse:argparse:" \ -i bin/autojump || die + + hprefixify -q '"' -w '/usr\/share/' bin/autojump.sh } src_compile() {