# HG changeset patch # User andy simpson # Date 1282046112 -3600 # Node ID 84ea622a5ffb34fa00de59db7b055e6a970b0578 # Parent 9a976c4078e916a0210b185575b53c6fffc5b97a# Parent fc57c91198231433f0cec09b99ff15af11c91fc3 merge fix for Helium 9 diff -r fc57c9119823 -r 84ea622a5ffb common/build.postbuild.xml --- a/common/build.postbuild.xml Mon Aug 09 12:38:30 2010 +0100 +++ b/common/build.postbuild.xml Tue Aug 17 12:55:12 2010 +0100 @@ -76,6 +76,13 @@ + + + + + + + diff -r fc57c9119823 -r 84ea622a5ffb common/build.xml --- a/common/build.xml Mon Aug 09 12:38:30 2010 +0100 +++ b/common/build.xml Tue Aug 17 12:55:12 2010 +0100 @@ -472,24 +472,28 @@ - - + - - + + + + + + + + + + + + + + + + + - - - - - - - - - - @@ -531,29 +535,23 @@ - - - - + + - - + + + ant: antProperties() + data: [ + csv(${sf.source.csv.file}, {separator:','}) + ] + + - - - - - ant: antProperties() - data: [ - csv(${sf.source.csv.file}, {separator:','}) - ] - - - - + + @@ -566,8 +564,10 @@ + + - + @@ -710,21 +710,21 @@ - - - - - - - - - - - - - + + + + + + + - + + + + + + + @@ -818,7 +818,7 @@ - + diff -r fc57c9119823 -r 84ea622a5ffb common/common_props.ant.xml --- a/common/common_props.ant.xml Mon Aug 09 12:38:30 2010 +0100 +++ b/common/common_props.ant.xml Tue Aug 17 12:55:12 2010 +0100 @@ -132,6 +132,9 @@ + + + diff -r fc57c9119823 -r 84ea622a5ffb common/templates/source-spec.ant.xml.ftl --- a/common/templates/source-spec.ant.xml.ftl Mon Aug 09 12:38:30 2010 +0100 +++ b/common/templates/source-spec.ant.xml.ftl Tue Aug 17 12:55:12 2010 +0100 @@ -17,19 +17,19 @@ <#list data as csv_file> <#list csv_file as pkg_detail> - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -45,7 +45,7 @@ - + @@ -58,6 +58,7 @@ + @@ -104,7 +105,7 @@ - + @@ -113,11 +114,13 @@ + + @@ -129,7 +132,7 @@ - + @@ -138,11 +141,13 @@ + + @@ -152,25 +157,24 @@ + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - diff -r fc57c9119823 -r 84ea622a5ffb common/tools/ats/hlm_prep_package.pl --- a/common/tools/ats/hlm_prep_package.pl Mon Aug 09 12:38:30 2010 +0100 +++ b/common/tools/ats/hlm_prep_package.pl Tue Aug 17 12:55:12 2010 +0100 @@ -14,85 +14,142 @@ # This is a script for fixing pkg and ini files. use strict; +use Getopt::Long; use File::Copy; use Tie::File; use File::Find; +my $package_path; +my @pkg_paths; # Array needed as csv file may contain more than one. +my $pkg_path_num = 1; # By default at least one needs to be provided. +my $csv_file; +my $bld_drive; +my $line; +my $help; +my $repo; +my $destination; my @files; my @ini_files; my @lines; my $file; my $n; +my $current_iteration; my $file_fixed; sub Wanted; sub Parse_ini; -my $package_path; -if ($ARGV[0]) { - $package_path = $ARGV[0]; - } -else { die "Missing parameter \"package path\". For example: D:\\sf\\app\\musicplayer"; } +sub usage($); +sub help(); +sub usage_error(); -find(\&Wanted, $package_path); +my %optmap = ( 'package-path' => \$package_path, + 'csv-file' => \$csv_file, + 'bld-drive' => \$bld_drive, + 'help' => \$help); -#Copy a pkg file and replace \armv5\urel with $(platform)\$(target) -foreach $file (@files) { #Replace "//v800020/Publish" with "http://cdn.symbian,org" - copy($file,$file . ".orig") or die ("Cannot copy file \"$file\". $!\n"); - tie (@lines, 'Tie::File', $file, recsep => "\n") or die ("Cannot tie file \"$file\". $!\n"); - $n = 0; - $file_fixed = 0; - print @lines[49] . "\n"; - foreach (@lines) { - if (lc(@lines[$n]) =~ m/epoc32\\release\\armv5\\urel\\/) { - @lines[$n] = lc(@lines[$n]); - @lines[$n] =~ s/\\armv5\\urel\\/\\\$(platform)\\\$(target)\\/; - $file_fixed = 1; - } - if (lc(@lines[$n]) =~ m/epoc32\/release\/armv5\/urel\//) { - @lines[$n] = lc(@lines[$n]); - @lines[$n] =~ s/\/armv5\/urel\//\/\$(platform)\/\$(target)\//; - $file_fixed = 1; - } - if (lc(@lines[$n]) =~ m/epoc32\\release\\armv5\\udeb\\/) { - @lines[$n] = lc(@lines[$n]); - @lines[$n] =~ s/\\armv5\\udeb\\/\\\$(platform)\\\$(target)\\/; - $file_fixed = 1; - } -# if (lc(@lines[$n]) =~ m/e:\\/) { # Replace e: with c: -# @lines[$n] = lc(@lines[$n]); -# @lines[$n] =~ s/e:\\/c:\\/; -# $file_fixed = 1; -# } - $n++; - } - if ($file_fixed) { print $file . " fixed.\n"; } - untie @lines; +GetOptions(\%optmap, + 'package-path=s', + 'csv-file=s', + 'bld-drive=s', + 'help!') + or usage_error(); + +if ($help) { + help(); } -find(\&Parse_ini, $package_path); +usage_error(), unless ((defined($package_path)) || ((defined($csv_file)) && (defined($bld_drive)))); -foreach $file (@ini_files) { - if ((lc($file) =~ m/\/init\//) || (lc($file) =~ m/\/group\//)) { # Only operate on files from /init/ directories +if (defined($csv_file)) { + $pkg_path_num = 0; + open FILE, "<$csv_file" or die("Failed to read $csv_file: $!\n"); + while ($line = ) + { + chomp $line; + ($repo,$destination) = split /,/,$line; + if ((lc($destination) ne "dst") && (lc($destination) ne "")) { +# $package_path = $bld_drive . $destination; + push @pkg_paths, $bld_drive . $destination; + $pkg_path_num++; +# last; + } + + } + close FILE; +} + +$current_iteration = 0; +while ($current_iteration < $pkg_path_num) { + if (defined($csv_file)) { + $package_path = @pkg_paths[$current_iteration]; + } + print "Processing: $package_path \n"; + + find(\&Wanted, $package_path); + + #Copy a pkg file and replace \armv5\urel with $(platform)\$(target) + foreach $file (@files) { #Replace "//v800020/Publish" with "http://cdn.symbian,org" copy($file,$file . ".orig") or die ("Cannot copy file \"$file\". $!\n"); tie (@lines, 'Tie::File', $file, recsep => "\n") or die ("Cannot tie file \"$file\". $!\n"); $n = 0; $file_fixed = 0; foreach (@lines) { - if (lc(@lines[$n]) =~ m/^separateprocesses/) { - @lines[$n] = '#' . @lines[$n]; + if (lc(@lines[$n]) =~ m/epoc32\\release\\armv5\\urel\\/) { + @lines[$n] = lc(@lines[$n]); + @lines[$n] =~ s/\\armv5\\urel\\/\\\$(platform)\\\$(target)\\/; + $file_fixed = 1; + } + if (lc(@lines[$n]) =~ m/epoc32\/release\/armv5\/urel\//) { + @lines[$n] = lc(@lines[$n]); + @lines[$n] =~ s/\/armv5\/urel\//\/\$(platform)\/\$(target)\//; $file_fixed = 1; } - if (lc(@lines[$n]) =~ m/^uitestingsupport/) { - @lines[$n] = '#' . @lines[$n]; + if (lc(@lines[$n]) =~ m/epoc32\\release\\armv5\\udeb\\/) { + @lines[$n] = lc(@lines[$n]); + @lines[$n] =~ s/\\armv5\\udeb\\/\\\$(platform)\\\$(target)\\/; $file_fixed = 1; } +# if (lc(@lines[$n]) =~ m/e:\\/) { # Replace e: with c: +# @lines[$n] = lc(@lines[$n]); +# @lines[$n] =~ s/e:\\/c:\\/; +# $file_fixed = 1; +# } $n++; } if ($file_fixed) { print $file . " fixed.\n"; } untie @lines; } + + find(\&Parse_ini, $package_path); + + foreach $file (@ini_files) { + if ((lc($file) =~ m/\/init\//) || (lc($file) =~ m/\/group\//)) { # Only operate on files from /init/ directories + copy($file,$file . ".orig") or die ("Cannot copy file \"$file\". $!\n"); + tie (@lines, 'Tie::File', $file, recsep => "\n") or die ("Cannot tie file \"$file\". $!\n"); + $n = 0; + $file_fixed = 0; + foreach (@lines) { + if (lc(@lines[$n]) =~ m/^separateprocesses/) { + @lines[$n] = '#' . @lines[$n]; + $file_fixed = 1; + } + if (lc(@lines[$n]) =~ m/^uitestingsupport/) { + @lines[$n] = '#' . @lines[$n]; + $file_fixed = 1; + } + $n++; + } + if ($file_fixed) { print $file . " fixed.\n"; } + untie @lines; + } + } + + $current_iteration++; } +print "OK\n"; +exit 0; + sub Wanted { # only operate on .pkg files /.pkg$/ or return; @@ -103,4 +160,31 @@ # only operate on .ini files /\.ini$/ or return; push (@ini_files, $File::Find::name); -} \ No newline at end of file +} + +sub usage($) +{ + my $error = shift; + my $fh = $error == 0 ? *STDOUT : *STDERR; + print $fh "hlm_prep_package.pl\n" . + "Specify package path or csv file\n" . + "synopsis:\n" . + " hlm_prep_package.pl --help\n" . + " hlm_prep_package.pl [--package-path=DIR] [--csv-file=FILE] [--bld-drive=DRIVE] \n" . + "options:\n" . + " --help Display this help and exit.\n" . + " --package-path=DIR DIR is the package location, e.g. H:\\sf\\app\\musicplayer.\n" . + " --csv-file=FILE FILE is the full path to the csv file.\n" . + " --bld-drive=DRIVE DRIVE is the subst'd drive on which the build is stored.\n"; + exit $error; +} + +sub help() +{ + usage(0); +} + +sub usage_error() +{ + usage(1); +} diff -r fc57c9119823 -r 84ea622a5ffb sf-package/build.xml --- a/sf-package/build.xml Mon Aug 09 12:38:30 2010 +0100 +++ b/sf-package/build.xml Tue Aug 17 12:55:12 2010 +0100 @@ -72,14 +72,43 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -127,6 +156,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r fc57c9119823 -r 84ea622a5ffb sf-package/package_props.ant.xml --- a/sf-package/package_props.ant.xml Mon Aug 09 12:38:30 2010 +0100 +++ b/sf-package/package_props.ant.xml Tue Aug 17 12:55:12 2010 +0100 @@ -34,5 +34,17 @@ + + + + + + + + + + + + diff -r fc57c9119823 -r 84ea622a5ffb sf-platform/build.xml --- a/sf-platform/build.xml Mon Aug 09 12:38:30 2010 +0100 +++ b/sf-platform/build.xml Tue Aug 17 12:55:12 2010 +0100 @@ -66,7 +66,7 @@ - +