From 5e412a87a01e637089982e40b1ad57dd5a7fa91f Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Wed, 3 Feb 2010 19:24:35 +0000 Subject: [PATCH] Some fixes to make the release scripts actually work. These are not necessarily very clean, and the ipod video build is still problematic due to bins.pl not handling variants properly, but at least the scripts now do something git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_5@24492 a1c6a512-1295-4272-9138-f99709370657 --- tools/builds.pm | 6 +++--- tools/release/manuals.pl | 6 ++++-- tools/release/voices.pl | 5 +++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/tools/builds.pm b/tools/builds.pm index e69dbff60e..2400b2d5d7 100644 --- a/tools/builds.pm +++ b/tools/builds.pm @@ -1,6 +1,6 @@ -$publicrelease="3.4"; -$releasedate="September 24, 2009"; -$releasenotes="/wiki/ReleaseNotes34"; +$publicrelease="3.5"; +$releasedate="February 3, 2010"; +$releasenotes="/wiki/ReleaseNotes35"; %builds = ( 'archosav300' => { diff --git a/tools/release/manuals.pl b/tools/release/manuals.pl index ff293cd24e..9b0db62bc1 100755 --- a/tools/release/manuals.pl +++ b/tools/release/manuals.pl @@ -2,6 +2,8 @@ $version="3.5"; +require "tools/builds.pm"; + my $verbose; if($ARGV[0] eq "-v") { $verbose =1; @@ -57,7 +59,7 @@ sub buildit { `rm -rf * >/dev/null 2>&1`; - my $c = "../tools/configure --target=$target --type=m"; + my $c = "echo|../tools/configure --target=$target --type=m"; print "C: $c\n" if($verbose); `$c`; @@ -73,7 +75,7 @@ sub buildit { `(cd tools && make ) >/dev/null 2>&1`; for my $b (&stablebuilds) { - next if ($builds{$b}{configname} < 3); # no variants + #next if ($builds{$b}{configname} < 3); # no variants runone($b); } diff --git a/tools/release/voices.pl b/tools/release/voices.pl index 4f4de4b157..78e5782abf 100755 --- a/tools/release/voices.pl +++ b/tools/release/voices.pl @@ -1,4 +1,5 @@ #!/usr/bin/perl +require "tools/builds.pm"; $version="3.5"; @@ -54,7 +55,7 @@ sub buildit { `rm -rf * >/dev/null 2>&1`; - my $c = "../tools/configure --type=av --target=$model --language=0 --tts=f"; + my $c = "echo|../tools/configure --type=av --target=$model --language=0 --tts=f"; print "C: $c\n" if($verbose); `$c`; @@ -74,7 +75,7 @@ my $pool="$home/tmp/rockbox-voices-$version/voice-pool"; $ENV{'POOL'}="$pool"; for my $b (&stablebuilds) { - next if ($builds{$b}{configname} < 3); # no variants + #next if ($builds{$b}{configname} < 3); # no variants runone($b); }