clone_all_packages.pl
changeset 7 2184cc44590a
parent 5 c34a018f3291
child 10 ccca32510405
equal deleted inserted replaced
6:705136d2022f 7:2184cc44590a
    15 # Perl script to clone or update all of the Foundation MCL repositories
    15 # Perl script to clone or update all of the Foundation MCL repositories
    16 
    16 
    17 use strict;
    17 use strict;
    18 
    18 
    19 my @clone_options = (); # use ("--noupdate") to clone without extracting the source
    19 my @clone_options = (); # use ("--noupdate") to clone without extracting the source
    20 my $hostname = "prod.foundationhost.org";
    20 my $hostname = "developer.symbian.org";
    21 
    21 
    22 # Important: This script uses http access to the repositories, so
    22 # Important: This script uses http access to the repositories, so
    23 # the username and password will be stored as cleartext in the
    23 # the username and password will be stored as cleartext in the
    24 # .hg/hgrc file in each repository.
    24 # .hg/hgrc file in each repository.
    25 
    25 
   210       }
   210       }
   211     }
   211     }
   212   
   212   
   213   $path .= "/$destdir";   # this is where the repository will go
   213   $path .= "/$destdir";   # this is where the repository will go
   214 
   214 
   215   my $repo_url = "http://$username:$password\@$hostname/$package/";
   215   my $repo_url = "https://$username:$password\@$hostname/$package/";
   216   if ($license ne "sfl")
   216   if ($license ne "sfl")
   217     {
   217     {
   218     # user registration is not required for reading public package repositories
   218     # user registration is not required for reading public package repositories
   219     $repo_url = "http://developer.symbian.org/$package/";
   219     $repo_url = "http://developer.symbian.org/$package/";
   220     }
   220     }