mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 13:02:57 +00:00
Pass mozilla_dir to post-mozilla build. properly pull and build galeon source.
This commit is contained in:
parent
f3b32fcf7a
commit
301d648926
@ -16,35 +16,57 @@ use strict;
|
|||||||
|
|
||||||
package PostMozilla;
|
package PostMozilla;
|
||||||
|
|
||||||
|
sub checkout {
|
||||||
|
my ($mozilla_build_dir) = @_;
|
||||||
|
|
||||||
|
# chdir to build directory
|
||||||
|
chdir "$mozilla_build_dir";
|
||||||
|
|
||||||
|
# checkout galeon source
|
||||||
|
$ENV{CVSROOT} = ":pserver:anonymous\@anoncvs.gnome.org:/cvs/gnome";
|
||||||
|
|
||||||
|
my $status = TinderUtils::run_shell_command("cvs checkout galeon");
|
||||||
|
|
||||||
|
# hack in the galeon prefs, if needed
|
||||||
|
|
||||||
|
return $status;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
sub main {
|
sub main {
|
||||||
|
my ($mozilla_build_dir) = @_;
|
||||||
|
|
||||||
TinderUtils::print_log "Post-Mozilla build goes here.\n";
|
TinderUtils::print_log "Post-Mozilla build goes here.\n";
|
||||||
|
|
||||||
my $post_status = 'success'; # Success until we report a failure.
|
my $post_status = 'success'; # Success until we report a failure.
|
||||||
my $status = 0;
|
my $status = 0;
|
||||||
my $galeon_alive_test = 1;
|
my $galeon_alive_test = 0;
|
||||||
my $galeon_test8_test = 1;
|
my $galeon_test8_test = 0;
|
||||||
my $galeon_dir = "/u/mcafee/gnome/galeon";
|
my $galeon_dir = "$mozilla_build_dir/galeon";
|
||||||
|
|
||||||
# Hack. This needs to auto-pull into the tbox build directory.
|
# Checkout/update the galeon code.
|
||||||
chdir "/u/mcafee/gnome";
|
$status = checkout($mozilla_build_dir);
|
||||||
$status = TinderUtils::run_shell_command "checkout";
|
|
||||||
if ($status != 0) {
|
if ($status != 0) {
|
||||||
$post_status = 'busted';
|
$post_status = 'busted';
|
||||||
}
|
}
|
||||||
|
|
||||||
# Build galeon if we passed the checkout command.
|
# Build galeon if we passed the checkout command.
|
||||||
if ($post_status ne 'busted') {
|
if ($post_status ne 'busted') {
|
||||||
# Build galeon.
|
# Build galeon.
|
||||||
|
|
||||||
#
|
|
||||||
# Hack. There should be a configure step in here.
|
|
||||||
# We need to point at mozilla installation, etc.
|
|
||||||
#
|
|
||||||
|
|
||||||
chdir $galeon_dir;
|
chdir $galeon_dir;
|
||||||
|
|
||||||
|
# Make sure we have a configure
|
||||||
|
unless (-e "configure") {
|
||||||
|
$status = TinderUtils::run_shell_command("./autogen.sh");
|
||||||
|
}
|
||||||
|
|
||||||
|
# Not sure how to only do this when we need to.
|
||||||
|
# Force a configure for now.
|
||||||
|
$status = TinderUtils::run_shell_command("./configure --sysconfdir=/etc --with-mozilla-libs=$mozilla_build_dir/mozilla/dist/bin --with-mozilla-includes=$mozilla_build_dir/mozilla/dist/include --with-nspr-includes=$mozilla_build_dir/mozilla/dist/include/nspr --with-mozilla-home=$mozilla_build_dir/mozilla/dist/bin");
|
||||||
|
|
||||||
TinderUtils::DeleteBinary("$galeon_dir/src/galeon-bin");
|
TinderUtils::DeleteBinary("$galeon_dir/src/galeon-bin");
|
||||||
$status = TinderUtils::run_shell_command "gmake";
|
$status = TinderUtils::run_shell_command("gmake");
|
||||||
|
|
||||||
if ($status != 0) {
|
if ($status != 0) {
|
||||||
$post_status = 'busted';
|
$post_status = 'busted';
|
||||||
|
@ -18,7 +18,7 @@ use POSIX qw(sys_wait_h strftime);
|
|||||||
use Cwd;
|
use Cwd;
|
||||||
use File::Basename; # for basename();
|
use File::Basename; # for basename();
|
||||||
use Config; # for $Config{sig_name} and $Config{sig_num}
|
use Config; # for $Config{sig_name} and $Config{sig_num}
|
||||||
$::UtilsVersion = '$Revision: 1.55 $ ';
|
$::UtilsVersion = '$Revision: 1.56 $ ';
|
||||||
|
|
||||||
package TinderUtils;
|
package TinderUtils;
|
||||||
|
|
||||||
@ -28,13 +28,6 @@ package TinderUtils;
|
|||||||
require "post-mozilla.pl" if -e "post-mozilla.pl";
|
require "post-mozilla.pl" if -e "post-mozilla.pl";
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# Driver script should call into this file like this:
|
|
||||||
# TinderUtils::Setup()
|
|
||||||
# tree_specific_overrides()
|
|
||||||
# TinderUtils::Build($args);
|
|
||||||
#
|
|
||||||
|
|
||||||
sub Setup {
|
sub Setup {
|
||||||
InitVars();
|
InitVars();
|
||||||
my $args = ParseArgs();
|
my $args = ParseArgs();
|
||||||
@ -113,8 +106,6 @@ sub ParseArgs {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return $args;
|
return $args;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -465,7 +456,7 @@ sub adjust_start_time {
|
|||||||
# to 1 minute intervals to make them nice and even.
|
# to 1 minute intervals to make them nice and even.
|
||||||
my $cycle = 1 * 60; # Updates every 1 minutes.
|
my $cycle = 1 * 60; # Updates every 1 minutes.
|
||||||
my $begin = 0 * 60; # Starts 0 minutes after the hour.
|
my $begin = 0 * 60; # Starts 0 minutes after the hour.
|
||||||
my $lag = 0 * 60; # Takes 0 minute to update.
|
my $lag = 0 * 60; # Takes 0 minute to update.
|
||||||
return int(($start_time - $begin - $lag) / $cycle) * $cycle + $begin;
|
return int(($start_time - $begin - $lag) / $cycle) * $cycle + $begin;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -616,7 +607,13 @@ sub BuildIt {
|
|||||||
|
|
||||||
# Make sure we have client.mk
|
# Make sure we have client.mk
|
||||||
unless (-e "$TreeSpecific::name/client.mk") {
|
unless (-e "$TreeSpecific::name/client.mk") {
|
||||||
run_shell_command "$Settings::CVS $cvsco $TreeSpecific::name/client.mk";
|
|
||||||
|
# Set CVSROOT here. We should only need to checkout a new
|
||||||
|
# version of client.mk once; we might have more than one
|
||||||
|
# cvs tree so set CVSROOT here to avoid confusion.
|
||||||
|
$ENV{CVSROOT} = ":pserver:$ENV{USER}%netscape.com\@cvs.mozilla.org:/cvsroot";
|
||||||
|
|
||||||
|
run_shell_command("$Settings::CVS $cvsco $TreeSpecific::name/client.mk");
|
||||||
}
|
}
|
||||||
|
|
||||||
# Create toplevel source directory.
|
# Create toplevel source directory.
|
||||||
@ -646,27 +643,13 @@ sub BuildIt {
|
|||||||
} else {
|
} else {
|
||||||
$build_status = 'success';
|
$build_status = 'success';
|
||||||
}
|
}
|
||||||
|
|
||||||
# Build the embedded app.
|
# TestGtkEmbed built by default, report if not found.
|
||||||
# Currently this is a post-build-seamonkey hack.
|
if (not BinaryExists($full_embed_binary_name)) {
|
||||||
if (($Settings::EmbedTest or $Settings::BuildEmbed) and $build_status eq 'success') {
|
print_log "Error: binary not found: $Settings::EmbedBinaryName\n";
|
||||||
print_log "$binary_basename binary exists, building $embed_binary_basename now.\n";
|
$build_status = 'busted';
|
||||||
|
} else {
|
||||||
my $tmpEmbedConfigDir = "$build_dir/$Settings::Topsrcdir/${Settings::ObjDir}/embedding/config";
|
$build_status = 'success';
|
||||||
chdir $tmpEmbedConfigDir or die "chdir $Settings::Topsrcdir: $!\n";
|
|
||||||
|
|
||||||
my $make = "$Settings::Make";
|
|
||||||
|
|
||||||
my $statusEmbed = run_shell_command "$make";
|
|
||||||
if ($statusEmbed != 0) {
|
|
||||||
$build_status = 'busted';
|
|
||||||
} elsif (not BinaryExists($full_embed_binary_name)) {
|
|
||||||
print_log "Error: binary not found: gtkEmbed\n";
|
|
||||||
$build_status = 'busted';
|
|
||||||
} else {
|
|
||||||
$build_status = 'success';
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -687,7 +670,7 @@ sub BuildIt {
|
|||||||
#
|
#
|
||||||
my $external_build = "$Settings::BaseDir/post-mozilla.pl";
|
my $external_build = "$Settings::BaseDir/post-mozilla.pl";
|
||||||
if (-e $external_build and $build_status eq 'success') {
|
if (-e $external_build and $build_status eq 'success') {
|
||||||
$build_status = PostMozilla::main();
|
$build_status = PostMozilla::main($build_dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
close LOG;
|
close LOG;
|
||||||
|
@ -12,10 +12,9 @@ use strict;
|
|||||||
# They are not initialized here. The default values are after "__END__".
|
# They are not initialized here. The default values are after "__END__".
|
||||||
$TreeSpecific::name = $TreeSpecific::checkout_target = $TreeSpecific::checkout_clobber_target = $::Version = undef;
|
$TreeSpecific::name = $TreeSpecific::checkout_target = $TreeSpecific::checkout_clobber_target = $::Version = undef;
|
||||||
|
|
||||||
$::Version = '$Revision: 1.96 $ ';
|
$::Version = '$Revision: 1.97 $ ';
|
||||||
|
|
||||||
{
|
{
|
||||||
$ENV{CVSROOT} = ":pserver:$ENV{USER}%netscape.com\@cvs.mozilla.org:/cvsroot" if !defined($ENV{CVSROOT});
|
|
||||||
TinderUtils::Setup();
|
TinderUtils::Setup();
|
||||||
tree_specific_overides();
|
tree_specific_overides();
|
||||||
TinderUtils::Build();
|
TinderUtils::Build();
|
||||||
|
@ -18,6 +18,10 @@ package PostMozilla;
|
|||||||
|
|
||||||
|
|
||||||
sub main {
|
sub main {
|
||||||
|
# Get build directory from caller.
|
||||||
|
my ($mozilla_build_dir) = @_;
|
||||||
|
|
||||||
|
|
||||||
TinderUtils::print_log "Post-Mozilla build goes here.\n";
|
TinderUtils::print_log "Post-Mozilla build goes here.\n";
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user