[packages/binwalk] - patch to fix syntax warnings, don't try to strip signatures file
qboosh
qboosh at pld-linux.org
Sun Mar 23 11:42:11 CET 2025
commit d881f4a52ba1cfb0c28850796b2e87890209df80
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Sun Mar 23 10:42:52 2025 +0100
- patch to fix syntax warnings, don't try to strip signatures file
binwalk-python.patch | 20 ++++++++++++++++++++
binwalk.spec | 8 +++++++-
2 files changed, 27 insertions(+), 1 deletion(-)
---
diff --git a/binwalk.spec b/binwalk.spec
index 773bc8a..85cce78 100644
--- a/binwalk.spec
+++ b/binwalk.spec
@@ -1,5 +1,6 @@
# TODO:
# - split library into subpackage?
+# (but 3.x versions are rewritten in rust, so python module is gone)
#
Summary: Binary image analyze tool
Summary(pl.UTF-8): Narzędzie do analizy modułów binarnych
@@ -11,6 +12,7 @@ Group: Development
#Source0Download: https://github.com/ReFirmLabs/binwalk/releases
Source0: https://github.com/ReFirmLabs/binwalk/archive/v%{version}/%{name}-%{version}.tar.gz
# Source0-md5: 182a4e0d99600e30f06007910bcd037d
+Patch0: %{name}-python.patch
URL: https://github.com/ReFirmLabs/binwalk
BuildRequires: python3-modules >= 1:3.2
BuildRequires: python3-setuptools
@@ -18,6 +20,9 @@ BuildRequires: rpm-pythonprov
BuildArch: noarch
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+# rpm tries to strip as ELF, but it's not ELF
+%define _noautostrip .*/binwalk/magic/executables
+
%description
Binwalk is a tool for searching a given binary image for embedded
files and executable code. Specifically, it is designed for
@@ -45,6 +50,7 @@ nagłówki firmware'u, jądra Linuksa, bootloadery, systemy plików itp.
%prep
%setup -q
+%patch -P0 -p1
%build
%py3_build
@@ -62,4 +68,4 @@ rm -rf $RPM_BUILD_ROOT
%doc API.md README.md
%attr(755,root,root) %{_bindir}/binwalk
%{py3_sitescriptdir}/binwalk
-%{py3_sitescriptdir}/binwalk-%{version}-py*.egg-info
+%{py3_sitescriptdir}/binwalk-2.3.3-py*.egg-info
diff --git a/binwalk-python.patch b/binwalk-python.patch
new file mode 100644
index 0000000..09a1994
--- /dev/null
+++ b/binwalk-python.patch
@@ -0,0 +1,20 @@
+--- binwalk-2.3.4/src/binwalk/modules/extractor.py.orig 2023-02-01 17:15:53.000000000 +0100
++++ binwalk-2.3.4/src/binwalk/modules/extractor.py 2025-03-23 10:05:37.924531273 +0100
+@@ -966,7 +966,7 @@ class Extractor(Module):
+
+ # Fork a child process
+ child_pid = os.fork()
+- if child_pid is 0:
++ if child_pid == 0:
+ # Switch to the run-as user privileges, if one has been set
+ if self.runas_uid is not None and self.runas_gid is not None:
+ os.setgid(self.runas_uid)
+@@ -981,7 +981,7 @@ class Extractor(Module):
+ rval = subprocess.call(shlex.split(command), stdout=tmp, stderr=tmp)
+
+ # A true child process should exit with the subprocess exit value
+- if child_pid is 0:
++ if child_pid == 0:
+ sys.exit(rval)
+ # If no os.fork() happened, just return the subprocess exit value
+ elif child_pid is None:
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/binwalk.git/commitdiff/d881f4a52ba1cfb0c28850796b2e87890209df80
More information about the pld-cvs-commit
mailing list