Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Becker2014-10-03 19:32:21 +0000
committerFrank Becker2014-10-15 05:35:51 +0000
commita7b0f35a050a58da3edb88fca013f9b2bd8cdeb1 (patch)
treeda77a93ff185e6a82b88b22d1a22aa033bfa0e6c
parent71483ae4917a2d0d4f768fcd70a5d34fb2f22a93 (diff)
downloadorg.eclipse.mylyn.tasks-a7b0f35a050a58da3edb88fca013f9b2bd8cdeb1.tar.gz
org.eclipse.mylyn.tasks-a7b0f35a050a58da3edb88fca013f9b2bd8cdeb1.tar.xz
org.eclipse.mylyn.tasks-a7b0f35a050a58da3edb88fca013f9b2bd8cdeb1.zip
445901: add Email::Sender to installed modules for versions > 4.5.5
Change-Id: Ia0117e65eb65bba57c4cd47dbcb760afd374015a Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=445901
-rw-r--r--org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/manifests/defaultsites.pp2
-rw-r--r--org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb7
2 files changed, 4 insertions, 5 deletions
diff --git a/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/manifests/defaultsites.pp b/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/manifests/defaultsites.pp
index 15af870cd..b8af3c113 100644
--- a/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/manifests/defaultsites.pp
+++ b/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/manifests/defaultsites.pp
@@ -51,7 +51,7 @@ define bugzilla::defaultsites($base = $bugzilla::bugzillaBase, $userOwner = $bug
xmlrpc_enabled => false,
}
- bugzilla::site { "bugzilla-4.0.13":
+ bugzilla::site { "bugzilla-4.0.14":
major => "4",
minor => "0",
}
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 45c7e992d..367087163 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
@@ -8,16 +8,15 @@
<% if @envversion > "4.2" %>
/usr/bin/perl install-module.pl List::MoreUtils
<% end %>
-<% if @envversion > "4.5.2" %>
-/usr/bin/perl install-module.pl URI
-<% end %>
<% end %>
<% if @operatingsystemrelease = "12.04" && @envversion > "4.4" %>
/usr/bin/perl install-module.pl Template
<% end %>
-<% if @envversion > "4.5.4" %>
+<% if @envversion > "4.5" %>
+/usr/bin/perl install-module.pl URI
/usr/bin/perl install-module.pl DateTime
/usr/bin/perl install-module.pl DateTime::TimeZone
/usr/bin/perl install-module.pl File::Slurp
+/usr/bin/perl install-module.pl Email::Sender
<% end %>
echo "Ende1" \ No newline at end of file

Back to the top