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 391BA1582EF for ; Fri, 28 Feb 2025 10:01:11 +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 22CE6343210 for ; Fri, 28 Feb 2025 10:01:11 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 3B429110370; 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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 316EA110370 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 DA9323430AB 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 1F06E2777 for ; Fri, 28 Feb 2025 10:01:00 +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.8fc596ca886b7c6fdcaee20a458c24e2f1d9c4c6.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-rpg/comi/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-rpg/comi/comi-1-r1.ebuild X-VCS-Directories: games-rpg/comi/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 8fc596ca886b7c6fdcaee20a458c24e2f1d9c4c6 X-VCS-Branch: master Date: Fri, 28 Feb 2025 10:01:00 +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: cf912517-f1cf-4ab9-a25f-995a4b2e3edf X-Archives-Hash: ab5718948b3caf73bd45616cb97ec83e commit: 8fc596ca886b7c6fdcaee20a458c24e2f1d9c4c6 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Feb 28 09:58:33 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=8fc596ca games-rpg/comi: fix NonConsistentTarUsage [QA] Issue: https://github.com/pkgcore/pkgcheck/issues/704 Signed-off-by: Arthur Zamarin gentoo.org> games-rpg/comi/comi-1-r1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/games-rpg/comi/comi-1-r1.ebuild b/games-rpg/comi/comi-1-r1.ebuild index bd971f07ce5d..a50addf24a8a 100644 --- a/games-rpg/comi/comi-1-r1.ebuild +++ b/games-rpg/comi/comi-1-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 @@ -26,7 +26,7 @@ dotar() { # Remainder into data # Avoid copying files twice - tar c \ + tar -c -f - \ --mode=u+w \ --ignore-case \ --xform='s:^[^a-z]+$:\L\0:x' \ @@ -36,7 +36,7 @@ dotar() { --exclude="$(use doc || echo '*.pdf')" \ --exclude-from=<(find "${WORKDIR}"/data -type f -printf "%P\n" 2>/dev/null) \ *.{txt,pdf} *.la[0-9] resource*/ \ - | tar x -C "${WORKDIR}" + | tar -x -f - -C "${WORKDIR}" assert "tar failed" eshopts_pop