Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Becker2015-07-15 19:26:56 +0000
committerFrank Becker2015-07-15 19:26:56 +0000
commit8da0ab938a64501eac38b51e4bf552c4de2f7c5f (patch)
tree316261623e0214d14a2590c332ab0ed00665cab8 /org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb
parent0c55f4494181d3fa1d32d1e9473188dd6554f8c7 (diff)
downloadorg.eclipse.mylyn.tasks-8da0ab938a64501eac38b51e4bf552c4de2f7c5f.tar.gz
org.eclipse.mylyn.tasks-8da0ab938a64501eac38b51e4bf552c4de2f7c5f.tar.xz
org.eclipse.mylyn.tasks-8da0ab938a64501eac38b51e4bf552c4de2f7c5f.zip
472116: update Bugzilla repository to 5.0 final
Change-Id: I17b05a5bad3fbb035d8f817145ce56be5e6ff2e8 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=472116
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb')
-rw-r--r--org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb5
1 files changed, 4 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb b/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb
index 5961c051a..3b5a83021 100644
--- a/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb
+++ b/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb
@@ -1,4 +1,7 @@
#!/bin/bash
+<% if @envversion < "5.0" %>
+grep -v /mirror.hiwaay.net Bugzilla/Install/CPAN.pm >Bugzilla/Install/CPAN.tmp; mv -f Bugzilla/Install/CPAN.tmp Bugzilla/Install/CPAN.pm
+<% end %>
echo "start: $(date +'%d/%m/%Y %H:%M:%S:%3N')"
/usr/bin/perl install-module.pl Text::Wrap
<% if @envversion > "4.5" %>
@@ -10,7 +13,7 @@ echo "start3: $(date +'%d/%m/%Y %H:%M:%S:%3N')"
/usr/bin/perl install-module.pl Moo
echo "ende3: $(date +'%d/%m/%Y %H:%M:%S:%3N')"
<% end %>
-<% if @envversion < "4.1" %>
+<% if @envversion < "5.0" %>
echo "start4: $(date +'%d/%m/%Y %H:%M:%S:%3N')"
/usr/bin/perl install-module.pl DBI
echo "ende4: $(date +'%d/%m/%Y %H:%M:%S:%3N')"

Back to the top