2009-07-21 12:08:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-08-06 16:26:01 +02:00
|
|
|
CHANNEL="esr60"
|
2011-12-20 09:05:23 +01:00
|
|
|
BRANCH="releases/comm-$CHANNEL"
|
2019-02-14 23:12:08 +01:00
|
|
|
RELEASE_TAG="be29b0c0d1d850af78a09aef2fa2190f8dd4acfd"
|
|
|
|
MOZ_RELEASE_TAG="6a830d12f15493a70b1192022c9985eba2139910"
|
|
|
|
VERSION="60.5.1"
|
2018-07-02 14:10:40 +02:00
|
|
|
VERSION_SUFFIX=""
|
2018-08-06 16:26:01 +02:00
|
|
|
LOCALE_FILE="thunderbird-$VERSION/comm/mail/locales/l10n-changesets.json"
|
|
|
|
|
|
|
|
# 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 )
|
|
|
|
|
|
|
|
# use parallel compression, if available
|
|
|
|
compression='-J'
|
|
|
|
pixz -h > /dev/null 2>&1
|
|
|
|
if (($? != 127)); then
|
|
|
|
compression='-Ipixz'
|
|
|
|
fi
|
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
|
2018-08-27 10:09:20 +02:00
|
|
|
# remove non-free untar licenced code from distributed tarball
|
2018-10-03 22:05:00 +02:00
|
|
|
#xz -d -v thunderbird-$VERSION$VERSION_SUFFIX.source.tar.xz && \
|
|
|
|
#tar -v --wildcards --delete -f thunderbird-$VERSION$VERSION_SUFFIX.source.tar \
|
|
|
|
# "thunderbird-${VERSION}/comm/other-licenses/7zstub" \
|
|
|
|
# "thunderbird-${VERSION}/other-licenses/7zstub" \
|
|
|
|
#&& \
|
|
|
|
#xz -9 -v thunderbird-$VERSION$VERSION_SUFFIX.source.tar
|
2018-07-02 14:10:40 +02:00
|
|
|
else
|
|
|
|
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..."
|
2018-08-27 17:50:17 +02:00
|
|
|
hg clone http://hg.mozilla.org/releases/mozilla-$CHANNEL thunderbird-$VERSION
|
|
|
|
hg clone http://hg.mozilla.org/releases/comm-$CHANNEL thunderbird-$VERSION/comm
|
2018-07-02 14:10:40 +02:00
|
|
|
fi
|
|
|
|
pushd thunderbird-$VERSION
|
2018-08-27 17:50:17 +02:00
|
|
|
hg update --check $MOZ_RELEASE_TAG
|
|
|
|
pushd comm
|
|
|
|
hg update --check $RELEASE_TAG
|
|
|
|
popd
|
2018-07-02 14:10:40 +02:00
|
|
|
popd
|
|
|
|
echo "creating archive..."
|
2018-08-27 12:51:57 +02:00
|
|
|
rm -rf thunderbird-${VERSION}/{,comm/}other-licenses/7zstub
|
2018-08-06 16:26:01 +02:00
|
|
|
tar $compression -cf thunderbird-$VERSION.source.tar.xz --exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=CVS thunderbird-${VERSION}
|
2018-07-02 14:10:40 +02:00
|
|
|
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-08-06 16:26:01 +02:00
|
|
|
jq -r 'to_entries[]| "\(.key) \(.value|.revision)"' $LOCALE_FILE | \
|
|
|
|
while read locale changeset ; do
|
2009-07-21 12:08:52 +02:00
|
|
|
case $locale in
|
|
|
|
ja-JP-mac|en-US)
|
|
|
|
;;
|
|
|
|
*)
|
2018-08-06 16:26:01 +02:00
|
|
|
echo "reading changeset information for $locale"
|
|
|
|
echo "fetching $locale changeset $changeset ..."
|
|
|
|
#(
|
|
|
|
if [ -d l10n/$locale/.hg ]; then
|
|
|
|
(cd l10n/$locale; hg pull)
|
|
|
|
else
|
|
|
|
hg clone http://hg.mozilla.org/l10n-central/$locale l10n/$locale
|
|
|
|
fi
|
|
|
|
[ "$RELEASE_TAG" == "default" ] || hg -R l10n/$locale up -C -r $changeset
|
|
|
|
#) &
|
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..."
|
2018-08-06 16:26:01 +02:00
|
|
|
tar $compression -cf 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"
|
2018-08-06 16:26:01 +02:00
|
|
|
if [ -d compare-locales/.hg ]; then
|
|
|
|
(cd compare-locales; hg pull)
|
|
|
|
else
|
|
|
|
hg clone http://hg.mozilla.org/build/compare-locales
|
|
|
|
fi
|
|
|
|
tar $compression -cf compare-locales.tar.xz --exclude=.hgtags --exclude=.hgignore --exclude=.hg compare-locales
|
2011-06-28 20:42:13 +02:00
|
|
|
|