2009-07-21 12:08:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-04-30 15:53:52 +02:00
|
|
|
CHANNEL="esr45"
|
2011-12-20 09:05:23 +01:00
|
|
|
BRANCH="releases/comm-$CHANNEL"
|
- update to Thunderbird 45.7.0
* Message preview pane non-functional after IMAP folder was renamed
or moved
* "Move To" button on "Search Messages" panel not working
* Message sent to "undisclosed recipients" shows no recipient
(non-functional since Thunderbird version 38)
* MFSA 2017-02 (Gecko 45.7.0)
CVE-2017-5375: Excessive JIT code allocation allows bypass of
ASLR and DEP (bmo#1325200, boo#1021814)
CVE-2017-5376: Use-after-free in XSL (bmo#1311687, boo#1021817)
CVE-2017-5378: Pointer and frame data leakage of Javascript objects
(bmo#1312001, bmo#1330769, boo#1021818)
CVE-2017-5380: Potential use-after-free during DOM manipulations
(bmo#1322107, boo#1021819)
CVE-2017-5390: Insecure communication methods in Developer Tools
JSON viewer (bmo#1297361, boo#1021820)
CVE-2017-5396: Use-after-free with Media Decoder
(bmo#1329403, boo#1021821)
CVE-2017-5383: Location bar spoofing with unicode characters
(bmo#1323338, bmo#1324716, boo#1021822)
CVE-2017-5386: WebExtensions can use data: protocol to affect other
extensions (bmo#1319070, boo#1021823)
CVE-2017-5373: Memory safety bugs fixed in Firefox 51 and
Firefox ESR 45.7 (boo#1021824)
OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=349
2017-01-25 11:46:35 +01:00
|
|
|
RELEASE_TAG="THUNDERBIRD_45_7_0_RELEASE"
|
|
|
|
VERSION="45.7.0"
|
2009-12-08 13:41:27 +01:00
|
|
|
|
|
|
|
echo "cloning $BRANCH..."
|
|
|
|
hg clone http://hg.mozilla.org/$BRANCH thunderbird
|
2009-07-21 12:08:52 +02:00
|
|
|
pushd thunderbird
|
2009-12-08 13:41:27 +01:00
|
|
|
hg update -r $RELEASE_TAG
|
2009-09-23 20:21:47 +02:00
|
|
|
echo "running client.py..."
|
2009-12-08 13:41:27 +01:00
|
|
|
[ "$RELEASE_TAG" == "default" ] || _extra="--comm-rev=$RELEASE_TAG --mozilla-rev=$RELEASE_TAG"
|
2010-07-24 17:36:48 +02:00
|
|
|
# temporary!
|
2011-12-20 09:05:23 +01:00
|
|
|
_extra="--mozilla-repo=http://hg.mozilla.org/releases/mozilla-$CHANNEL $_extra"
|
2011-03-02 08:29:26 +01:00
|
|
|
python client.py checkout --skip-chatzilla --skip-venkman $_extra
|
2009-07-21 12:08:52 +02:00
|
|
|
popd
|
2009-12-08 13:41:27 +01:00
|
|
|
echo "creating archive..."
|
2014-07-28 15:29:31 +02:00
|
|
|
tar cJf thunderbird-$VERSION-source.tar.xz --exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=CVS thunderbird
|
2009-07-21 12:08:52 +02:00
|
|
|
|
|
|
|
# l10n
|
|
|
|
# http://l10n.mozilla.org/dashboard/?tree=tb30x -> shipped-locales
|
2009-09-23 20:21:47 +02:00
|
|
|
echo "fetching locales..."
|
2009-07-21 12:08:52 +02:00
|
|
|
if [ -e shipped-locales ]; then
|
|
|
|
SHIPPED_LOCALES=shipped-locales
|
|
|
|
else
|
2014-04-29 23:51:52 +02:00
|
|
|
SHIPPED_LOCALES=thunderbird/mail/locales/shipped-locales
|
2009-07-21 12:08:52 +02:00
|
|
|
fi
|
|
|
|
test ! -d l10n && mkdir l10n
|
|
|
|
for locale in $(awk '{ print $1; }' $SHIPPED_LOCALES); do
|
|
|
|
case $locale in
|
|
|
|
ja-JP-mac|en-US)
|
|
|
|
;;
|
|
|
|
*)
|
2009-09-23 20:21:47 +02:00
|
|
|
echo "fetching $locale ..."
|
2013-02-19 20:47:44 +01:00
|
|
|
hg clone http://hg.mozilla.org/releases/l10n/mozilla-release/$locale l10n/$locale
|
2009-07-21 12:08:52 +02:00
|
|
|
hg -R l10n/$locale up -C -r $RELEASE_TAG
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2009-09-23 20:21:47 +02:00
|
|
|
echo "creating l10n archive..."
|
2014-07-28 15:29:31 +02:00
|
|
|
tar cJf l10n-$VERSION.tar.xz \
|
2015-11-24 08:57:32 +01:00
|
|
|
--exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=browser \
|
2009-07-21 12:08:52 +02:00
|
|
|
--exclude=suite \
|
|
|
|
l10n
|
2011-06-28 20:42:13 +02:00
|
|
|
|
|
|
|
# compare-locales
|
|
|
|
hg clone http://hg.mozilla.org/build/compare-locales
|
2014-07-28 15:29:31 +02:00
|
|
|
tar cJf compare-locales.tar.xz --exclude=.hgtags --exclude=.hgignore --exclude=.hg compare-locales
|
2011-06-28 20:42:13 +02:00
|
|
|
|