From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id 5B85B1582EF for ; Fri, 28 Feb 2025 10:01:06 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 4687F3430E6 for ; Fri, 28 Feb 2025 10:01:06 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 110A51102C9; Fri, 28 Feb 2025 10:01:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 096151102C9 for ; Fri, 28 Feb 2025 10:01:02 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B78EC3431A2 for ; Fri, 28 Feb 2025 10:01:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D87C22731 for ; Fri, 28 Feb 2025 10:00:59 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1740736850.5d5fc7ad016fb6dc5c1f9f61836c4b96caa0daf3.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/descent2-data/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-action/descent2-data/descent2-data-1.2-r1.ebuild X-VCS-Directories: games-action/descent2-data/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 5d5fc7ad016fb6dc5c1f9f61836c4b96caa0daf3 X-VCS-Branch: master Date: Fri, 28 Feb 2025 10:00:59 +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: 9dcacee7-b87a-4fe1-81dc-a8bd60c7aae5 X-Archives-Hash: a85f6aa31cc57b641eec5f977a4204ff commit: 5d5fc7ad016fb6dc5c1f9f61836c4b96caa0daf3 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Feb 28 09:56:57 2025 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Feb 28 10:00:50 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d5fc7ad games-action/descent2-data: fix NonConsistentTarUsage [QA] Issue: https://github.com/pkgcore/pkgcheck/issues/704 Signed-off-by: Arthur Zamarin gentoo.org> games-action/descent2-data/descent2-data-1.2-r1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/games-action/descent2-data/descent2-data-1.2-r1.ebuild b/games-action/descent2-data/descent2-data-1.2-r1.ebuild index 8f19d07739b9..990fa4a33cab 100644 --- a/games-action/descent2-data/descent2-data-1.2-r1.ebuild +++ b/games-action/descent2-data/descent2-data-1.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -72,7 +72,7 @@ src_unpack() { # Remainder into data # Exclude Vertigo files - tar c \ + tar -c -f - \ --mode=u+w \ --ignore-case \ --xform='s:.*/::xg' \ @@ -87,7 +87,7 @@ src_unpack() { --exclude="$(use doc || echo '*.pdf')" \ --exclude="$(use videos || echo '*.mvl')" \ *.{txt,pdf} *-h.mvl **/*.{ham,hog,mn2,pig,s11,s22} \ - | tar x -C "${WORKDIR}" + | tar -x -f - -C "${WORKDIR}" assert "tar failed" eshopts_pop