
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
21 lines
677 B
Python
21 lines
677 B
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
class PyBinwalk(PythonPackage):
|
|
"""Binwalk is a fast, easy to use tool for analyzing, reverse engineering,
|
|
and extracting firmware images."""
|
|
|
|
homepage = "https://github.com/devttys0/binwalk"
|
|
url = "https://pypi.io/packages/source/b/binwalk/binwalk-2.1.0.tar.gz"
|
|
|
|
version('2.1.0', sha256='218c8045c6cb3ed6e21814fb89cdb913808b02dfe5a6cc30f85f4a59e8129f6b')
|
|
|
|
depends_on('python')
|
|
depends_on('py-setuptools', type='build')
|