diff options
author | Sean Whitton <spwhitton@spwhitton.name> | 2016-07-07 10:34:56 +0900 |
---|---|---|
committer | Sean Whitton <spwhitton@spwhitton.name> | 2016-07-07 10:34:56 +0900 |
commit | c2e49fb819957f05faadb3ae0096bbf0ce52b105 (patch) | |
tree | faa6d9ce68565d16bb65bc24f4788ce1bde58052 | |
parent | 1ef0e45246ba9e24b76597f1023ee16b877eb0d1 (diff) |
dh_xul-ext: extend Guido's fix for ubuntu's epoch
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | dh_xul-ext | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 0136ed7..b369eb9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,8 @@ mozilla-devscripts (0.46) UNRELEASED; urgency=medium - * Fix generating Breaks: entries in light of icedove's new 1: epoch in Debian. + * Fix generating versions in light of Icedove's new 1: epoch in Debian. Thanks to Guido Günther for the patch (Closes: #825508). + * Extend Guido's fix to handle Ubuntu's existing 1: epoch for Thunderbird. -- Sean Whitton <spwhitton@spwhitton.name> Thu, 07 Jul 2016 10:04:52 +0900 @@ -57,6 +57,10 @@ class XulApp(object): and self.xul_id == THUNDERBIRD_ID and compare_versions(version, "45") >= 0): return 1 + elif (get_vendor() == 'Ubuntu' + and self.xul_id == THUNDERBIRD_ID + and compare_versions(version, "24") >= 0): + return 1 else: return 0 |