Skip to content

Commit f2cf3ed

Browse files
committed
Release 6.0.2
1 parent 51db05b commit f2cf3ed

File tree

4 files changed

+41
-12
lines changed

4 files changed

+41
-12
lines changed

configure

Lines changed: 31 additions & 10 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.2.2
2+
# This script was automatically generated by ACR v2.2.4
33
# @author: pancake <nopcode.org>
44
# @url: http://www.nopcode.org
55
# @repo: git clone https://github.com/radare/acr
@@ -66,13 +66,27 @@ if [ -e "${VPATH}/config.guess" ]; then
6666
sh ${VPATH}/config.guess
6767
return
6868
fi
69-
CPU="`uname -m|sed -e 's, ,,g'|cut -d - -f 1`"
69+
CPU="`uname -m | tr 'A-Z' 'a-z' | sed -e 's, ,,g' | cut -d - -f 1`"
7070
OS="`uname -s|tr A-Z a-z`"
7171
uname -r | grep -qE "(Microsoft|WSL)" 2>/dev/null && OS="wsl"
7272
GNU="`uname --help 2>&1 | grep gnu`"
7373
[ "${GNU}" ] && OS="${OS}-gnu"
74-
[ "${CPU}" = ppc ] && CPU="powerpc"
75-
echo "${CPU}-unknown-${OS}"
74+
# normalize CPU
75+
case "${CPU}" in
76+
ppc*|powermac*|powermacintosh*|powerpc*)
77+
if echo "${CPU}" | grep -q '64'; then
78+
CPU=powerpc64
79+
else
80+
CPU=powerpc
81+
fi
82+
;;
83+
*) ;;
84+
esac
85+
VENDOR="unknown"
86+
if [ "${OS}" = "darwin" ]; then
87+
VENDOR=apple
88+
fi
89+
echo "${CPU}-${VENDOR}-${OS}"
7690
}
7791

7892
SEARCHPATH="/usr /usr/local /usr/pkg /sw"
@@ -113,12 +127,12 @@ done
113127
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
114128
: ${INSTALL_MAN:=${INSTALL} -m 444}
115129
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
116-
PKGNAME='iaito' ; VERSION='6.0.0' ; VERSION_MAJOR=6; VERSION_MINOR=0; VERSION_PATCH=0; VERSION_NUMBER=60000; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
130+
PKGNAME='iaito' ; VERSION='6.0.2' ; VERSION_MAJOR=6; VERSION_MINOR=0; VERSION_PATCH=2; VERSION_NUMBER=60002; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
117131
}
118132

119133
show_usage() {
120134
cat <<EOF2
121-
'configure' configures iaito-6.0.0 to adapt to many kinds of systems.
135+
'configure' configures iaito-6.0.2 to adapt to many kinds of systems.
122136

123137
Usage: ./configure [OPTION]... [VAR=VALUE]...
124138

@@ -194,10 +208,10 @@ ocho() {
194208

195209
show_version() {
196210
if [ "$QUIET" = 1 ]; then
197-
echo "6.0.0"
211+
echo "6.0.2"
198212
exit 0
199213
fi
200-
echo "iaito-6.0.0 configuration script done with acr v2.2.2.
214+
echo "iaito-6.0.2 configuration script done with acr v2.2.4.
201215
The 'Free Software Foundation' message is only for autodetection.
202216
Originally written by pancake <nopcode.org>."
203217
exit 0
@@ -226,7 +240,7 @@ case $flag in
226240
show_version ; ;;
227241
-r|--r|--report)
228242
echo "PKGNAME: iaito"
229-
echo "VERSION: 6.0.0"
243+
echo "VERSION: 6.0.2"
230244
echo "AUTHOR: pancake"
231245
echo "EMAIL: pancake@nopcode.org"
232246
echo "LANGS: c++"
@@ -487,7 +501,14 @@ for A in ${ENVWORDS} ; do
487501
[ "${A}" = VPATH ] && continue
488502
[ "${A}" = srcdir ] && continue
489503
eval "VAR=\$${A}"
490-
VAR="`echo ${VAR} | sed -e 's/\,/\\\,/g'`"
504+
case "" in
505+
mingw*|cygwin*|msys*)
506+
VAR="`echo ${VAR} | sed -e 's/\\/\\\\/g' -e 's/\,/\\\,/g'`"
507+
;;
508+
*)
509+
VAR="`echo ${VAR} | sed -e 's/\,/\\\,/g'`"
510+
;;
511+
esac
491512
[ $COUNT = 10 ] && COUNT=0 && SEDFLAGS="${SEDFLAGS}' -e '"
492513
COUNT=$(($COUNT+1))
493514
SEDFLAGS="${SEDFLAGS}s,@${A}@,${VAR},g;"

configure.acr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKGNAME iaito
2-
VERSION 6.0.0
2+
VERSION 6.0.2
33
CONTACT pancake ; pancake@nopcode.org
44

55
LANG_CXX!

src/Iaito.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ TARGET = iaito
44

55
IAITO_VERSION_MAJOR = 6
66
IAITO_VERSION_MINOR = 0
7-
IAITO_VERSION_PATCH = 0
7+
IAITO_VERSION_PATCH = 2
88

99
CONFIG += c++20
1010
QMAKE_CXXFLAGS += -std=c++20

src/org.radare.iaito.appdata.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@
4242
<name>radare</name>
4343
</developer>
4444
<releases>
45+
<release version="6.0.2" date="2025-09-29">
46+
<description>
47+
<p>Add --welcome flag to force display the welcome dialog</p>
48+
<p>Support moving between functions using the j/k vi keys</p>
49+
<p>More stability fixes for qt5 and qt6</p>
50+
<p>Bundling radare2 improvements</p>
51+
</description>
52+
</release>
4553
<release version="6.0.0" date="2025-08-12">
4654
<description>
4755
<p>In sync with latest radare2-6.0.x</p>

0 commit comments

Comments
 (0)