me
/
guix
Archived
1
0
Fork 0

gnu: python-binwalk: Switch to a release.

When the package was last modified, the version wasn't released; an
unreleased commit was used. This is no longer necessary. The tag only
differs in the version number from the commit that was being used
before.

* gnu/packages/python-xyz.scm (python-binwalk): Use a released tag
  (v2.2.0).

Co-authored-by: Vincent Legoll <vincent.legoll@gmail.com>
master
Jakub Kądziołka 2020-03-01 14:09:42 +01:00
parent 2f3515f736
commit 9b9ab657cc
No known key found for this signature in database
GPG Key ID: E315A75846131564
1 changed files with 33 additions and 34 deletions

View File

@ -11191,40 +11191,39 @@ binary or text.")
,@(package-propagated-inputs base)))))) ,@(package-propagated-inputs base))))))
(define-public python-binwalk (define-public python-binwalk
(let ((commit "64201acfb5b0a9cdd9faa58c40a36dcff8612e29") (package
(revision "0")) (name "python-binwalk")
(package (version "2.2.0")
(name "python-binwalk") (source
(version (git-version "2.1.1" revision commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://github.com/ReFirmLabs/binwalk")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/ReFirmLabs/binwalk") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "1bxgj569fzwv6jhcbl864nmlsi9x1k1r20aywjxc8b9b1zgqrlvc"))))
(base32 (build-system python-build-system)
"1z7ca6rfp887hw5jc3sb45mm4fa0xid4lsp2z8g4r590dr7k7w15")))) (arguments
(build-system python-build-system) `(#:phases
(arguments (modify-phases %standard-phases
`(#:phases (add-before 'check 'set-pythonpath
(modify-phases %standard-phases (lambda _
(add-before 'check 'set-pythonpath (setenv "PYTHONPATH"
(lambda _ (string-append
(setenv "PYTHONPATH" (getcwd) "/src/"
(string-append ":" (getenv "PYTHONPATH")))
(getcwd) "/src/" (setenv "HOME" "")
":" (getenv "PYTHONPATH"))) #t)))))
(setenv "HOME" "") (native-inputs
#t))))) `(("python-coverage" ,python-coverage)
(native-inputs ("python-nose" ,python-nose)))
`(("python-coverage" ,python-coverage) (home-page "https://github.com/ReFirmLabs/binwalk")
("python-nose" ,python-nose))) (synopsis "Firmware analysis tool")
(home-page "https://github.com/ReFirmLabs/binwalk") (description "Binwalk is a tool for analyzing, reverse engineering, and
(synopsis "Firmware analysis tool") extracting firmware images")
(description "Binwalk is a tool for analyzing, reverse engineering, and extracting firmware images") (license license:expat)))
(license license:expat))))
(define-public python-nltk (define-public python-nltk
(package (package