radare2: Update to version 5.4.2 (#2563)

* radare2: Update to version 5.3.1

Download from GitHub instead of radare.mikelloc.com; Windows binaries
have been release on GitHub since version 4.4.0. The previous site has
an expired certificate anyway.

* radare2: Update to version 5.4.2

* radare2: Fix extract_dir for 32bit autoupdate
This commit is contained in:
Mark 2021-10-08 05:56:01 -07:00 committed by GitHub
parent da12506657
commit a45257782f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,18 @@
{ {
"version": "4.3.1", "version": "5.4.2",
"description": "Portable reversing framework", "description": "UNIX-like reverse engineering framework and command-line toolset",
"homepage": "https://www.radare.org/r/", "homepage": "https://www.radare.org/n/radare2.html",
"license": "LGPL-3.0-only", "license": "LGPL-3.0-only",
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://radare.mikelloc.com/get/4.3.1/radare2-msvc_64-4.3.1.zip", "url": "https://github.com/radareorg/radare2/releases/download/5.4.2/radare2-5.4.2-w64.zip",
"hash": "sha1:4066fc7d1ffd21cd51a189a032dc5c7a1c81c712", "hash": "303811f388b81138c615d1af4837f2a8a715b66939da211de186386986c4c5ad",
"extract_dir": "radare2-vs2017_64-4.3.1" "extract_dir": "radare2-5.4.2-w64"
},
"32bit": {
"url": "https://github.com/radareorg/radare2/releases/download/5.4.2/radare2-5.4.2-w32.zip",
"hash": "2c79342ec28b695bd60813e4fffc8e1afc142de17c172c4c1255e376b83afd36",
"extract_dir": "radare2-5.4.2-w32"
} }
}, },
"bin": [ "bin": [
@ -23,22 +28,24 @@
"bin\\ragg2.exe", "bin\\ragg2.exe",
"bin\\rahash2.exe", "bin\\rahash2.exe",
"bin\\rarun2.exe", "bin\\rarun2.exe",
"bin\\rasign2.exe",
"bin\\rasm2.exe", "bin\\rasm2.exe",
"bin\\ravc2.exe",
"bin\\rax2.exe" "bin\\rax2.exe"
], ],
"checkver": { "checkver": {
"url": "https://www.radare.org/r/down.html", "github": "https://github.com/radareorg/radare2"
"regex": "last release is ([\\d.]+)"
}, },
"autoupdate": { "autoupdate": {
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://radare.mikelloc.com/get/$version/radare2-msvc_64-$version.zip", "url": "https://github.com/radareorg/radare2/releases/download/$version/radare2-$version-w64.zip",
"extract_dir": "radare2-vs2017_64-$version" "extract_dir": "radare2-$version-w64"
},
"32bit": {
"url": "https://github.com/radareorg/radare2/releases/download/$version/radare2-$version-w32.zip",
"extract_dir": "radare2-$version-w32"
} }
},
"hash": {
"url": "$baseurl/checksums.sha1sum"
} }
} }
} }