Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

tools: Clean out some historical cruft from 'sims.pl'

It's intended to build all of the Windows Simulator builds in one fell
swoop but has bitrotten a bit. Correct some of the glaring
problems.

Change-Id: I6073af629d2698624036ccf303a5d18398cefdc0

+15 -30
+15 -30
tools/release/sims.pl
··· 22 22 print <<MOO 23 23 Usage: w32sims [-v] [-u] [-s] [-w] [-r VERSION] [-f filename] [buildonly] 24 24 -v Verbose output 25 - -u Run svn up before building 26 - -r Use the specified version string for filenames (defaults to SVN 27 - revision) 25 + -u Run 'git pull' before building 26 + -r Use the specified version string for filenames (defaults to git revision) 28 27 -s Strip binaries before zipping them up. 29 28 -w Crosscompile for Windows (requires mingw32) 30 29 -f Filename format string (without extension). This can include a ··· 70 69 } 71 70 72 71 if($update) { 73 - # svn update! 74 - system("svn -q up"); 72 + # Update git repo! 73 + system("git pull"); 75 74 } 76 75 77 76 $test = `sdl-config --libs`; ··· 82 81 83 82 $rev = `tools/version.sh .`; 84 83 chomp $rev; 85 - print "rev $rev\n" if($verbose); 86 84 87 85 if (@doonly) { 88 86 printf("Build only %s\n", join(', ', @doonly)) if($verbose); ··· 91 89 if (!defined($version)) { 92 90 $version = $rev; 93 91 } 92 + print "version $version\n" if($verbose); 94 93 95 94 # made once for all targets 96 95 sub runone { ··· 125 124 my $AS=(grep(/^export AS=/, <MAKE>))[0]; 126 125 chomp($AS); 127 126 (my $striptool = $AS) =~ s/^export AS=(.*)as$/$1strip/; 128 - 127 + 129 128 $cmd = "find \\( -name 'rockboxui*' -o -iname '*dll' -o -name '*.rock' -o -name '*.codec' \\) -exec $striptool '{}' ';'"; 130 129 print("$cmd\n") if ($verbose); 131 130 `$cmd`; ··· 192 191 for my $b (sort byname keys %builds) { 193 192 if ($builds{$b}{status} >= 2) 194 193 { 195 - # ipodvideo64mb uses the ipodvideo simulator 196 - # sansae200r uses the sansae200 simulator 197 - if ($b ne 'ipodvideo64mb' && $b ne 'sansae200r') 198 - { 199 - if ($builds{$b}{ram} ne '') 200 - { 201 - # These builds need the ram size sent to configure 202 - runone($b, $builds{$b}{ram} . '\n'); 203 - } 204 - else 205 - { 206 - runone($b); 207 - } 208 - } 194 + if ($builds{$b}{ram} ne '') 195 + { 196 + # These builds need the ram size sent to configure 197 + runone($b, $builds{$b}{ram} . '\n'); 198 + } 199 + else 200 + { 201 + runone($b); 202 + } 209 203 } 210 204 } 211 205 212 206 #The following ports are in the unusable category, but the simulator does build 213 - runone("mini2440"); 214 207 runone("ondavx747"); 215 208 runone("ondavx747p"); 216 209 runone("ondavx777"); ··· 218 211 runone("zenvision"); 219 212 runone("zenvisionm30gb"); 220 213 runone("zenvisionm60gb"); 221 - runone("creativezenxfi2"); 222 - runone("creativezenxfi3"); 223 - runone("sonynwze360"); 224 - runone("sonynwze370"); 225 - runone("creativezenxfi"); 226 - runone("creativezen"); 227 - runone("creativezenmozaic"); 228 - runone("xduoox3");