Your message dated Fri, 10 Mar 2017 03:06:42 +0000 with message-id <[email protected]> and subject line Bug#857032: fixed in icedove 1:45.8.0-1 has caused the Debian Bug report #857032, regarding thunderbird: tries to migrate nonexistent ~/.icedove due to unintended meaning of "\ #" syntax to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 857032: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857032 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: thunderbird Version: 1:45.7.1-2 Severity: grave Justification: renders package unusable (for new installations) Steps to reproduce: * Use a new account that has never run thunderbird or icedove * Start thunderbird Expected result: * Account creation wizard or something (I can't actually remember what the new user UX is) Actual result: """ An existing profile folder (or symlink) '.thunderbird' was found ... """ However, my test user definitely does not have ~/.thunderbird or ~/.icedove, and has never run either program before today (I used a fresh VM to verify). Looking at the /usr/bin/thunderbird script, this issue seems to be caused by trying to combine comments with backslash line continuations. I'm honestly not sure what that parses as, but I'm sure it is not what you intended. In this conditional: elif { [ -d "${ID_PROFILE_FOLDER}" ] || [ -L "${ID_PROFILE_FOLDER}" ]; } && \ # .icedove exists as folder or symlink { [ -d "${TB_PROFILE_FOLDER}" ] || [ -L "${TB_PROFILE_FOLDER}" ]; } && \ # .thunderbird exists as folder or symlink [ "$(readlink -e "${TB_PROFILE_FOLDER}")" != "${ID_PROFILE_FOLDER}" ]; then # compare if canonical name of both folders equal the overall expression somehow evaluates to true for my test account, because the last [ ] expression evaluates to true. Here is a simplified form of the same thing: if { echo "eval 1"; false; } && \ # { echo "eval 2"; false; } && \ # [ "$(readlink -e "${TB_PROFILE_FOLDER}")" != "${ID_PROFILE_FOLDER}" ]; then # echo "wtf" fi which outputs "eval 1", "eval 2", "wtf", indicating that the first two { } blocks were evaluated but the overall expression did not short-circuit, and the last expression was used for the "if". I think this *might* be parsing as the equivalent of this (redundant semicolons inserted for clarity): if { { echo "eval 1"; false; } && " "; { echo "eval 2"; false; } && " "; [ "$(readlink -e ...)" != "..." ]; } then echo "wtf" fi in which the whole {} block evaluates to the result of its last statement. The backslash turns the following space into an unusual command name containing only a space, then the comment eats everything until the end of the line; and you don't see an error for the nonexistent executable " " because the false statement before it causes the && operator to short-circuit. Shell scripts are less a programming language, and more a historical accident. They are a terrible implementation language for anything complicated or affecting data-integrity, particularly if you do not know every last corner of the language - a bit like the bad reputation PHP has built up, they make it easy to construct a script that mostly works most of the time, but extremely difficult to construct a script that works correctly in every case. There are several things you could do to mitigate this: * Have an expert on the pitfalls of shell scripts review your scripts before releasing them to unstable - it's somewhat too late for this now, since these scripts are already in unstable * Write as conservatively as possible, avoiding anything that might be considered weird or subtle (and trying to combine backslash escapes with comment-until-end-of-line is definitely that) * Use a structured programming language instead, perhaps Python 3 (the subprocess module is excellent) or Perl (IPC::Run is a bit weird but works) - either is relatively small when compared with the Gecko engine * Have a test plan enumerating the supported scenarios (as a starting point: new user, user with ~/.icedove, user with ~/.thunderbird, error case with both ~/.icedove and ~/.thunderbird), and test all supported scenarios for each change to the scripts Policy ยง10.4 contains some excellent advice on shell scripts https://www.debian.org/doc/debian-policy/ch-files.html#s-scripts including: "Shell scripts (sh and bash) other than init.d scripts should almost certainly start with set -e so that errors are detected ... Every script should use set -e or check the exit status of *every* command." My personal rule of thumb is that if the entire content of a shell script doesn't all fit on your screen (and in your short-term memory!) at the same time, or if it uses ". /some/library/code", then it is probably too long to be a shell script and should probably be rewritten in a programming language. I like Python 3 with the subprocess module as an implementation of that programming language. S
--- End Message ---
--- Begin Message ---Source: icedove Source-Version: 1:45.8.0-1 We believe that the bug you reported is fixed in the latest version of icedove, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [email protected], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Christoph Goehre <[email protected]> (supplier of updated icedove package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.8 Date: Thu, 09 Mar 2017 20:24:49 -0500 Source: icedove Binary: thunderbird icedove thunderbird-dev icedove-dev thunderbird-dbg icedove-dbg lightning iceowl-extension calendar-google-provider thunderbird-l10n-all thunderbird-l10n-ar thunderbird-l10n-ast thunderbird-l10n-be thunderbird-l10n-bg thunderbird-l10n-bn-bd thunderbird-l10n-br thunderbird-l10n-ca thunderbird-l10n-cs thunderbird-l10n-da thunderbird-l10n-de thunderbird-l10n-el thunderbird-l10n-en-gb thunderbird-l10n-es-ar thunderbird-l10n-es-es thunderbird-l10n-et thunderbird-l10n-eu thunderbird-l10n-fi thunderbird-l10n-fr thunderbird-l10n-fy-nl thunderbird-l10n-ga-ie thunderbird-l10n-gd thunderbird-l10n-gl thunderbird-l10n-he thunderbird-l10n-hr thunderbird-l10n-hu thunderbird-l10n-hy-am thunderbird-l10n-id thunderbird-l10n-is thunderbird-l10n-it thunderbird-l10n-ja thunderbird-l10n-ko thunderbird-l10n-lt thunderbird-l10n-nb-no thunderbird-l10n-nl thunderbird-l10n-nn-no thunderbird-l10n-pa-in thunderbird-l10n-pl thunderbird-l10n-pt-br thunderbird-l10n-pt-pt thunderbird-l10n-rm thunderbird-l10n-ro thunderbird-l10n-ru thunderbird-l10n-si thunderbird-l10n-sk thunderbird-l10n-sl thunderbird-l10n-sq thunderbird-l10n-sr thunderbird-l10n-sv-se thunderbird-l10n-ta-lk thunderbird-l10n-tr thunderbird-l10n-uk thunderbird-l10n-vi thunderbird-l10n-zh-cn thunderbird-l10n-zh-tw icedove-l10n-all icedove-l10n-ar icedove-l10n-ast icedove-l10n-be icedove-l10n-bg icedove-l10n-bn-bd icedove-l10n-br icedove-l10n-ca icedove-l10n-cs icedove-l10n-da icedove-l10n-de icedove-l10n-el icedove-l10n-en-gb icedove-l10n-es-ar icedove-l10n-es-es icedove-l10n-et icedove-l10n-eu icedove-l10n-fi icedove-l10n-fr icedove-l10n-fy-nl icedove-l10n-ga-ie icedove-l10n-gd icedove-l10n-gl icedove-l10n-he icedove-l10n-hr icedove-l10n-hu icedove-l10n-hy-am icedove-l10n-id icedove-l10n-is icedove-l10n-it icedove-l10n-ja icedove-l10n-ko icedove-l10n-lt icedove-l10n-nb-no icedove-l10n-nl icedove-l10n-nn-no icedove-l10n-pa-in icedove-l10n-pl icedove-l10n-pt-br icedove-l10n-pt-pt icedove-l10n-rm icedove-l10n-ro icedove-l10n-ru icedove-l10n-si icedove-l10n-sk icedove-l10n-sl icedove-l10n-sq icedove-l10n-sr icedove-l10n-sv-se icedove-l10n-ta-lk icedove-l10n-tr icedove-l10n-uk icedove-l10n-vi icedove-l10n-zh-cn icedove-l10n-zh-tw lightning-l10n-ar lightning-l10n-be lightning-l10n-bg lightning-l10n-bn-bd lightning-l10n-br lightning-l10n-ca lightning-l10n-cs lightning-l10n-cy lightning-l10n-da lightning-l10n-de lightning-l10n-el lightning-l10n-es-ar lightning-l10n-es-es lightning-l10n-en-gb lightning-l10n-et lightning-l10n-eu lightning-l10n-fi lightning-l10n-fr lightning-l10n-fy-nl lightning-l10n-ga-ie lightning-l10n-gd lightning-l10n-gl lightning-l10n-he lightning-l10n-hr lightning-l10n-hu lightning-l10n-hy-am lightning-l10n-id lightning-l10n-is lightning-l10n-it lightning-l10n-ja lightning-l10n-ko lightning-l10n-lt lightning-l10n-nb-no lightning-l10n-nl lightning-l10n-nn-no lightning-l10n-pa-in lightning-l10n-pl lightning-l10n-pt-br lightning-l10n-pt-pt lightning-l10n-rm lightning-l10n-ro lightning-l10n-ru lightning-l10n-si lightning-l10n-sk lightning-l10n-sl lightning-l10n-sr lightning-l10n-sq lightning-l10n-sv-se lightning-l10n-ta-lk lightning-l10n-tr lightning-l10n-uk lightning-l10n-vi lightning-l10n-zh-cn lightning-l10n-zh-tw iceowl-l10n-ar iceowl-l10n-be iceowl-l10n-bg iceowl-l10n-bn-bd iceowl-l10n-br iceowl-l10n-ca iceowl-l10n-cs iceowl-l10n-cy iceowl-l10n-da iceowl-l10n-de iceowl-l10n-el iceowl-l10n-es-ar iceowl-l10n-es-es iceowl-l10n-en-gb iceowl-l10n-et iceowl-l10n-eu iceowl-l10n-fi iceowl-l10n-fr iceowl-l10n-fy-nl iceowl-l10n-ga-ie iceowl-l10n-gd iceowl-l10n-gl iceowl-l10n-he iceowl-l10n-hr iceowl-l10n-hu iceowl-l10n-hy-am iceowl-l10n-id iceowl-l10n-is iceowl-l10n-it iceowl-l10n-ja iceowl-l10n-ko iceowl-l10n-lt iceowl-l10n-nb-no iceowl-l10n-nl iceowl-l10n-nn-no iceowl-l10n-pa-in iceowl-l10n-pl iceowl-l10n-pt-br iceowl-l10n-pt-pt iceowl-l10n-rm iceowl-l10n-ro iceowl-l10n-ru iceowl-l10n-si iceowl-l10n-sk iceowl-l10n-sl iceowl-l10n-sr iceowl-l10n-sq iceowl-l10n-sv-se iceowl-l10n-ta-lk iceowl-l10n-tr iceowl-l10n-uk iceowl-l10n-vi iceowl-l10n-zh-cn iceowl-l10n-zh-tw Architecture: source Version: 1:45.8.0-1 Distribution: unstable Urgency: medium Maintainer: Christoph Goehre <[email protected]> Changed-By: Christoph Goehre <[email protected]> Description: calendar-google-provider - Google Calendar support for lightning icedove - mail/news client with RSS and integrated spam filter support icedove-dbg - Debug Symbols for Icedove icedove-dev - Development files for Icedove icedove-l10n-all - All language packages for Icedove (meta) - Transitional package icedove-l10n-ar - Arabic language package for Icedove - Transitional package icedove-l10n-ast - Asturian language package for Icedove - Transitional package icedove-l10n-be - Belarusian language package for Icedove - Transitional package icedove-l10n-bg - Bulgarian language package for Icedove - Transitional package icedove-l10n-bn-bd - Bengali language package for Icedove - Transitional package icedove-l10n-br - Breton language package for Icedove - Transitional package icedove-l10n-ca - Catalan/Valencian language package for Icedove - Transitional pac icedove-l10n-cs - Czech language package for Icedove - Transitional package icedove-l10n-da - Danish language package for Icedove - Transitional package icedove-l10n-de - German language package for Icedove - Transitional package icedove-l10n-el - Greek language package for Icedove - Transitional package icedove-l10n-en-gb - English (Great Britain) language package for Icedove - Transition icedove-l10n-es-ar - Spanish (Argentina) language package for Icedove - Transitional p icedove-l10n-es-es - Spanish (Spain) language package for Icedove - Transitional packa icedove-l10n-et - Estonian language package for Icedove - Transitional package icedove-l10n-eu - Basque language package for Icedove - Transitional package icedove-l10n-fi - Finnish language package for Icedove - Transitional package icedove-l10n-fr - French language package for Icedove - Transitional package icedove-l10n-fy-nl - Frisian language package for Icedove - Transitional package icedove-l10n-ga-ie - Irish (Ireland) language package for Icedove - Transitional packa icedove-l10n-gd - Gaelic (Scottish) language package for Icedove - Transitional pac icedove-l10n-gl - Galician language package for Icedove - Transitional package icedove-l10n-he - Hebrew language package for Icedove - Transitional package icedove-l10n-hr - Croatian language package for Icedove - Transitional package icedove-l10n-hu - Hungarian language package for Icedove - Transitional package icedove-l10n-hy-am - Armenian language package for Icedove - Transitional package icedove-l10n-id - Indonesian language package for Icedove - Transitional package icedove-l10n-is - Icelandic language package for Icedove - Transitional package icedove-l10n-it - Italian language package for Icedove - Transitional package icedove-l10n-ja - Japanese language package for Icedove - Transitional package icedove-l10n-ko - Korean language package for Icedove - Transitional package icedove-l10n-lt - Lithuanian language package for Icedove - Transitional package icedove-l10n-nb-no - Bokmaal (Norway) language package for Icedove - Transitional pack icedove-l10n-nl - Dutch language package for Icedove - Transitional package icedove-l10n-nn-no - Nynorsk (Norway) language package for Icedove - Transitional pack icedove-l10n-pa-in - Punjabi (India) language package for Icedove - Transitional packa icedove-l10n-pl - Polish language package for Icedove - Transitional package icedove-l10n-pt-br - Portuguese (Brazil) language package for Icedove - Transitional p icedove-l10n-pt-pt - Portuguese (Portugal) language package for Icedove - Transitional icedove-l10n-rm - Romansh language package for Icedove - Transitional package icedove-l10n-ro - Romania language package for Icedove - Transitional package icedove-l10n-ru - Russian language package for Icedove - Transitional package icedove-l10n-si - Sinhala language package for Icedove - Transitional package icedove-l10n-sk - Slovak language package for Icedove - Transitional package icedove-l10n-sl - Slovenian language package for Icedove - Transitional package icedove-l10n-sq - Albanian language package for Icedove - Transitional package icedove-l10n-sr - Serbian language package for Icedove - Transitional package icedove-l10n-sv-se - Swedish (Sweden) language package for Icedove - Transitional pack icedove-l10n-ta-lk - Tamil language package for Icedove - Transitional package icedove-l10n-tr - Turkish language package for Icedove - Transitional package icedove-l10n-uk - Ukrainian language package for Icedove - Transitional package icedove-l10n-vi - Vietnamese language package for Icedove - Transitional package icedove-l10n-zh-cn - Chinese (China) language package for Icedove - Transitional packa icedove-l10n-zh-tw - Chinese (Taiwan) language package for Icedove - Transitional pack iceowl-extension - Calendar Extension for Thunderbird/Icedove iceowl-l10n-ar - Arabic language package for iceowl-extension - Transitional packa iceowl-l10n-be - Belarusian language package for iceowl-extension - Transitional p iceowl-l10n-bg - Bulgarian language package for iceowl-extension - Transitional pa iceowl-l10n-bn-bd - Bengali language package for iceowl-extension - Transitional pack iceowl-l10n-br - Breton language package for iceowl-extension - Transitional packa iceowl-l10n-ca - Catalan/Valencian language package for iceowl-extension - Transit iceowl-l10n-cs - Czech language package for iceowl-extension - Transitional packag iceowl-l10n-cy - Welsh language package for iceowl-extension - Transitional packag iceowl-l10n-da - Danish language package for iceowl-extension - Transitional packa iceowl-l10n-de - German language package for iceowl-extension - Transitional packa iceowl-l10n-el - Greek language package for iceowl-extension - Transitional packag iceowl-l10n-en-gb - British English language package for iceowl-extension - Transitio iceowl-l10n-es-ar - Spanish language package for iceowl-extension - Transitional pack iceowl-l10n-es-es - Spanish (Spain) language package for iceowl-extension - Transitio iceowl-l10n-et - Estonian language package for iceowl-extension - Transitional pac iceowl-l10n-eu - Basque language package for iceowl-extension - Transitional packa iceowl-l10n-fi - Finnish language package for iceowl-extension - Transitional pack iceowl-l10n-fr - French language package for iceowl-extension - Transitional packa iceowl-l10n-fy-nl - Western Frisian language package for iceowl-extension - Transitio iceowl-l10n-ga-ie - Irish (Ireland) language package for iceowl-extension - Transitio iceowl-l10n-gd - Scottish Gaelic language package for iceowl-extension - Transitio iceowl-l10n-gl - Galician language package for iceowl-extension - Transitional pac iceowl-l10n-he - Hebrew language package for iceowl-extension - Transitional packa iceowl-l10n-hr - Croatian language package for iceowl-extension - Transitional pac iceowl-l10n-hu - Hungarian language package for iceowl-extension - Transitional pa iceowl-l10n-hy-am - Armenian language package for iceowl-extension - Transitional pac iceowl-l10n-id - Indonesian language package for iceowl-extension - Transitional p iceowl-l10n-is - Icelandic language package for iceowl-extension - Transitional pa iceowl-l10n-it - Italian language package for iceowl-extension - Transitional pack iceowl-l10n-ja - Japanese language package for iceowl-extension - Transitional pac iceowl-l10n-ko - Korean language package for iceowl-extension - Transitional packa iceowl-l10n-lt - Lithuanian language package for iceowl-extension - Transitional p iceowl-l10n-nb-no - Bokmaal (Norway) language package for iceowl-extension - Transiti iceowl-l10n-nl - Dutch language package for iceowl-extension - Transitional packag iceowl-l10n-nn-no - Nynorsk (Norway) language package for iceowl-extension - Transiti iceowl-l10n-pa-in - Punjabi language package for iceowl-extension - Transitional pack iceowl-l10n-pl - Polish language package for iceowl-extension - Transitional packa iceowl-l10n-pt-br - Portuguese (Br) language package for iceowl-extension - Transitio iceowl-l10n-pt-pt - Portuguese (Pt) language package for iceowl-extension - Transitio iceowl-l10n-rm - Romansh language package for iceowl-extension - Transitional pack iceowl-l10n-ro - Romanian language package for iceowl-extension - Transitional pac iceowl-l10n-ru - Russian language package for iceowl-extension - Transitional pack iceowl-l10n-si - Sinhala language package for iceowl-extension - Transitional pack iceowl-l10n-sk - Slovak language package for iceowl-extension - Transitional packa iceowl-l10n-sl - Slovenian language package for iceowl-extension - Transitional pa iceowl-l10n-sq - Albanian language package for iceowl-extension - Transitional pac iceowl-l10n-sr - Serbian language package for iceowl-extension - Transitional pack iceowl-l10n-sv-se - Swedish language package for iceowl-extension - Transitional pack iceowl-l10n-ta-lk - Tamil language package for iceowl-extension - Transitional packag iceowl-l10n-tr - Turkish language package for iceowl-extension - Transitional pack iceowl-l10n-uk - Ukrainian language package for iceowl-extension - Transitional pa iceowl-l10n-vi - Vietnamese language package for iceowl-extension - Transitional p iceowl-l10n-zh-cn - Chinese (China) language package for iceowl-extension - Transitio iceowl-l10n-zh-tw - Chinese (Taiwan) language package for iceowl-extension - Transiti lightning - Calendar Extension for Thunderbird lightning-l10n-ar - Arabic language package for lightning lightning-l10n-be - Belarusian language package for lightning lightning-l10n-bg - Bulgarian language package for lightning lightning-l10n-bn-bd - Bengali (Bangladesh) language package for lightning lightning-l10n-br - Breton language package for lightning lightning-l10n-ca - Catalan/Valencian language package for lightning lightning-l10n-cs - Czech language package for lightning lightning-l10n-cy - Welsh language package for lightning lightning-l10n-da - Danish language package for lightning lightning-l10n-de - German language package for lightning lightning-l10n-el - Greek language package for lightning lightning-l10n-en-gb - British English language package for lightning lightning-l10n-es-ar - Spanish (Argentina) language package for lightning lightning-l10n-es-es - Spanish (Spain) language package for lightning lightning-l10n-et - Estonian language package for lightning lightning-l10n-eu - Basque language package for lightning lightning-l10n-fi - Finnish language package for lightning lightning-l10n-fr - French language package for lightning lightning-l10n-fy-nl - Western Frisian language package for lightning lightning-l10n-ga-ie - Irish (Ireland) language package for lightning lightning-l10n-gd - Scottish Gaelic language package for lightning lightning-l10n-gl - Galician language package for lightning lightning-l10n-he - Hebrew language package for lightning lightning-l10n-hr - Croatian language package for lightning lightning-l10n-hu - Hungarian language package for lightning lightning-l10n-hy-am - Armenian language package for lightning lightning-l10n-id - Indonesian language package for lightning lightning-l10n-is - Icelandic language package for lightning lightning-l10n-it - Italian language package for lightning lightning-l10n-ja - Japanese language package for lightning lightning-l10n-ko - Korean language package for lightning lightning-l10n-lt - Lithuanian language package for lightning lightning-l10n-nb-no - Bokmaal (Norway) language package for lightning lightning-l10n-nl - Dutch language package for lightning lightning-l10n-nn-no - Nynorsk (Norway) language package for lightning lightning-l10n-pa-in - Punjabi language package for lightning lightning-l10n-pl - Polish language package for lightning lightning-l10n-pt-br - Portuguese (Brazil) language package for lightning lightning-l10n-pt-pt - Portuguese (Portugal) language package for lightning lightning-l10n-rm - Romansh language package for lightning lightning-l10n-ro - Romanian language package for lightning lightning-l10n-ru - Russian language package for lightning lightning-l10n-si - Sinhala language package for lightning lightning-l10n-sk - Slovak language package for lightning lightning-l10n-sl - Slovenian language package for lightning lightning-l10n-sq - Albanian language package for lightning lightning-l10n-sr - Serbian language package for lightning lightning-l10n-sv-se - Swedish language package for lightning lightning-l10n-ta-lk - Tamil language package for lightning lightning-l10n-tr - Turkish language package for lightning lightning-l10n-uk - Ukrainian language package for lightning lightning-l10n-vi - Vietnamese language package for lightning lightning-l10n-zh-cn - Chinese (China) language package for lightning lightning-l10n-zh-tw - Chinese (Taiwan) language package for lightning thunderbird - mail/news client with RSS, chat and integrated spam filter suppor thunderbird-dbg - Debug Symbols for Thunderbird thunderbird-dev - Development files for Thunderbird thunderbird-l10n-all - All language packages for Thunderbird (meta) thunderbird-l10n-ar - Arabic language package for Thunderbird thunderbird-l10n-ast - Asturian language package for Thunderbird thunderbird-l10n-be - Belarusian language package for Thunderbird thunderbird-l10n-bg - Bulgarian language package for Thunderbird thunderbird-l10n-bn-bd - Bengali language package for Thunderbird thunderbird-l10n-br - Breton language package for Thunderbird thunderbird-l10n-ca - Catalan/Valencian language package for Thunderbird thunderbird-l10n-cs - Czech language package for Thunderbird thunderbird-l10n-da - Danish language package for Thunderbird thunderbird-l10n-de - German language package for Thunderbird thunderbird-l10n-el - Greek language package for Thunderbird thunderbird-l10n-en-gb - English (Great Britain) language package for Thunderbird thunderbird-l10n-es-ar - Spanish (Argentina) language package for Thunderbird thunderbird-l10n-es-es - Spanish (Spain) language package for Thunderbird thunderbird-l10n-et - Estonian language package for Thunderbird thunderbird-l10n-eu - Basque language package for Thunderbird thunderbird-l10n-fi - Finnish language package for Thunderbird thunderbird-l10n-fr - French language package for Thunderbird thunderbird-l10n-fy-nl - Frisian language package for Thunderbird thunderbird-l10n-ga-ie - Irish (Ireland) language package for Thunderbird thunderbird-l10n-gd - Gaelic (Scottish) language package for Thunderbird thunderbird-l10n-gl - Galician language package for Thunderbird thunderbird-l10n-he - Hebrew language package for Thunderbird thunderbird-l10n-hr - Croatian language package for Thunderbird thunderbird-l10n-hu - Hungarian language package for Thunderbird thunderbird-l10n-hy-am - Armenian language package for Thunderbird thunderbird-l10n-id - Indonesian language package for Thunderbird thunderbird-l10n-is - Icelandic language package for Thunderbird thunderbird-l10n-it - Italian language package for Thunderbird thunderbird-l10n-ja - Japanese language package for Thunderbird thunderbird-l10n-ko - Korean language package for Thunderbird thunderbird-l10n-lt - Lithuanian language package for Thunderbird thunderbird-l10n-nb-no - Bokmaal (Norway) language package for Thunderbird thunderbird-l10n-nl - Dutch language package for Thunderbird thunderbird-l10n-nn-no - Nynorsk (Norway) language package for Thunderbird thunderbird-l10n-pa-in - Punjabi (India) language package for Thunderbird thunderbird-l10n-pl - Polish language package for Thunderbird thunderbird-l10n-pt-br - Portuguese (Brazil) language package for Thunderbird thunderbird-l10n-pt-pt - Portuguese (Portugal) language package for Thunderbird thunderbird-l10n-rm - Romansh language package for Thunderbird thunderbird-l10n-ro - Romania language package for Thunderbird thunderbird-l10n-ru - Russian language package for Thunderbird thunderbird-l10n-si - Sinhala language package for Thunderbird thunderbird-l10n-sk - Slovak language package for Thunderbird thunderbird-l10n-sl - Slovenian language package for Thunderbird thunderbird-l10n-sq - Albanian language package for Thunderbird thunderbird-l10n-sr - Serbian language package for Thunderbird thunderbird-l10n-sv-se - Swedish (Sweden) language package for Thunderbird thunderbird-l10n-ta-lk - Tamil language package for Thunderbird thunderbird-l10n-tr - Turkish language package for Thunderbird thunderbird-l10n-uk - Ukrainian language package for Thunderbird thunderbird-l10n-vi - Vietnamese language package for Thunderbird thunderbird-l10n-zh-cn - Chinese (China) language package for Thunderbird thunderbird-l10n-zh-tw - Chinese (Taiwan) language package for Thunderbird Closes: 857029 857032 857098 857112 Changes: icedove (1:45.8.0-1) unstable; urgency=medium . [ Carsten Schoenert ] * [3388899] New upstream version 45.8.0 * [24d25e9] tb-helper*: fix up that silly comments behind the if statement (Closes: #857029, #857032, #857098, #857112) * [788b7fa] bash-completion: adding a completion script for /u/b/thunderbird * [9ac9d07] rebuild patch queue from patch-queue branch added patches: - p-arm64/Bug-1091515-Don-t-set-64KB-page-size-on-aarch64.-r-glandi.patch - p-arm64/Bug-1257055-Use-jit-arm64-Architecture-arm64.h-on-non-JIT.patch * [ad0860b] copyright: small updates reflecting upstream changes . [ Christoph Goehre ] * [69577cf] lintian: replace hardlink in thunderbird-dev with symbolic link Checksums-Sha1: 2e5aa6a2b7afb3a6ca3a6dcb1f0c87a75337569e 19021 icedove_45.8.0-1.dsc 6938463349899d87d0c687ad388a274cb605b33c 7807120 icedove_45.8.0.orig-icedove-l10n.tar.xz 8d6b93ee674c7592228477b3ff6243488792ec96 825848 icedove_45.8.0.orig-iceowl-l10n.tar.xz d00145b22322f29225b6d9db8d1b3158705dfc64 205587972 icedove_45.8.0.orig.tar.xz 4f9136ceb3dc58757f71f1a0811b3a3904782615 402356 icedove_45.8.0-1.debian.tar.xz 80c3d5521bede25cbd34ed298d6a7a28297644d2 10418 icedove_45.8.0-1_source.buildinfo Checksums-Sha256: 511a03ec5edc8fad2531a4f041ae7e130c9e2b6d0c4c4c7962426f5967714898 19021 icedove_45.8.0-1.dsc 427ec228b09dc327510adc41a5396e37f24596940ebbb5e99802161d38307e3e 7807120 icedove_45.8.0.orig-icedove-l10n.tar.xz 5371401761af6ae30dbeb3a58af0301dd23647ea334dc85d3d3c9c12fc7d189f 825848 icedove_45.8.0.orig-iceowl-l10n.tar.xz 49adb7d861bca2cddf20cd27533216e52a0a5a2431bd5663e931d8f60ee7e30f 205587972 icedove_45.8.0.orig.tar.xz 67badd4e6308718b37cd8a755394ab98d8d747e45f2ec705b7c14a0196e16231 402356 icedove_45.8.0-1.debian.tar.xz d400922dde9ed6e65e57c5f769880f6181e7e029fceda19842493cd6500f2309 10418 icedove_45.8.0-1_source.buildinfo Files: 69ed48d95e80c91e9d60c7cb666f8cd6 19021 mail optional icedove_45.8.0-1.dsc 06e78c2df73d39e313d8eaba0a87c8a9 7807120 mail optional icedove_45.8.0.orig-icedove-l10n.tar.xz 4b9d24da8320ef832716d02818b1ea47 825848 mail optional icedove_45.8.0.orig-iceowl-l10n.tar.xz 5f9501e0d652c79b60afcedfd653338e 205587972 mail optional icedove_45.8.0.orig.tar.xz 4e70b8bd66b0eda6c596f94dd0102873 402356 mail optional icedove_45.8.0-1.debian.tar.xz f37f2d6643d82b10716544e78210be07 10418 mail optional icedove_45.8.0-1_source.buildinfo -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEi5SBnCVVcKN0tizNJuPIdadEIO8FAljCFDUACgkQJuPIdadE IO87kw//d9CoTjQGzF8v3oGtPrDk7sqbT+A/LnMuoTv0MNLXbq5/RWkM4jPdwQmg nScZ/VpTbjWaMkoH93fzy5738bAIbnIvYB9KFKo5NLPytciMgDAi/j+rU+NFGbh2 GVlTTjAW7eZbeDUdEOPtfQkK56i8Yo/bcm7ETWmspzfwV7gceSGNwppkx72CETDf 63ZEBRRxvtwCqK/DDtjwBvO0X5xtOvgYo+H6HefAVMWWjTZP9N9X2P4J6ahYDOFX 59mirrIBHuQo/M3oMw4e4huVeslWoi+ULd/ZU9roXfpxMWk+nUB6Ww6b35xNTHdk DC8jq33R+AFzDs2RD+FX1PeALAYmeyMNVT8r4gNRyK4N91q0c5X8l60sS08hKkSi TA/PKYG72EbXveSG15e5F+EKr1PUCnh6N2rB+qsij7r5iT+1wc0i4MCNTtMoz/Wt 0LA4w1Z8TPRCdnWi08D/sVNek1sEZJsdOhxsqhEsa57viyuROzrrwQVnhHLxresw 2eqqTSrOBRbnJzmLbu0YTJZ7qxu6pUrm0a5bppaNYIuCAfulNkWZgmEStX/6bIYu VjdzqbOTTyYNG0Kn77odym0ECB8qgalNhoJwZRpSwtVdO0WsO82vtdptUOUumRlB KjsiVE8ZXqYs3dW/KD2uasWxmHWigSxpAcDdSWxIS6rr4qLf1f4= =YYf3 -----END PGP SIGNATURE-----
--- End Message ---

