cross-plat-dev-utils/get_upstream.pl
author Mike Kinghan <mikek@symbian.org>
Thu, 25 Nov 2010 13:59:07 +0000
changeset 40 68f68128601f
parent 2 39c28ec933dd
permissions -rwxr-xr-x
1) Add the sbsv1 components from sftools/dev/build to make the linux_build package independent of the obsolete buildtools package. 2) Enhance romnibus.pl so that it generate the symbol file for the built rom when invoked by Raptor 3) Make the maksym.pl tool portable for Linux as well as Windows. 4) Remove the of armasm2as.pl from the e32tools component in favour of the copy now exported from sbsv1/e32util.

#!/usr/bin/perl
# Copyright (c) 2010 Symbian Foundation Ltd
# This component and the accompanying materials are made available
# under the terms of the License "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
# Initial Contributors:
# Mike Kinghan, mikek@symbian.org for Symbian Foundation Ltd - initial contribution.

# Script to clone the upstream package at the baseline revision.

use strict;
use Cwd;
use get_baseline;
use File::Spec;

if (!@ARGV or @ARGV > 1 or grep(/$ARGV[0]/,("-h","--help"))) {
    print "This script clones or updates the upstream package at the baseline revision " .
		"from http://developer.symbian.org/oss/MCL/sftools/dev/build\n";
    print "Valid arguments are -h, --help, or CLONEDIR, where CLONEDIR is the" .
		" name of the existing directory into which the upstream package will " .
		"be cloned if this does not seem to have been already done Otherwise " .
		"CLONEDIR/build will be updated.\n";
	exit 0;
}         
my $clonedir = $ARGV[0];
unless ( -d "$clonedir") {
	die "*** Error: directory \"$clonedir\" does not exist ***";
}
my $baseline_rev = get_baseline();
print ">>> Baseline revision is $baseline_rev\n"; 
my $cwd = cwd;
my $cmd;
chdir $clonedir or die $!;
print ">>> Changed to dir \"$clonedir\"\n";
my $hg_dir = File::Spec->catfile("build",".hg");
if ( -d $hg_dir) {
	print ">>> There seems to a repo of the build package in \"$clonedir\"\n";
	print ">>> Will try to update it\n";
	chdir "build" or die $!;
	print ">>> Changed to dir \"build\"\n";
	$cmd = "hg update -c -r $baseline_rev ";

}
else {
	print ">>> There is no existing repo in \"$clonedir\"\n";
	print ">>> Will clone fresh\n";
 	$cmd = "hg clone -r $baseline_rev " .
	"http://developer.symbian.org/oss/MCL/sftools/dev/build";
} 
print ">>> Executing: $cmd\n";
my $rc = system($cmd) >> 8;
chdir $cwd or die $!;
print ">>> Changed to dir \"$cwd\"\n";
exit $rc;