Skip to content

Commit 1893b2f

Browse files
authored
Release 6.0.0
1 parent c7823d7 commit 1893b2f

File tree

8 files changed

+4972
-4970
lines changed

8 files changed

+4972
-4970
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
path: dist/debian/*.deb
6060
build-linux22-precompiled:
6161
runs-on: ubuntu-22.04
62+
continue-on-error: true
6263
steps:
6364
- uses: actions/checkout@v4
6465
- name: Installing radare2

configure

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# This script was automatically generated by ACR v2.1.4
2+
# This script was automatically generated by ACR v2.2.2
33
# @author: pancake <nopcode.org>
44
# @url: http://www.nopcode.org
55
# @repo: git clone https://github.com/radare/acr
@@ -113,12 +113,12 @@ done
113113
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
114114
: ${INSTALL_MAN:=${INSTALL} -m 444}
115115
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
116-
PKGNAME='r2frida' ; VERSION='5.9.8' ; VERSION_MAJOR=5; VERSION_MINOR=9; VERSION_PATCH=8; VERSION_NUMBER=50908; CONTACT_MAIL="pancake@nowsecure.com" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nowsecure.com>" ;
116+
PKGNAME='r2frida' ; VERSION='6.0.0' ; VERSION_MAJOR=6; VERSION_MINOR=0; VERSION_PATCH=0; VERSION_NUMBER=60000; CONTACT_MAIL="pancake@nowsecure.com" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nowsecure.com>" ;
117117
}
118118

119119
show_usage() {
120120
cat <<EOF2
121-
'configure' configures r2frida-5.9.8 to adapt to many kinds of systems.
121+
'configure' configures r2frida-6.0.0 to adapt to many kinds of systems.
122122
123123
Usage: ./configure [OPTION]... [VAR=VALUE]...
124124
@@ -200,10 +200,10 @@ ocho() {
200200

201201
show_version() {
202202
if [ "$QUIET" = 1 ]; then
203-
echo "5.9.8"
203+
echo "6.0.0"
204204
exit 0
205205
fi
206-
echo "r2frida-5.9.8 configuration script done with acr v2.1.4.
206+
echo "r2frida-6.0.0 configuration script done with acr v2.2.2.
207207
The 'Free Software Foundation' message is only for autodetection.
208208
Originally written by pancake <nopcode.org>."
209209
exit 0
@@ -232,7 +232,7 @@ case $flag in
232232
show_version ; ;;
233233
-r|--r|--report)
234234
echo "PKGNAME: r2frida"
235-
echo "VERSION: 5.9.8"
235+
echo "VERSION: 6.0.0"
236236
echo "AUTHOR: pancake"
237237
echo "EMAIL: pancake@nowsecure.com"
238238
echo "LANGS: c"

configure.acr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKGNAME r2frida
2-
VERSION 5.9.8
2+
VERSION 6.0.0
33
CONTACT pancake ; pancake@nowsecure.com
44

55
USE_PKGCONFIG!

configure.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@echo OFF
22
setlocal
3-
set "R2V=5.9.8"
3+
set "R2V=6.0.0"
44
set "R2ZIP=https://github.com/radareorg/radare2/releases/download/%R2V%/radare2-%R2V%-w64.zip"
55
set "R2DIR=radare2"
66

@@ -44,6 +44,7 @@ powershell -Command "Invoke-WebRequest -Uri '%R2ZIP%' -OutFile 'radare2-%R2V%.zi
4444
echo Extracting ZIP...
4545
powershell -Command "Expand-Archive -Path 'radare2-%R2V%.zip' -DestinationPath '%CD%' -Force"
4646
ren radare2-%R2V%-w64 %R2DIR%
47+
copy %R2DIR%\include\libr\r_util\r_event.h %R2DIR%\include\libr\r_event.h
4748

4849
echo Deleting ZIP file...
4950
del radare2-%R2V%.zip

make.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22
REM setlocal EnableDelayedExpansion
33
set frida_version=17.2.14
4-
set r2frida_version=5.9.8
4+
set r2frida_version=6.0.0
55
if "%PLATFORM%" == "x64" (set frida_os_arch=x86_64) else (set frida_os_arch=x86)
66
set DEBUG=/O2
77

0 commit comments

Comments
 (0)