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 7CA8A1582EF for ; Fri, 28 Feb 2025 10:01:07 +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 4FB3734323C for ; Fri, 28 Feb 2025 10:01:07 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 204FD1102D2; Fri, 28 Feb 2025 10:01:02 +0000 (UTC) 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 bobolink.gentoo.org (Postfix) with ESMTPS id 180381102D2 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 BC1233431CC 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 C479725C5 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.11d30d52a40314814ea4dcd332884141d04ecf49.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/optix/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/optix/optix-7.4.0.ebuild dev-libs/optix/optix-7.5.0.ebuild X-VCS-Directories: dev-libs/optix/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 11d30d52a40314814ea4dcd332884141d04ecf49 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: 52e57a1e-66c9-47bf-8b1e-5947dc4a5c64 X-Archives-Hash: ea1bfa32eef8cb197dbdb2d5a4582f38 commit: 11d30d52a40314814ea4dcd332884141d04ecf49 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Feb 28 09:54: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=11d30d52 dev-libs/optix: fix NonConsistentTarUsage [QA] Issue: https://github.com/pkgcore/pkgcheck/issues/704 Signed-off-by: Arthur Zamarin gentoo.org> dev-libs/optix/optix-7.4.0.ebuild | 4 ++-- dev-libs/optix/optix-7.5.0.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/optix/optix-7.4.0.ebuild b/dev-libs/optix/optix-7.4.0.ebuild index ab5eb71a3052..77d9c5bacc19 100644 --- a/dev-libs/optix/optix-7.4.0.ebuild +++ b/dev-libs/optix/optix-7.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -64,7 +64,7 @@ src_unpack() { cp "${DISTDIR}/${P}-${i}" "${S}/include/${i}" || die done else - tail -n +223 "${DISTDIR}"/${A} | tar -zx + tail -n +223 "${DISTDIR}"/${A} | tar -zx -f - assert "unpacking ${A} failed" fi } diff --git a/dev-libs/optix/optix-7.5.0.ebuild b/dev-libs/optix/optix-7.5.0.ebuild index 93173c78a603..77d9c5bacc19 100644 --- a/dev-libs/optix/optix-7.5.0.ebuild +++ b/dev-libs/optix/optix-7.5.0.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 @@ -64,7 +64,7 @@ src_unpack() { cp "${DISTDIR}/${P}-${i}" "${S}/include/${i}" || die done else - tail -n +223 "${DISTDIR}"/${A} | tar -zx + tail -n +223 "${DISTDIR}"/${A} | tar -zx -f - assert "unpacking ${A} failed" fi }