Skip to content

Commit

Permalink
Release 5.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Mar 31, 2024
1 parent d638525 commit 931e86e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: ci

env:
R2V: 5.8.8
R2V: 5.9.0

on:
push:
Expand Down Expand Up @@ -41,8 +41,8 @@ jobs:
uses: actions/checkout@v3
- name: Installing radare2 from deb
run: |
wget https://github.com/radareorg/radare2/releases/download/5.8.8/radare2_5.8.8_amd64.deb
wget https://github.com/radareorg/radare2/releases/download/5.8.8/radare2-dev_5.8.8_amd64.deb
wget https://github.com/radareorg/radare2/releases/download/5.9.0/radare2_5.9.0_amd64.deb
wget https://github.com/radareorg/radare2/releases/download/5.9.0/radare2-dev_5.9.0_amd64.deb
sudo dpkg -i *.deb
- name: Building r2ghidra with acr
run: ./preconfigure && ./configure --prefix=/usr && make -j4 ; make user-install
Expand All @@ -60,7 +60,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
# path: radare2/dist/debian/*/*.deb r2ghidra/dist/debian/*.deb
name: linux-acr-ok
name: linux-deb
path: dist/debian/*.deb
- name: Precompiling the sleigh
run: make dist
Expand All @@ -77,8 +77,8 @@ jobs:
uses: actions/checkout@v3
- name: Installing radare2 from deb
run: |
wget https://github.com/radareorg/radare2/releases/download/5.8.8/radare2_5.8.8_amd64.deb
wget https://github.com/radareorg/radare2/releases/download/5.8.8/radare2-dev_5.8.8_amd64.deb
wget https://github.com/radareorg/radare2/releases/download/5.9.0/radare2_5.9.0_amd64.deb
wget https://github.com/radareorg/radare2/releases/download/5.9.0/radare2-dev_5.9.0_amd64.deb
sudo dpkg -i *.deb
rm *.deb
- name: Building tars
Expand Down
10 changes: 5 additions & 5 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
PKGNAME='r2ghidra' ; VERSION='5.8.8' ; VERSION_MAJOR=5; VERSION_MINOR=8; VERSION_PATCH=8; VERSION_NUMBER=50808; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
PKGNAME='r2ghidra' ; VERSION='5.9.0' ; VERSION_MAJOR=5; VERSION_MINOR=9; VERSION_PATCH=0; VERSION_NUMBER=50900; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
}

show_usage() {
cat <<EOF2
'configure' configures r2ghidra-5.8.8 to adapt to many kinds of systems.
'configure' configures r2ghidra-5.9.0 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -189,10 +189,10 @@ ocho() {

show_version() {
if [ "$QUIET" = 1 ]; then
echo "5.8.8"
echo "5.9.0"
exit 0
fi
echo "r2ghidra-5.8.8 configuration script done with acr v2.1.2.
echo "r2ghidra-5.9.0 configuration script done with acr v2.1.2.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>."
exit 0
Expand Down Expand Up @@ -221,7 +221,7 @@ case $flag in
show_version ; ;;
-r|--r|--report)
echo "PKGNAME: r2ghidra"
echo "VERSION: 5.8.8"
echo "VERSION: 5.9.0"
echo "AUTHOR: pancake"
echo "EMAIL: [email protected]"
echo "LANGS: c++"
Expand Down
2 changes: 1 addition & 1 deletion configure.acr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKGNAME r2ghidra
VERSION 5.8.9
VERSION 5.9.0
CONTACT pancake ; [email protected]

LANG_CXX!
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project(
['c', 'cpp'],
license : 'LGPL3',
meson_version : '>=0.50.1',
version : '5.8.9',
version : '5.9.0',
default_options : ['c_std=c11', 'cpp_std=c++11']
)

Expand Down

0 comments on commit 931e86e

Please sign in to comment.