2011-06-01 08:05:09 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-04-27 09:09:13 +02:00
|
|
|
# TODO
|
2016-08-03 00:00:28 +02:00
|
|
|
# http://ftp.mozilla.org/pub/firefox/candidates/48.0-candidates/build2/linux-x86_64/en-US/firefox-48.0.json
|
|
|
|
# "moz_source_stamp": "c1de04f39fa956cfce83f6065b0e709369215ed5"
|
|
|
|
# http://ftp.mozilla.org/pub/firefox/candidates/48.0-candidates/build2/l10n_changesets.txt
|
2016-04-27 09:09:13 +02:00
|
|
|
|
2017-09-05 12:10:37 +02:00
|
|
|
CHANNEL="release"
|
2011-11-09 13:04:11 +01:00
|
|
|
BRANCH="releases/mozilla-$CHANNEL"
|
2018-03-16 19:58:54 +01:00
|
|
|
RELEASE_TAG="FIREFOX_59_0_1_RELEASE"
|
|
|
|
VERSION="59.0.1"
|
2018-03-13 20:46:06 +01:00
|
|
|
|
|
|
|
# check required tools
|
|
|
|
test -x /usr/bin/hg || ( echo "hg missing: execute zypper in mercurial"; exit 5 )
|
|
|
|
test -x /usr/bin/jq || ( echo "jq missing: execute zypper in jq"; exit 5 )
|
|
|
|
|
2011-06-01 08:05:09 +02:00
|
|
|
|
|
|
|
# mozilla
|
2013-05-14 16:33:59 +02:00
|
|
|
if [ -d mozilla ]; then
|
|
|
|
pushd mozilla
|
|
|
|
_repourl=$(hg paths)
|
|
|
|
case "$_repourl" in
|
|
|
|
*$BRANCH*)
|
|
|
|
echo "updating previous tree"
|
|
|
|
hg pull
|
|
|
|
popd
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
echo "removing obsolete tree"
|
|
|
|
popd
|
|
|
|
rm -rf mozilla
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
if [ ! -d mozilla ]; then
|
|
|
|
echo "cloning new $BRANCH..."
|
|
|
|
hg clone http://hg.mozilla.org/$BRANCH mozilla
|
|
|
|
fi
|
2011-06-01 08:05:09 +02:00
|
|
|
pushd mozilla
|
2013-09-16 09:57:05 +02:00
|
|
|
hg update --check
|
2011-06-01 08:05:09 +02:00
|
|
|
[ "$RELEASE_TAG" == "default" ] || hg update -r $RELEASE_TAG
|
2011-06-15 17:00:40 +02:00
|
|
|
# get repo and source stamp
|
|
|
|
echo -n "REV=" > ../source-stamp.txt
|
|
|
|
hg -R . parent --template="{node|short}\n" >> ../source-stamp.txt
|
|
|
|
echo -n "REPO=" >> ../source-stamp.txt
|
|
|
|
hg showconfig paths.default 2>/dev/null | head -n1 | sed -e "s/^ssh:/http:/" >> ../source-stamp.txt
|
2011-06-01 08:05:09 +02:00
|
|
|
popd
|
2017-07-14 09:51:30 +02:00
|
|
|
|
|
|
|
# use parallel compression, if available
|
|
|
|
compression='-J'
|
|
|
|
pixz -h > /dev/null 2>&1
|
|
|
|
if (($? != 127)); then
|
|
|
|
compression='-Ipixz'
|
|
|
|
fi
|
|
|
|
|
2012-04-20 21:18:58 +02:00
|
|
|
echo "creating archive..."
|
2017-07-14 09:51:30 +02:00
|
|
|
tar $compression -cf firefox-$VERSION-source.tar.xz --exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=CVS mozilla
|
2011-06-01 08:05:09 +02:00
|
|
|
|
|
|
|
# l10n
|
2012-04-20 21:18:58 +02:00
|
|
|
echo "fetching locales..."
|
2011-06-01 08:05:09 +02:00
|
|
|
test ! -d l10n && mkdir l10n
|
2018-03-13 20:46:06 +01:00
|
|
|
jq -r 'to_entries[]| "\(.key) \(.value|.revision)"' mozilla/browser/locales/l10n-changesets.json | \
|
|
|
|
while read locale changeset ; do
|
|
|
|
case $locale in
|
|
|
|
ja-JP-mac|en-US)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "reading changeset information for $locale"
|
|
|
|
echo "fetching $locale changeset $changeset ..."
|
|
|
|
hg clone http://hg.mozilla.org/l10n-central/$locale l10n/$locale
|
|
|
|
[ "$RELEASE_TAG" == "default" ] || hg -R l10n/$locale up -C -r $changeset
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2012-04-20 21:18:58 +02:00
|
|
|
echo "creating l10n archive..."
|
2017-07-14 09:51:30 +02:00
|
|
|
tar $compression -cf l10n-$VERSION.tar.xz --exclude=.hgtags --exclude=.hgignore --exclude=.hg l10n
|
2011-06-01 08:05:09 +02:00
|
|
|
|
|
|
|
# compare-locales
|
2012-04-20 21:18:58 +02:00
|
|
|
echo "creating compare-locales"
|
2011-06-01 08:05:09 +02:00
|
|
|
hg clone http://hg.mozilla.org/build/compare-locales
|
2017-07-14 09:51:30 +02:00
|
|
|
tar $compression -cf compare-locales.tar.xz --exclude=.hgtags --exclude=.hgignore --exclude=.hg compare-locales
|
2011-06-01 08:05:09 +02:00
|
|
|
|