2009-07-21 12:08:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-18 22:27:55 +01:00
|
|
|
CHANNEL="esr52"
|
2011-12-20 09:05:23 +01:00
|
|
|
BRANCH="releases/comm-$CHANNEL"
|
- update to Thunderbird 52.8 (bsc#1092548)
MFSA 2018-13
* CVE-2018-5183 (bmo#1454692)
Backport critical security fixes in Skia
* CVE-2018-5184 (bmo#1411592, bsc#1093152)
Full plaintext recovery in S/MIME via chosen-ciphertext attack
* CVE-2018-5154 (bmo#1443092)
Use-after-free with SVG animations and clip paths
* CVE-2018-5155 (bmo#1448774)
Use-after-free with SVG animations and text paths
* CVE-2018-5159 (bmo#1441941)
Integer overflow and out-of-bounds write in Skia
* CVE-2018-5161 (bmo#1411720)
Hang via malformed headers
* CVE-2018-5162 (bmo#1457721, bsc#1093152)
Encrypted mail leaks plaintext through src attribute
* CVE-2018-5170 (bmo#1411732)
Filename spoofing for external attachments
* CVE-2018-5168 (bmo#1449548)
Lightweight themes can be installed without user interaction
* CVE-2018-5174 (bmo#1447080) (Windows only)
Windows Defender SmartScreen UI runs with less secure behavior
for downloaded files in Windows 10 April 2018 Update
* CVE-2018-5178 (bmo#1443891)
Buffer overflow during UTF-8 to Unicode string conversion
through legacy extension
* CVE-2018-5185 (bmo#1450345)
Leaking plaintext through HTML forms
* CVE-2018-5150 (bmo#1388020,bmo#1433609,bmo#1409440,bmo#1448705,
bmo#1451376,bmo#1452202,bmo#1444668,bmo#1393367,bmo#1411415,
OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=406
2018-05-19 12:55:26 +02:00
|
|
|
RELEASE_TAG="THUNDERBIRD_52_8_0_RELEASE"
|
2018-07-02 14:10:40 +02:00
|
|
|
VERSION="52.8.0"
|
|
|
|
VERSION_SUFFIX=""
|
|
|
|
LOCALE_FILE="thunderbird-$VERSION/mail/locales/shipped-locales"
|
2009-12-08 13:41:27 +01:00
|
|
|
|
2018-07-02 14:10:40 +02:00
|
|
|
# we might have an upstream archive already and can skip the checkout
|
|
|
|
if [ -e thunderbird-$VERSION$VERSION_SUFFIX.source.tar.xz ]; then
|
|
|
|
echo "skip thunderbird checkout and use available archive"
|
|
|
|
# still need to extract the locale information from the archive
|
|
|
|
echo "extract locale list"
|
|
|
|
tar -xf thunderbird-$VERSION$VERSION_SUFFIX.source.tar.xz $LOCALE_FILE
|
|
|
|
else
|
|
|
|
# thunderbird
|
|
|
|
if [ -d thunderbird-$VERSION ]; then
|
|
|
|
pushd thunderbird-$VERSION
|
|
|
|
_repourl=$(hg paths)
|
|
|
|
case "$_repourl" in
|
|
|
|
*$BRANCH*)
|
|
|
|
echo "updating previous tree"
|
|
|
|
hg pull
|
|
|
|
popd
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
echo "removing obsolete tree"
|
|
|
|
popd
|
|
|
|
rm -rf thunderbird-$VERSION
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
if [ ! -d thunderbird-$VERSION ]; then
|
|
|
|
echo "cloning new $BRANCH..."
|
|
|
|
hg clone http://hg.mozilla.org/$BRANCH thunderbird-$VERSION
|
|
|
|
fi
|
|
|
|
pushd thunderbird-$VERSION
|
|
|
|
hg update --check
|
|
|
|
echo "running client.py..."
|
|
|
|
[ "$RELEASE_TAG" == "default" ] || _extra="--comm-rev=$RELEASE_TAG --mozilla-rev=$RELEASE_TAG"
|
|
|
|
# temporary!
|
|
|
|
_extra="--mozilla-repo=http://hg.mozilla.org/releases/mozilla-$CHANNEL $_extra"
|
|
|
|
python client.py checkout --skip-chatzilla --skip-venkman $_extra
|
|
|
|
popd
|
|
|
|
echo "creating archive..."
|
|
|
|
tar cJf thunderbird-$VERSION.source.tar.xz --exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=CVS thunderbird-${VERSION}
|
|
|
|
fi
|
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
|
|
|
test ! -d l10n && mkdir l10n
|
2018-07-02 14:10:40 +02:00
|
|
|
for locale in $(awk '{ print $1; }' $LOCALE_FILE); do
|
2009-07-21 12:08:52 +02:00
|
|
|
case $locale in
|
|
|
|
ja-JP-mac|en-US)
|
|
|
|
;;
|
|
|
|
*)
|
2009-09-23 20:21:47 +02:00
|
|
|
echo "fetching $locale ..."
|
2018-07-02 14:10:40 +02:00
|
|
|
(
|
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
|
2018-07-02 14:10:40 +02:00
|
|
|
) &
|
2009-07-21 12:08:52 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2018-07-02 14:10:40 +02:00
|
|
|
wait
|
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
|
2018-07-02 14:10:40 +02:00
|
|
|
echo "creating compare-locales"
|
2011-06-28 20:42:13 +02:00
|
|
|
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
|
|
|
|