From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1321289-garchives=archives.gentoo.org@lists.gentoo.org> 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 DC2E2158092 for <garchives@archives.gentoo.org>; Wed, 15 Sep 2021 22:40:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35D71E0822; Wed, 15 Sep 2021 22:40:20 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 17763E0822 for <gentoo-commits@lists.gentoo.org>; Wed, 15 Sep 2021 22:40:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B5935343056 for <gentoo-commits@lists.gentoo.org>; Wed, 15 Sep 2021 22:40:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F13CD55 for <gentoo-commits@lists.gentoo.org>; Wed, 15 Sep 2021 22:40:16 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1631745556.e2d2448a60d4872646acbe9f1dd389e1f1950231.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils-hppa64/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/binutils-hppa64/binutils-hppa64-2.37_p1.ebuild X-VCS-Directories: sys-devel/binutils-hppa64/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e2d2448a60d4872646acbe9f1dd389e1f1950231 X-VCS-Branch: master Date: Wed, 15 Sep 2021 22:40:16 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 89995c03-4ed1-48b0-87b3-d246c01cbfdc X-Archives-Hash: d8f25f0df1347983f840ec556c36f91c commit: e2d2448a60d4872646acbe9f1dd389e1f1950231 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Sep 15 22:39:16 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Sep 15 22:39:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2d2448a sys-devel/binutils-hppa64: fix unpack for HPPA in 2.37_p1 Reported-by: tobiasu Signed-off-by: Sam James <sam <AT> gentoo.org> sys-devel/binutils-hppa64/binutils-hppa64-2.37_p1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sys-devel/binutils-hppa64/binutils-hppa64-2.37_p1.ebuild b/sys-devel/binutils-hppa64/binutils-hppa64-2.37_p1.ebuild index 6477736ca7c..3b073ef9b5c 100644 --- a/sys-devel/binutils-hppa64/binutils-hppa64-2.37_p1.ebuild +++ b/sys-devel/binutils-hppa64/binutils-hppa64-2.37_p1.ebuild @@ -85,13 +85,16 @@ src_unpack() { EGIT_CHECKOUT_DIR=${S} git-r3_src_unpack else - unpack ${P}.tar.xz + unpack ${P/-hppa64/}.tar.xz cd "${WORKDIR}" || die unpack binutils-${PATCH_BINUTILS_VER}-patches-${PATCH_VER}.tar.xz # _p patch versions are Gentoo specific tarballs ... - S=${WORKDIR}/${P%_p?} + local dir=${P%_p?} + dir=${dir/-hppa64/} + + S=${WORKDIR}/${dir} fi cd "${WORKDIR}" || die