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 BC2351584AD for ; Sun, 11 May 2025 12:39:02 +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 A649F3431A1 for ; Sun, 11 May 2025 12:39:02 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A4123110277; Sun, 11 May 2025 12:38:59 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 9AD3E110277 for ; Sun, 11 May 2025 12:38:59 +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 54E0334316A for ; Sun, 11 May 2025 12:38:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C46792741 for ; Sun, 11 May 2025 12:38:57 +0000 (UTC) From: "Sam James" 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" Message-ID: <1746967091.15f7a3ce2dd88a07b737ab9442baf9ec5620edaf.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/binwalk/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/binwalk/binwalk-3.1.0.ebuild X-VCS-Directories: app-misc/binwalk/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 15f7a3ce2dd88a07b737ab9442baf9ec5620edaf X-VCS-Branch: master Date: Sun, 11 May 2025 12:38:57 +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: e7ba7333-6ade-4acb-980b-c001d40a6762 X-Archives-Hash: 75554c2e71278a508e89076b94508763 commit: 15f7a3ce2dd88a07b737ab9442baf9ec5620edaf Author: David Roman gmail com> AuthorDate: Sun May 11 10:25:14 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun May 11 12:38:11 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15f7a3ce app-misc/binwalk: add sasquatch optfeature This is the only option to extract sasquashfs files in binwalk3 Closes: https://bugs.gentoo.org/948807 Signed-off-by: David Roman gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/42024 Closes: https://github.com/gentoo/gentoo/pull/42024 Signed-off-by: Sam James gentoo.org> app-misc/binwalk/binwalk-3.1.0.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app-misc/binwalk/binwalk-3.1.0.ebuild b/app-misc/binwalk/binwalk-3.1.0.ebuild index 1eead581c1cb..89ddb97f7529 100644 --- a/app-misc/binwalk/binwalk-3.1.0.ebuild +++ b/app-misc/binwalk/binwalk-3.1.0.ebuild @@ -163,7 +163,7 @@ CRATES=" zerocopy@0.7.35 " -inherit cargo +inherit cargo optfeature DESCRIPTION="Analyzes data for embedded file types" HOMEPAGE="https://github.com/ReFirmLabs/binwalk" @@ -197,3 +197,7 @@ src_unpack() { src_install() { newbin "$(cargo_target_dir)/binwalk" binwalk3 } + +pkg_postinst() { + optfeature "squashfs extraction" app-arch/sasquatch +}