diff --git a/dist/CMakeLists.txt b/dist/CMakeLists.txt index d3102b6f..093d6a3a 100644 --- a/dist/CMakeLists.txt +++ b/dist/CMakeLists.txt @@ -201,9 +201,9 @@ if(CUTTER_PACKAGE_RZ_GHIDRA) # installed Cutter. ExternalProject_Add(rz-ghidra GIT_REPOSITORY https://github.com/rizinorg/rz-ghidra - #GIT_TAG v0.3.0 + GIT_TAG v0.9.0 #GIT_TAG c7a50a2e7c0a95cd52b167c9ee0fa1805223f08e - GIT_TAG dev + #GIT_TAG dev #GIT_SHALLOW ON # disable this line when using commit hash CONFIGURE_COMMAND "" BUILD_COMMAND "" diff --git a/dist/bundle_jsdec.ps1 b/dist/bundle_jsdec.ps1 index 4eee6d98..e1b58bea 100644 --- a/dist/bundle_jsdec.ps1 +++ b/dist/bundle_jsdec.ps1 @@ -4,7 +4,7 @@ $plugin_path = "$dist\plugins\native\" $pathdll = "$plugin_path\jsdec_cutter.dll" if (-not (Test-Path -Path 'jsdec' -PathType Container)) { - git clone https://github.com/rizinorg/jsdec.git --depth 1 --branch "dev" + git clone https://github.com/rizinorg/jsdec.git --depth 1 --branch "v0.9.0" } cd jsdec $jsdecdir = (Get-Item .).FullName diff --git a/dist/bundle_rz_libswift.ps1 b/dist/bundle_rz_libswift.ps1 index 9c0b3c32..8b7b7406 100644 --- a/dist/bundle_rz_libswift.ps1 +++ b/dist/bundle_rz_libswift.ps1 @@ -2,7 +2,7 @@ $dist = $args[0] $python = Split-Path((Get-Command python.exe).Path) if (-not (Test-Path -Path 'libswift' -PathType Container)) { - git clone https://github.com/rizinorg/rz-libswift.git --depth 1 libswift + git clone https://github.com/rizinorg/rz-libswift.git --depth 1 --branch "v0.9.0" libswift } cd libswift & meson.exe --buildtype=release --prefix=$dist build diff --git a/dist/bundle_rz_libyara.ps1 b/dist/bundle_rz_libyara.ps1 index fe72a91b..27711049 100644 --- a/dist/bundle_rz_libyara.ps1 +++ b/dist/bundle_rz_libyara.ps1 @@ -3,7 +3,7 @@ $cmake_opts = $args[1] $python = Split-Path((Get-Command python.exe).Path) if (-not (Test-Path -Path 'rz_libyara' -PathType Container)) { - git clone https://github.com/rizinorg/rz-libyara.git --depth 1 --branch main rz_libyara + git clone https://github.com/rizinorg/rz-libyara.git --depth 1 --branch "v0.9.0" rz_libyara git -C rz_libyara submodule init git -C rz_libyara submodule update } diff --git a/dist/bundle_rz_silhouette.ps1 b/dist/bundle_rz_silhouette.ps1 index 4cf04668..77bbc9ef 100644 --- a/dist/bundle_rz_silhouette.ps1 +++ b/dist/bundle_rz_silhouette.ps1 @@ -3,7 +3,7 @@ $cmake_opts = $args[1] $python = Split-Path((Get-Command python.exe).Path) if (-not (Test-Path -Path 'rz-silhouette' -PathType Container)) { - git clone https://github.com/rizinorg/rz-silhouette.git --depth 1 rz-silhouette + git clone https://github.com/rizinorg/rz-silhouette.git --depth 1 --branch "v0.9.0-beta4" rz-silhouette } cd rz-silhouette & meson.exe --buildtype=release --prefix=$dist build diff --git a/scripts/jsdec.sh b/scripts/jsdec.sh index ebcd2c4c..3ee28cb0 100755 --- a/scripts/jsdec.sh +++ b/scripts/jsdec.sh @@ -9,7 +9,7 @@ SCRIPTPATH=$(realpath "$(dirname "${BASH_SOURCE[0]}")") cd "$SCRIPTPATH/.." if [ ! -d jsdec ]; then - git clone https://github.com/rizinorg/jsdec.git --depth 1 --branch "dev" + git clone https://github.com/rizinorg/jsdec.git --depth 1 --branch "v0.9.0" fi cd jsdec diff --git a/scripts/rz-libswift.sh b/scripts/rz-libswift.sh index 0772cb4c..c620ad74 100755 --- a/scripts/rz-libswift.sh +++ b/scripts/rz-libswift.sh @@ -7,7 +7,7 @@ SCRIPTPATH=$(realpath "$(dirname "${BASH_SOURCE[0]}")") cd "$SCRIPTPATH/.." if [[ ! -d libswift ]]; then - git clone https://github.com/rizinorg/rz-libswift.git --depth 1 libswift + git clone https://github.com/rizinorg/rz-libswift.git --depth 1 --branch "v0.9.0" libswift fi cd libswift diff --git a/scripts/rz-libyara.sh b/scripts/rz-libyara.sh index 06fdecd7..2c25ce25 100755 --- a/scripts/rz-libyara.sh +++ b/scripts/rz-libyara.sh @@ -8,7 +8,7 @@ EXTRA_CMAKE_OPTS="$2" cd "$SCRIPTPATH/.." if [[ ! -d rz_libyara ]]; then - git clone https://github.com/rizinorg/rz-libyara.git --depth 1 --branch main rz_libyara + git clone https://github.com/rizinorg/rz-libyara.git --depth 1 --branch "v0.9.0" rz_libyara git -C rz_libyara submodule init git -C rz_libyara submodule update fi diff --git a/scripts/rz-silhouette.sh b/scripts/rz-silhouette.sh index f2f595e5..67430338 100755 --- a/scripts/rz-silhouette.sh +++ b/scripts/rz-silhouette.sh @@ -8,7 +8,7 @@ EXTRA_CMAKE_OPTS="$2" cd "$SCRIPTPATH/.." if [[ ! -d rz-silhouette ]]; then - git clone https://github.com/rizinorg/rz-silhouette.git --depth 1 rz-silhouette + git clone https://github.com/rizinorg/rz-silhouette.git --depth 1 --branch "v0.9.0-beta4" rz-silhouette fi cd rz-silhouette