Release 0.10.4 - codename: padron peppers

This commit is contained in:
pancake 2016-07-07 00:32:59 +02:00
parent 5586355bb8
commit 092e859c5c
6 changed files with 18 additions and 11 deletions

View File

@ -1,7 +1,7 @@
-include config-user.mk
include global.mk
PREVIOUS_RELEASE=0.10.1
PREVIOUS_RELEASE=0.10.3
R2R=radare2-regressions
R2R_URL=$(shell doc/repo REGRESSIONS)
@ -345,6 +345,9 @@ osx-sign:
osx-sign-libs:
$(MAKE) -C binr/radare2 osx-sign-libs
osx-pkg:
sys/osx-pkg.sh $(VERSION)
quality:
./sys/shellcheck.sh

8
configure vendored
View File

@ -114,12 +114,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
PKGNAME='radare2' ; VERSION='0.10.4-git' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
PKGNAME='radare2' ; VERSION='0.10.4' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
}
show_usage() {
cat <<EOF2
'configure' configures radare2-0.10.4-git to adapt to many kinds of systems.
'configure' configures radare2-0.10.4 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
@ -200,7 +200,7 @@ take_environ() {
}
show_version() {
echo "radare2-0.10.4-git configuration script done with acr v0.10.2.
echo "radare2-0.10.4 configuration script done with acr v0.10.2.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>."
exit 0
@ -224,7 +224,7 @@ case $flag in
show_version ; ;;
-r|--r|--report)
echo "PKGNAME: radare2"
echo "VERSION: 0.10.4-git"
echo "VERSION: 0.10.4"
echo "LANGS: c"
echo "REQUIRED: libdl"
echo "OPTIONAL: libmagic"

View File

@ -1,5 +1,5 @@
PKGNAME radare2
VERSION 0.10.4-git
VERSION 0.10.4
CONTACT pancake ; pancake@nopcode.org
LANG_C!

View File

@ -78,7 +78,7 @@ static bool load(RBin *bin) {
return ((bin->cur->xtr_obj = r_bin_fatmach0_new (bin->file)) != NULL);
}
static ut64 size(RBin *bin) {
static ut64 size(RBinFile *arch) {
// TODO
return 0;
}
@ -118,7 +118,6 @@ static RBinXtrData * oneshot(RBin *bin, const ut8 *buf, ut64 size, int idx) {
return res;
}
static RList * extractall(RBin *bin) {
RList *res = NULL;
int narch, i = 0;

View File

@ -5,7 +5,8 @@ R2B="${PWD}/../radare2-bin"
R2T="${PWD}"
ARCHS="arm mips aarch64 x86"
v=0.10.3-git
v="`./configure --version| head -n 1|awk '{print $1}'|cut -d - -f 2`"
[ -z "${v}" ] && v=0.10.4
if [ -n "$1" ]; then
ARCHS="$@"

View File

@ -9,8 +9,12 @@
SRC=/tmp/r2osx
PREFIX=/usr/local
DST="$(pwd)/sys/osx-pkg/radare2.unpkg"
if [ -n "$1" ]; then
VERSION="$1"
else
VERSION="`./configure --version| head -n 1|awk '{print $1}'|cut -d - -f 2`"
[ -z "${VERSION}" ] && VERSION=0.10.0
[ -z "${VERSION}" ] && VERSION=0.10.4
fi
[ -z "${MAKE}" ] && MAKE=make
rm -rf "${SRC}"