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 E15C1138359 for ; Mon, 23 Nov 2020 17:49:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 204BFE081A; Mon, 23 Nov 2020 17:49:24 +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 080B5E081A for ; Mon, 23 Nov 2020 17:49:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 F3E8B335D89 for ; Mon, 23 Nov 2020 17:49:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD8293B7 for ; Mon, 23 Nov 2020 17:49:20 +0000 (UTC) From: "Nicolas Bock" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas Bock" Message-ID: <1606153716.bff7b7f99b533258eb6c5094de4f415b03fceb53.nicolasbock@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/neomutt/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-client/neomutt/neomutt-99999999.ebuild X-VCS-Directories: mail-client/neomutt/ X-VCS-Committer: nicolasbock X-VCS-Committer-Name: Nicolas Bock X-VCS-Revision: bff7b7f99b533258eb6c5094de4f415b03fceb53 X-VCS-Branch: master Date: Mon, 23 Nov 2020 17:49:20 +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: 6fa4d08e-f63b-4548-9dad-b74447e2e645 X-Archives-Hash: 9bf9c83dadfc4f5b1b75b80a1750db97 commit: bff7b7f99b533258eb6c5094de4f415b03fceb53 Author: Austin Ray austinray io> AuthorDate: Mon Nov 23 05:08:02 2020 +0000 Commit: Nicolas Bock gentoo org> CommitDate: Mon Nov 23 17:48:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bff7b7f9 mail-client/neomutt: fix live ebuild src dir Commit e4ef3e09eaf dropped the assignment of "S", changing its value from "${WORKDIR}/${PN}-${P}" to the default value of "${WORKDIR}/${P}". However, the live ebuild still checkouts out source code to previous location so portage says the source directory doesn't exist. This commit drops the custom checkout directory and uses the default value provided, which corresponds to the default value of "S". Closes: https://bugs.gentoo.org/756166 Signed-off-by: Austin Ray austinray.io> Signed-off-by: Nicolas Bock gentoo.org> mail-client/neomutt/neomutt-99999999.ebuild | 1 - 1 file changed, 1 deletion(-) diff --git a/mail-client/neomutt/neomutt-99999999.ebuild b/mail-client/neomutt/neomutt-99999999.ebuild index d25f26c5ada..0903176798d 100644 --- a/mail-client/neomutt/neomutt-99999999.ebuild +++ b/mail-client/neomutt/neomutt-99999999.ebuild @@ -8,7 +8,6 @@ inherit eutils if [[ ${PV} =~ 99999999$ ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/neomutt/neomutt.git" - EGIT_CHECKOUT_DIR="${WORKDIR}/neomutt-${P}" else SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~ppc64 ~x86"