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.1.0
* Background images not working and other issues related to
embedded images when composing email have been fixed
* Google Oauth setup can sometimes not progress to the next step
* requires NSS >= 3.28.4
- security fixes (boo#1035082), MFSA 2017-13
* CVE-2017-5443 (bmo#1342661)
Out-of-bounds write during BinHex decoding
* CVE-2017-5429 (bmo#1341096, bmo#1342823, bmo#1343261, bmo#1348894,
bmo#1348941, bmo#1349340, bmo#1350844, bmo#1352926, bmo#1353088)
Memory safety bugs fixed in Firefox 53, Firefox ESR 45.9, and
Firefox ESR 52.1
* CVE-2017-5464 (bmo#1347075)
Memory corruption with accessibility and DOM manipulation
* CVE-2017-5465 (bmo#1347617)
Out-of-bounds read in ConvolvePixel
* CVE-2017-5466 (bmo#1353975)
Origin confusion when reloading isolated data:text/html URL
* CVE-2017-5467 (bmo#1347262)
Memory corruption when drawing Skia content
* CVE-2017-5460 (bmo#1343642)
Use-after-free in frame selection
* CVE-2017-5461 (bmo#1344380)
Out-of-bounds write in Base64 encoding in NSS
* CVE-2017-5449 (bmo#1340127)
Crash during bidirectional unicode manipulation with animation
* CVE-2017-5446 (bmo#1343505)
Out-of-bounds read when HTTP/2 DATA frames are sent with incorrect data
* CVE-2017-5447 (bmo#1343552)
Out-of-bounds read during glyph processing
OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=365
2017-05-02 09:59:46 +02:00
|
|
|
RELEASE_TAG="THUNDERBIRD_52_1_0_RELEASE"
|
|
|
|
VERSION="52.1.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
|
|
|
|