forked from pool/MozillaThunderbird
f8a44525c7
* Searching message bodies of messages in local folders, including filter and quick filter operations, not working reliably: Content not found in base64-encode message parts, non-ASCII text not found and false positives found. * Defective messages (without at least one expected header) not shown in IMAP folders but shown on mobile devices * Calendar: Unintended task deletion if numlock is enabled * Mozilla platform security fixes MFSA 2018-04 * CVE-2018-5095 (bmo#1418447) Integer overflow in Skia library during edge builder allocation * CVE-2018-5096 (bmo#1418922) Use-after-free while editing form elements * CVE-2018-5097 (bmo#1387427) Use-after-free when source document is manipulated during XSLT * CVE-2018-5098 (bmo#1399400) Use-after-free while manipulating form input elements * CVE-2018-5099 (bmo#1416878) Use-after-free with widget listener * CVE-2018-5102 (bmo#1419363) Use-after-free in HTML media elements * CVE-2018-5103 (bmo#1423159) Use-after-free during mouse event handling * CVE-2018-5104 (bmo#1425000) Use-after-free during font face manipulation * CVE-2018-5117 (bmo#1395508) URL spoofing with right-to-left text aligned left-to-right * CVE-2018-5089 Memory safety bugs fixed in Firefox 58 and Firefox ESR 52.6 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=397
51 lines
1.5 KiB
Bash
51 lines
1.5 KiB
Bash
#!/bin/bash
|
|
|
|
CHANNEL="esr52"
|
|
BRANCH="releases/comm-$CHANNEL"
|
|
RELEASE_TAG="THUNDERBIRD_52_6_0_RELEASE"
|
|
VERSION="52.6"
|
|
|
|
echo "cloning $BRANCH..."
|
|
hg clone http://hg.mozilla.org/$BRANCH thunderbird
|
|
pushd thunderbird
|
|
hg update -r $RELEASE_TAG
|
|
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
|
|
|
|
# l10n
|
|
# http://l10n.mozilla.org/dashboard/?tree=tb30x -> shipped-locales
|
|
echo "fetching locales..."
|
|
if [ -e shipped-locales ]; then
|
|
SHIPPED_LOCALES=shipped-locales
|
|
else
|
|
SHIPPED_LOCALES=thunderbird/mail/locales/shipped-locales
|
|
fi
|
|
test ! -d l10n && mkdir l10n
|
|
for locale in $(awk '{ print $1; }' $SHIPPED_LOCALES); do
|
|
case $locale in
|
|
ja-JP-mac|en-US)
|
|
;;
|
|
*)
|
|
echo "fetching $locale ..."
|
|
hg clone http://hg.mozilla.org/releases/l10n/mozilla-release/$locale l10n/$locale
|
|
hg -R l10n/$locale up -C -r $RELEASE_TAG
|
|
;;
|
|
esac
|
|
done
|
|
echo "creating l10n archive..."
|
|
tar cJf l10n-$VERSION.tar.xz \
|
|
--exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=browser \
|
|
--exclude=suite \
|
|
l10n
|
|
|
|
# compare-locales
|
|
hg clone http://hg.mozilla.org/build/compare-locales
|
|
tar cJf compare-locales.tar.xz --exclude=.hgtags --exclude=.hgignore --exclude=.hg compare-locales
|
|
|