From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1489535-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 930E115802F for <garchives@archives.gentoo.org>; Thu, 23 Feb 2023 20:29:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD4BBE07EE; Thu, 23 Feb 2023 20:29:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8DF3E07EE for <gentoo-commits@lists.gentoo.org>; Thu, 23 Feb 2023 20:29:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 161AD340CF1 for <gentoo-commits@lists.gentoo.org>; Thu, 23 Feb 2023 20:29:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A34AB7D0 for <gentoo-commits@lists.gentoo.org>; Thu, 23 Feb 2023 20:29:27 +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: <1677184149.f1441f011624a20d2cafb3055e9630e949c47247.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/perf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/perf/perf-5.19.ebuild dev-util/perf/perf-6.0.ebuild dev-util/perf/perf-6.1.11.ebuild X-VCS-Directories: dev-util/perf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f1441f011624a20d2cafb3055e9630e949c47247 X-VCS-Branch: master Date: Thu, 23 Feb 2023 20:29:27 +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: 3ff33aeb-263b-4531-b150-935391e4d967 X-Archives-Hash: fe42affa7a4f20a6f588c3ef7c274c6e commit: f1441f011624a20d2cafb3055e9630e949c47247 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Feb 23 17:42:50 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Feb 23 20:29:09 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1441f01 dev-util/perf: use gtar for --wildcards Closes: https://bugs.gentoo.org/887761 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-util/perf/perf-5.19.ebuild | 2 +- dev-util/perf/perf-6.0.ebuild | 2 +- dev-util/perf/perf-6.1.11.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-util/perf/perf-5.19.ebuild b/dev-util/perf/perf-5.19.ebuild index 69d09a7dfbac..2489e3b3c6d3 100644 --- a/dev-util/perf/perf-5.19.ebuild +++ b/dev-util/perf/perf-5.19.ebuild @@ -114,7 +114,7 @@ src_unpack() { # We expect the tar implementation to support the -j option (both # GNU tar and libarchive's tar support that). echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}" - tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \ + gtar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \ "${paths[@]/#/linux-${LINUX_VER}/}" || die if [[ -n ${LINUX_PATCH} ]] ; then diff --git a/dev-util/perf/perf-6.0.ebuild b/dev-util/perf/perf-6.0.ebuild index 8835f1febde4..611ca8224448 100644 --- a/dev-util/perf/perf-6.0.ebuild +++ b/dev-util/perf/perf-6.0.ebuild @@ -113,7 +113,7 @@ src_unpack() { # We expect the tar implementation to support the -j option (both # GNU tar and libarchive's tar support that). echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}" - tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \ + gtar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \ "${paths[@]/#/linux-${LINUX_VER}/}" || die if [[ -n ${LINUX_PATCH} ]] ; then diff --git a/dev-util/perf/perf-6.1.11.ebuild b/dev-util/perf/perf-6.1.11.ebuild index bff4ba7118b7..c9df3f9793cf 100644 --- a/dev-util/perf/perf-6.1.11.ebuild +++ b/dev-util/perf/perf-6.1.11.ebuild @@ -113,7 +113,7 @@ src_unpack() { # We expect the tar implementation to support the -j option (both # GNU tar and libarchive's tar support that). echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}" - tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \ + gtar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \ "${paths[@]/#/linux-${LINUX_VER}/}" || die if [[ -n ${LINUX_PATCH} ]] ; then