2009-07-21 12:08:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-06-21 13:26:59 +02:00
|
|
|
CHANNEL="esr38"
|
2011-12-20 09:05:23 +01:00
|
|
|
BRANCH="releases/comm-$CHANNEL"
|
2015-07-12 21:36:20 +02:00
|
|
|
RELEASE_TAG="THUNDERBIRD_38_1_0_RELEASE"
|
|
|
|
VERSION="38.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 \
|
2009-07-21 12:08:52 +02:00
|
|
|
--exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=browser --exclude=calendar \
|
|
|
|
--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
|
|
|
|