* Bump to 0.8.6

* Various fixes for the farm
  - Build and push python + python-dist
This commit is contained in:
pancake 2011-10-12 05:13:54 +02:00
parent e9d1dcb4ec
commit dfa6e1f512
8 changed files with 19 additions and 12 deletions

8
configure vendored
View File

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

View File

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

View File

@ -96,12 +96,12 @@ done
: ${INSTALL_PROGRAM:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -c}
PKGNAME='radare2-bindings' ; VERSION='0.8.5' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
PKGNAME='radare2-bindings' ; VERSION='0.8.6' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
}
show_usage() {
cat <<EOF2
'configure' configures radare2-bindings-0.8.5 to adapt to many kinds of systems.
'configure' configures radare2-bindings-0.8.6 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
@ -169,7 +169,7 @@ take_environ() {
}
show_version() {
echo "radare2-bindings-0.8.5 configuration script done with acr v0.8.6.
echo "radare2-bindings-0.8.6 configuration script done with acr v0.8.6.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <youterm.com>."
exit 0
@ -187,7 +187,7 @@ case $flag in
show_version ; ;;
"-r"|"--r"|"--report")
echo "PKGNAME: radare2-bindings"
echo "VERSION: 0.8.5"
echo "VERSION: 0.8.6"
echo "LANGS: c c++"
echo "PKG-CONFIG: r_core"
echo "FLAGS: --enable-devel --with-cc=gcc --with-cxx=g++ --with-ostype=auto"

View File

@ -1,5 +1,5 @@
PKGNAME radare2-bindings
VERSION 0.8.5
VERSION 0.8.6
CONTACT pancake ; pancake@nopcode.org
LANG_C!

View File

@ -19,9 +19,11 @@ REMOTEDIR=""
TARGETS="
build
bindist
python
python-dist
mingw32
android-arm
android-x86
python-dist
"
# mingw64 maemo

4
sys/farm/Makefile Normal file
View File

@ -0,0 +1,4 @@
all:
sh run.sh
sh html.sh
sh push.sh

View File

@ -10,3 +10,4 @@ os=`uname -sm|sed -e 's, ,-,'|tr 'A-Z' 'a-z'`
cp ../../$p-bin.tar.gz $b/$p-$os.tar.gz
cp ../../$p-android*.gz $b
cp ../../radare2-*.zip $b
cp ../../r2-bindings-0.8.5.tar.gz $b

View File

@ -12,7 +12,7 @@ for a in log/*.log ; do
echo "<h1><a href=./>index</a></h1>" >> $b
echo "<h1>$a</h1>" >> $b
warnings=$(cat $a|grep warning: |wc -l)
errors=$(cat $a|grep error: |wc -l)
errors=$(cat $a|grep -e error: -e 'returned 1'|wc -l)
if [ -f $t ]; then
echo "<h2>time:</h2>" >> $b
echo "<pre>" >> $b