From 22e1c7a065a1246428b711ae6a45af2c44fdd2b9 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 30 Dec 2021 02:27:53 +0100 Subject: [PATCH] net-im/nheko: Make fetching and unpacking less hacky. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The usage of git-r3_src_unpack should cover more eventualities and prevent future headaches. 😊 --- net-im/nheko/nheko-9999.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/net-im/nheko/nheko-9999.ebuild b/net-im/nheko/nheko-9999.ebuild index 040ff1d..b3dbd08 100644 --- a/net-im/nheko/nheko-9999.ebuild +++ b/net-im/nheko/nheko-9999.ebuild @@ -59,8 +59,7 @@ BDEPEND="dev-qt/linguist-tools:5" src_unpack() { for repo_uri in ${EGIT_REPO_URI[@]}; do - git-r3_fetch ${repo_uri} - git-r3_checkout ${repo_uri} "${WORKDIR}/${repo_uri##*/}" + EGIT_REPO_URI="${repo_uri}" EGIT_CHECKOUT_DIR="${WORKDIR}/${repo_uri##*/}" git-r3_src_unpack done mv nheko.git ${P} }