mozilla-xulrunner20/create-tar.sh
author Wolfgang Rosenauer <wr@rosenauer.org>
Fri, 15 Apr 2011 09:09:50 +0200
branchmozilla-2.0
changeset 266 0c52b02bd7c2
parent 239 99a267a3f1d3
permissions -rwxr-xr-x
2.0.1/4.0.1 update

#!/bin/bash

BRANCH="releases/mozilla-2.0"
RELEASE_TAG="FIREFOX_4_0_1_RELEASE"
VERSION="2.0.1"

# mozilla
hg clone http://hg.mozilla.org/$BRANCH mozilla
pushd mozilla
[ "$RELEASE_TAG" == "default" ] || hg update -r $RELEASE_TAG
popd
tar cjf xulrunner-source-$VERSION.tar.bz2 --exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=CVS mozilla

# l10n
test ! -d l10n && mkdir l10n
for locale in $(awk '{ print $1; }' mozilla/browser/locales/shipped-locales); do
  case $locale in
    ja-JP-mac|en-US)
      ;;
    *)
      hg clone http://hg.mozilla.org/releases/l10n-mozilla-2.0/$locale l10n/$locale
      [ "$RELEASE_TAG" == "default" ] || hg -R l10n/$locale up -C -r $RELEASE_TAG
      ;;
  esac
done
tar cjf l10n-$VERSION.tar.bz2 --exclude=.hgtags --exclude=.hgignore --exclude=.hg l10n

# compare-locales
hg clone http://hg.mozilla.org/build/compare-locales
tar cjf compare-locales.tar.bz2 --exclude=.hgtags --exclude=.hgignore --exclude=.hg compare-locales