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"
|
2018-07-10 08:54:09 +02:00
|
|
|
RELEASE_TAG="THUNDERBIRD_52_9_1_RELEASE"
|
|
|
|
VERSION="52.9.1"
|
2018-07-02 14:10:40 +02:00
|
|
|
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
|
|
|
|