Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
binwalk
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
binwalk
Commits
b131b7cd
Commit
b131b7cd
authored
Oct 27, 2014
by
devttys0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed depreciated build code related to pyqtgraph
parent
1541bf26
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
14 deletions
+0
-14
Makefile.in
Makefile.in
+0
-1
setup.py
setup.py
+0
-8
__init__.py
src/binwalk/__init__.py
+0
-5
No files found.
Makefile.in
View file @
b131b7cd
...
@@ -10,7 +10,6 @@ export INSTALL_OPTIONS=@INSTALL_OPTIONS@
...
@@ -10,7 +10,6 @@ export INSTALL_OPTIONS=@INSTALL_OPTIONS@
export
PLATFORM
=
@PLATFORM@
export
PLATFORM
=
@PLATFORM@
export
BUILD_MAGIC
=
@BUILD_MAGIC@
export
BUILD_MAGIC
=
@BUILD_MAGIC@
export
BUILD_FUZZY
=
@BUILD_FUZZY@
export
BUILD_FUZZY
=
@BUILD_FUZZY@
export
BUILD_PYQTGRAPH
=
@BUILD_PYQTGRAPH@
export
PYLIBDIR
=
"./binwalk/libs"
export
PYLIBDIR
=
"./binwalk/libs"
BUILD_C_LIBS
=
@BUILD_C_LIBS@
BUILD_C_LIBS
=
@BUILD_C_LIBS@
...
...
setup.py
View file @
b131b7cd
...
@@ -144,14 +144,6 @@ install_data_files = [os.path.join("libs", "*.so"), os.path.join("libs", "*.dyli
...
@@ -144,14 +144,6 @@ install_data_files = [os.path.join("libs", "*.so"), os.path.join("libs", "*.dyli
for
data_dir
in
data_dirs
:
for
data_dir
in
data_dirs
:
install_data_files
.
append
(
"
%
s
%
s*"
%
(
data_dir
,
os
.
path
.
sep
))
install_data_files
.
append
(
"
%
s
%
s*"
%
(
data_dir
,
os
.
path
.
sep
))
if
os
.
getenv
(
"BUILD_PYQTGRAPH"
)
==
"yes"
:
install_data_files
.
append
(
os
.
path
.
join
(
"libs"
,
"pyqtgraph"
,
"*.py"
))
for
(
root
,
dirs
,
files
)
in
os
.
walk
(
os
.
path
.
join
(
MODULE_NAME
,
"libs"
,
"pyqtgraph"
)):
if
dirs
:
for
directory
in
dirs
:
install_data_files
.
append
(
os
.
path
.
join
(
os
.
path
.
sep
.
join
(
root
.
split
(
os
.
path
.
sep
)[
1
:]),
os
.
path
.
join
(
directory
,
"*.py"
)))
# Install the module, script, and support files
# Install the module, script, and support files
setup
(
name
=
MODULE_NAME
,
setup
(
name
=
MODULE_NAME
,
version
=
"2.1.0"
,
version
=
"2.1.0"
,
...
...
src/binwalk/__init__.py
View file @
b131b7cd
...
@@ -3,11 +3,6 @@ __all__ = ['scan', 'execute', 'Modules', 'ModuleException']
...
@@ -3,11 +3,6 @@ __all__ = ['scan', 'execute', 'Modules', 'ModuleException']
import
sys
import
sys
import
binwalk.core.common
import
binwalk.core.common
# This allows importing of the built-in pyqtgraph if it
# is not available on the system at run time.
# No longer needed, as pyqtgraph is no longer bundled with binwalk.
sys
.
path
.
append
(
binwalk
.
core
.
common
.
get_libs_path
())
from
binwalk.core.module
import
Modules
,
ModuleException
from
binwalk.core.module
import
Modules
,
ModuleException
# Convenience functions
# Convenience functions
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment