2009-07-21 12:08:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2009-09-23 20:21:46 +02:00
|
|
|
RELEASE_TAG="THUNDERBIRD_3_0b3_RELEASE"
|
|
|
|
VERSION="3.0b3"
|
2009-07-21 12:08:52 +02:00
|
|
|
|
2009-09-23 20:21:46 +02:00
|
|
|
# mozilla
|
2009-07-21 12:08:52 +02:00
|
|
|
hg clone http://hg.mozilla.org/comm-central thunderbird
|
|
|
|
pushd thunderbird
|
2009-09-23 20:21:46 +02:00
|
|
|
hg update -r $RELEASE_TAG
|
|
|
|
python client.py checkout --skip-chatzilla --skip-venkman
|
2009-07-21 12:08:52 +02:00
|
|
|
popd
|
|
|
|
tar cjf thunderbird-$VERSION-source.tar.bz2 --exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=CVS thunderbird
|
|
|
|
|
|
|
|
# l10n
|
|
|
|
# http://l10n.mozilla.org/dashboard/?tree=tb30x -> shipped-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)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
hg clone http://hg.mozilla.org/releases/l10n-mozilla-1.9.1/$locale l10n/$locale
|
|
|
|
hg -R l10n/$locale up -C -r $RELEASE_TAG
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
tar cjf l10n-$VERSION.tar.bz2 \
|
|
|
|
--exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=browser --exclude=calendar \
|
|
|
|
--exclude=suite \
|
|
|
|
l10n
|