aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2013-08-14 08:37:40 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-20 08:37:04 +0200
commit824cfe84a86995e356e949542b8189b3f67fd1c0 (patch)
tree2bfd7d865d39478867b31bd79de5fd98cb25a5aa
parentdd9853b3cb6c7f8d1f015b82a06283b3942bf9bf (diff)
Cleanup of init-repository
Removes old Nokia URLs and options associated with Nokia infrastructure Change-Id: Id5a28d7ed14fe069ceff6afbe372aa69dda80475 Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com> Reviewed-by: Alex Blasche <alexander.blasche@digia.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-rwxr-xr-xinit-repository45
1 files changed, 3 insertions, 42 deletions
diff --git a/init-repository b/init-repository
index b355ffa3..45de179a 100755
--- a/init-repository
+++ b/init-repository
@@ -104,8 +104,6 @@ Skip the `git submodule update' command.
Set git config to ignore submodules by default when doing operations on the
qt5 repo, such as `pull', `fetch', `diff' etc.
-This option is default for --nokia-developer.
-
After using this option, pass `--ignore-submodules=none' to git to override
it as needed.
@@ -116,26 +114,12 @@ B<Repository options:>
=over
-=item --nokia-developer
-
-Switch to internal Nokia URLs.
-
-
=item --berlin
-Switch to internal Nokia URLs and make use of the Berlin git mirrors.
+Switch to internal URLs and make use of the Berlin git mirrors.
(Implies `--mirror').
-=item --ssh
-
-Use the SSH protocol for git operations. This may be useful if the git
-protocol is blocked by a firewall. Note that this requires a user account
-with an uploaded SSH key on all servers used. (Implies `--nokia-developer').
-
-The `--ssh' option does not affect the gerrit remotes.
-
-
=item --http
Use the HTTP protocol for git operations. This may be useful if the git
@@ -205,8 +189,6 @@ use Pod::Usage qw( pod2usage );
use Cwd qw( getcwd );
my %PROTOCOLS = (
- 'internal' => 'git://scm.dev.nokia.troll.no/' ,
- 'ssh' => 'git@scm.dev.nokia.troll.no:' ,
'http' => 'http://git.gitorious.org/' ,
);
@@ -317,7 +299,6 @@ sub parse_arguments
'force' => 0 ,
'ignore-submodules' => 0 ,
'mirror-url' => "",
- 'nokia-developer' => 0 ,
'protocol' => "",
'update' => 1 ,
'webkit' => 1 ,
@@ -331,7 +312,6 @@ sub parse_arguments
'force' => \$self->{qw{ force }},
'ignore-submodules' => \$self->{qw{ ignore-submodules }},
'mirror=s' => \$self->{qw{ mirror-url }},
- 'nokia-developer' => \$self->{qw{ nokia-developer }},
'quiet' => \$self->{qw{ quiet }},
'update!' => \$self->{qw{ update }},
'webkit!' => \$self->{qw{ webkit }},
@@ -339,26 +319,12 @@ sub parse_arguments
'help|?' => sub { pod2usage(1); },
'http' => sub { $self->{protocol} = 'http'; },
- 'ssh|ssh-protocol' => sub { $self->{protocol} = 'ssh'; },
- 'berlin|berlin-nokia-developer' => sub {
- $self->{'nokia-developer'} = 1;
- $self->{'protocol'} = 'internal';
+ 'berlin' => sub {
$self->{'mirror-url'} = $BER_MIRROR_URL_BASE;
},
-
- 'nokia-developer' => sub {
- $self->{'nokia-developer'} = 1;
- $self->{'protocol'} = 'internal';
- $self->{'ignore-submodules'} = 1;
- },
) || pod2usage(2);
- if ($self->{'nokia-developer'} && $self->{'protocol'} eq 'http') {
- print "*** Ignoring use of HTTP protocol, as it's only usable with external server\n";
- $self->{'protocol'} = '';
- }
-
# Replace any double trailing slashes from end of mirror
$self->{'mirror-url'} =~ s{//+$}{/};
@@ -457,12 +423,7 @@ sub git_set_submodule_config
my $value = $2;
if ($protocol) {
- # qt-labs projects are still hosted under qt internally.
- if ($protocol ne 'http') {
- $value =~ s,^git://gitorious\.org/qt-labs/,${url_base_for_protocol}qt/,;
- }
-
- # assume all other projects hosted under gitorious publicly.
+ # rewrite URL to chosen protocol
$value =~ s,^git://gitorious\.org/,$url_base_for_protocol,;
}