mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 13:19:54 +00:00
Bump version to 5.4.1. From now on, odd versions are same as -git
* The reason for this is because debian, meson and cmake misbehave or don't handle dash suffixes, so let's just keep things simpler
This commit is contained in:
parent
8d44558224
commit
3754ed89a0
@ -4,7 +4,7 @@
|
||||
|
||||
[![Tests Status](https://github.com/radareorg/radare2/workflows/CI/badge.svg?branch=master)](https://github.com/radareorg/radare2/actions/workflows/ci.yml?query=branch%3Amaster) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/741/badge)](https://bestpractices.coreinfrastructure.org/projects/741) [![Build Status](https://scan.coverity.com/projects/416/badge.svg)](https://scan.coverity.com/projects/416) [![Total alerts](https://img.shields.io/lgtm/alerts/g/radareorg/radare2.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/radareorg/radare2/alerts/)
|
||||
|
||||
Next release will be 5.4.0 and the [![latest packaged version(s)](https://repology.org/badge/latest-versions/radare2.svg)](https://repology.org/project/radare2/versions) See the [Release](https://github.com/radareorg/radare2/releases) downloads page.
|
||||
Next release will be 5.4.2, current git is 5.4.1 and the [![latest packaged version(s)](https://repology.org/badge/latest-versions/radare2.svg)](https://repology.org/project/radare2/versions) See the [Release](https://github.com/radareorg/radare2/releases) downloads page.
|
||||
|
||||
r2 is a rewrite from scratch of radare. It provies a set of libraries, tools and
|
||||
plugins to ease reverse engineering tasks.
|
||||
|
12
configure
vendored
12
configure
vendored
@ -133,12 +133,12 @@ done
|
||||
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
|
||||
: ${INSTALL_MAN:=${INSTALL} -m 444}
|
||||
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
|
||||
PKGNAME='radare2' ; VERSION='5.4.0' ; VERSION_MAJOR=5; VERSION_MINOR=4; VERSION_PATCH=0; VERSION_NUMBER=50400; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
|
||||
PKGNAME='radare2' ; VERSION='5.4.1' ; VERSION_MAJOR=5; VERSION_MINOR=4; VERSION_PATCH=1; VERSION_NUMBER=50401; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
|
||||
}
|
||||
|
||||
show_usage() {
|
||||
cat <<EOF2
|
||||
'configure' configures radare2-5.4.0 to adapt to many kinds of systems.
|
||||
'configure' configures radare2-5.4.1 to adapt to many kinds of systems.
|
||||
|
||||
Usage: ./configure [OPTION]... [VAR=VALUE]...
|
||||
|
||||
@ -242,10 +242,10 @@ ocho() {
|
||||
|
||||
show_version() {
|
||||
if [ "$QUIET" = 1 ]; then
|
||||
echo "5.4.0"
|
||||
echo "5.4.1"
|
||||
exit 0
|
||||
fi
|
||||
echo "radare2-5.4.0 configuration script done with acr v1.9.8.
|
||||
echo "radare2-5.4.1 configuration script done with acr v1.9.8.
|
||||
The 'Free Software Foundation' message is only for autodetection.
|
||||
Originally written by pancake <nopcode.org>."
|
||||
exit 0
|
||||
@ -274,7 +274,7 @@ case $flag in
|
||||
show_version ; ;;
|
||||
-r|--r|--report)
|
||||
echo "PKGNAME: radare2"
|
||||
echo "VERSION: 5.4.0"
|
||||
echo "VERSION: 5.4.1"
|
||||
echo "LANGS: c"
|
||||
echo "REQUIRED: libdl"
|
||||
echo "OPTIONAL: libmagic libz libzip libxxhash libssl liblibuv>=1.0.0"
|
||||
@ -402,7 +402,7 @@ echo "ERROR: ${CC} cannot create executables" >&2 ;
|
||||
exit 1 ; fi
|
||||
ochof "checking for dynamic library... "
|
||||
HAVE_LIB_DL=0
|
||||
for OS in gnulinux linux gnu/kfreebsd syllable sunos darwin beos solaris wsl ; do
|
||||
for OS in gnulinux linux gnu/kfreebsd syllable serenityos vinix sunos darwin beos solaris wsl ; do
|
||||
if [ "${HOST_OS}" = "${OS}" ]; then
|
||||
HAVE_LIB_DL=1
|
||||
break;
|
||||
|
@ -1,5 +1,5 @@
|
||||
PKGNAME radare2
|
||||
VERSION 5.4.0
|
||||
VERSION 5.4.1
|
||||
CONTACT pancake ; pancake@nopcode.org
|
||||
|
||||
LANG_C!
|
||||
|
@ -1,4 +1,4 @@
|
||||
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.49', version : '5.4.0')
|
||||
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.49', version : '5.4.1')
|
||||
|
||||
py3_exe = import('python').find_installation('python3')
|
||||
git_exe = find_program('git', required: false)
|
||||
|
Loading…
Reference in New Issue
Block a user