After release version bump
This commit is contained in:
parent
b06cfb30d8
commit
a671b5492b
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
# This script was automatically generated by ACR v2.1.1
|
||||
# This script was automatically generated by ACR v2.1.0
|
||||
# @author: pancake <nopcode.org>
|
||||
# @url: http://www.nopcode.org
|
||||
# @repo: git clone https://github.com/radare/acr
|
||||
|
@ -142,12 +142,12 @@ done
|
|||
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
|
||||
: ${INSTALL_MAN:=${INSTALL} -m 444}
|
||||
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
|
||||
PKGNAME='radare2' ; VERSION='5.8.4' ; VERSION_MAJOR=5; VERSION_MINOR=8; VERSION_PATCH=4; VERSION_NUMBER=50804; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
|
||||
PKGNAME='radare2' ; VERSION='5.8.5' ; VERSION_MAJOR=5; VERSION_MINOR=8; VERSION_PATCH=5; VERSION_NUMBER=50805; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
|
||||
}
|
||||
|
||||
show_usage() {
|
||||
cat <<EOF2
|
||||
'configure' configures radare2-5.8.4 to adapt to many kinds of systems.
|
||||
'configure' configures radare2-5.8.5 to adapt to many kinds of systems.
|
||||
|
||||
Usage: ./configure [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -189,7 +189,8 @@ System types:
|
|||
--target=TARGET configure for building compilers for TARGET [HOST]
|
||||
EOF2
|
||||
|
||||
printf "\nOptional Features:
|
||||
printf "
|
||||
Optional Features:
|
||||
--disable-debugger disable native debugger features
|
||||
--with-sysmagic force to use system's magic
|
||||
--disable-threads disable use of thread apis
|
||||
|
@ -219,16 +220,20 @@ printf "\nOptional Features:
|
|||
--with-ostype Choose OS ( android windows wsl mingw32 bsd solaris gnulinux darwin haiku ) (USEROSTYPE=auto)
|
||||
--with-libversion specify different libversion (LIBVERSION=xxx)
|
||||
--without-jemalloc build without jemalloc
|
||||
--with-checks-level value between 0 and 3 to enable different level of assert (see R_CHECKS_LEVEL) (R_CHECKS_LEVEL=2)\n"
|
||||
printf "\nSome influential environment variables:
|
||||
--with-checks-level value between 0 and 3 to enable different level of assert (see R_CHECKS_LEVEL) (R_CHECKS_LEVEL=2)
|
||||
"
|
||||
printf "
|
||||
Some influential environment variables:
|
||||
CC C compiler command
|
||||
CFLAGS C compiler flags
|
||||
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
|
||||
nonstandard directory <lib dir>
|
||||
CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
|
||||
headers in a nonstandard directory <include dir>
|
||||
CPP C preprocessor\n"
|
||||
printf "\nReport bugs to: pancake <pancake@nopcode.org>"
|
||||
CPP C preprocessor
|
||||
"
|
||||
printf "
|
||||
Report bugs to: pancake <pancake@nopcode.org>"
|
||||
echo ""
|
||||
exit 0
|
||||
}
|
||||
|
@ -252,10 +257,10 @@ ocho() {
|
|||
|
||||
show_version() {
|
||||
if [ "$QUIET" = 1 ]; then
|
||||
echo "5.8.4"
|
||||
echo "5.8.5"
|
||||
exit 0
|
||||
fi
|
||||
echo "radare2-5.8.4 configuration script done with acr v2.1.1.
|
||||
echo "radare2-5.8.5 configuration script done with acr v2.1.0.
|
||||
The 'Free Software Foundation' message is only for autodetection.
|
||||
Originally written by pancake <nopcode.org>."
|
||||
exit 0
|
||||
|
@ -284,7 +289,7 @@ case $flag in
|
|||
show_version ; ;;
|
||||
-r|--r|--report)
|
||||
echo "PKGNAME: radare2"
|
||||
echo "VERSION: 5.8.4"
|
||||
echo "VERSION: 5.8.5"
|
||||
echo "AUTHOR: pancake"
|
||||
echo "EMAIL: pancake@nopcode.org"
|
||||
echo "DESCRIPTION: The UNIX-like reverse engineering toolkit"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
PKGNAME radare2
|
||||
VERSION 5.8.4
|
||||
VERSION 5.8.5
|
||||
CONTACT pancake ; pancake@nopcode.org
|
||||
|
||||
DESCRIPTION The UNIX-like reverse engineering toolkit ;
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
"pancake <pancake@nopcode.org>"
|
||||
],
|
||||
"name": "radare2-git",
|
||||
"version": "5.8.4",
|
||||
"version": "5.8.5",
|
||||
"bugs": {
|
||||
"url": "https://github.com/radareorg/radare2/issues"
|
||||
},
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.50', version : '5.8.4')
|
||||
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.50', version : '5.8.5')
|
||||
|
||||
py3_exe = import('python').find_installation('python3')
|
||||
gen_py = '@0@/libr/syscall/d/gen.py'.format(meson.current_source_dir())
|
||||
|
|
Loading…
Reference in New Issue