Skip to content

Commit 2727f4f

Browse files
committed
added subversion
1 parent c444783 commit 2727f4f

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v3.5.1 - Feb 25, 2016
2+
- Fixed PHP package dependency (Trusty)
3+
14
v3.5.1 - Feb 25, 2016
25
- Fixed #680
36

ee/core/variables.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,16 @@ class EEVariables():
164164
# Mail repo and packages
165165
ee_mail_repo = ("deb http://http.debian.net/debian-backports {codename}"
166166
"-backports main".format(codename=ee_platform_codename))
167-
168-
ee_mail = ["dovecot-core", "dovecot-imapd", "dovecot-pop3d",
169-
"dovecot-lmtpd", "dovecot-mysql", "dovecot-sieve",
170-
"dovecot-managesieved", "postfix-mysql", "php5-cgi",
171-
"php-gettext", "php-pear"]
167+
if ee_platform_codename != 'trusty':
168+
ee_mail = ["dovecot-core", "dovecot-imapd", "dovecot-pop3d",
169+
"dovecot-lmtpd", "dovecot-mysql", "dovecot-sieve",
170+
"dovecot-managesieved", "postfix-mysql", "php5-cgi",
171+
"php-gettext", "php-pear", "subversion"]
172+
else:
173+
ee_mail = ["dovecot-core", "dovecot-imapd", "dovecot-pop3d",
174+
"dovecot-lmtpd", "dovecot-mysql", "dovecot-sieve",
175+
"dovecot-managesieved", "postfix-mysql", "php5.6-cgi",
176+
"php-gettext", "php-pear"]
172177

173178
# Mailscanner repo and packages
174179
ee_mailscanner_repo = ()

0 commit comments

Comments
 (0)