forked from pool/binwalk
Accepting request 350576 from home:alois:branches:devel:tools
Updated to version 2.1.1. OBS-URL: https://build.opensuse.org/request/show/350576 OBS-URL: https://build.opensuse.org/package/show/devel:tools/binwalk?expand=0&rev=10
This commit is contained in:
parent
73830d48b8
commit
c7ba9ccf78
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:90ee8426d71e91b62dfe4a1446c457bc7835b475b28717859e275a0494403959
|
||||
size 2234469
|
3
binwalk-2.1.1.tar.gz
Normal file
3
binwalk-2.1.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1b70a5b03489d29f60fef18008a2164974234874faab48a4f47ec53d461d284a
|
||||
size 263977
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 23 18:04:53 UTC 2015 - aloisio@gmx.com
|
||||
|
||||
- Update to version 2.1.1:
|
||||
* Many bug fixes
|
||||
* New/improved file signatures
|
||||
* Disassembly scans (using the Capstone Engine)
|
||||
* Improved raw Deflate compression detection and extraction
|
||||
* Raw LZMA compression detection and extraction
|
||||
* Improved false positive detection for common compressions
|
||||
(Zlib, LZMA)
|
||||
* An IDA plugin for running binwalk inside of IDA
|
||||
* Integration of better extraction utilities (e.g., sasquatch
|
||||
for SquashFS, jefferson for JFFS2)
|
||||
* Removal of all C library dependencies, including
|
||||
libmagic - pure Python!
|
||||
* Native Windows support!
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 10:56:52 UTC 2015 - sor.alexei@meowr.ru
|
||||
|
||||
|
18
binwalk.spec
18
binwalk.spec
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: binwalk
|
||||
Version: 2.0.1
|
||||
Version: 2.1.1
|
||||
Release: 0
|
||||
Summary: Firmware Analysis Tool
|
||||
License: MIT
|
||||
@ -35,6 +35,7 @@ Recommends: unrar
|
||||
Recommends: xz
|
||||
Recommends: zlib
|
||||
Suggests: java
|
||||
BuildRequires: fdupes
|
||||
%if 0%{?suse_version} >= 1230
|
||||
BuildRequires: python3-devel
|
||||
Requires: python3-curses
|
||||
@ -46,6 +47,9 @@ Requires: python-argparse
|
||||
Requires: python-curses
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
%if 0%{?suse_version} > 1110
|
||||
BuildArch: noarch
|
||||
%endif
|
||||
|
||||
%description
|
||||
Binwalk is a tool for searching a given binary image for embedded
|
||||
@ -62,23 +66,25 @@ bootloaders, filesystems, etc.
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure \
|
||||
%if 0%{?suse_version} >= 1230
|
||||
--with-python=python3 \
|
||||
--disable-libfuzzy \
|
||||
python3 setup.py build
|
||||
%else
|
||||
python setup.py build
|
||||
%endif
|
||||
--disable-libmagic
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%if 0%{?suse_version} >= 1230
|
||||
python3 setup.py install --root=%{buildroot} --prefix=%{_prefix}
|
||||
%fdupes %{buildroot}%{python3_sitelib}
|
||||
%else
|
||||
python2 setup.py install --root=%{buildroot} --prefix=%{_prefix}
|
||||
%fdupes %{buildroot}%{python_sitelib}
|
||||
%endif
|
||||
chmod 644 API.md
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc API.md LICENSE
|
||||
%{_bindir}/%{name}
|
||||
%if 0%{?suse_version} >= 1230
|
||||
%{python3_sitelib}/%{name}/
|
||||
|
Loading…
Reference in New Issue
Block a user