OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=506
This commit is contained in:
parent
7a99e99658
commit
a576d140ab
122
create-tar.sh
122
create-tar.sh
@ -14,7 +14,7 @@ VERSION_SUFFIX="esr"
|
|||||||
RELEASE_TAG="" # Needs only to be set if no tar-ball can be downloaded
|
RELEASE_TAG="" # Needs only to be set if no tar-ball can be downloaded
|
||||||
PREV_VERSION="60.6.3" # Prev. version only needed for locales (leave empty to force l10n-generation)
|
PREV_VERSION="60.6.3" # Prev. version only needed for locales (leave empty to force l10n-generation)
|
||||||
PREV_VERSION_SUFFIX="esr"
|
PREV_VERSION_SUFFIX="esr"
|
||||||
#SKIP_LOCALES="" # Uncomment to skip l10n and compare-locales-generation
|
#SKIP_LOCALES="" # Uncomment to skip l10n-generation
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
exit 1
|
exit 1
|
||||||
@ -25,7 +25,8 @@ if [ $# -ne 1 ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Sourcing the given tar_stamps-file to have the variables available
|
# Sourcing the given tar_stamps-file to have the variables available
|
||||||
source "$1" || print_usage_and_exit
|
TAR_STAMP="$1"
|
||||||
|
source "$TAR_STAMP" || print_usage_and_exit
|
||||||
|
|
||||||
# Internal variables
|
# Internal variables
|
||||||
BRANCH="releases/mozilla-$CHANNEL"
|
BRANCH="releases/mozilla-$CHANNEL"
|
||||||
@ -37,12 +38,19 @@ fi
|
|||||||
|
|
||||||
SOURCE_TARBALL="$PRODUCT-$VERSION$VERSION_SUFFIX.source.tar.xz"
|
SOURCE_TARBALL="$PRODUCT-$VERSION$VERSION_SUFFIX.source.tar.xz"
|
||||||
FTP_URL="https://ftp.mozilla.org/pub/$PRODUCT/releases/$VERSION$VERSION_SUFFIX/source"
|
FTP_URL="https://ftp.mozilla.org/pub/$PRODUCT/releases/$VERSION$VERSION_SUFFIX/source"
|
||||||
|
FTP_CANDIDATES_BASE_URL="https://ftp.mozilla.org/pub/$PRODUCT/candidates"
|
||||||
# Make first letter of PRODCUT upper case
|
# Make first letter of PRODCUT upper case
|
||||||
PRODUCT_CAP="${PRODUCT^}"
|
PRODUCT_CAP="${PRODUCT^}"
|
||||||
LOCALES_URL="https://product-details.mozilla.org/1.0/l10n/$PRODUCT_CAP"
|
LOCALES_URL="https://product-details.mozilla.org/1.0/l10n/$PRODUCT_CAP"
|
||||||
|
PRODUCT_URL="https://product-details.mozilla.org/1.0/$PRODUCT.json"
|
||||||
# Exit script on CTRL+C
|
# Exit script on CTRL+C
|
||||||
trap "exit" INT
|
trap "exit" INT
|
||||||
|
|
||||||
|
function get_ftp_candidates_url() {
|
||||||
|
VERSION_WITH_SUFFIX="$1"
|
||||||
|
echo "$FTP_CANDIDATES_BASE_URL/$VERSION_WITH_SUFFIX-candidates"
|
||||||
|
}
|
||||||
|
|
||||||
function check_tarball_source () {
|
function check_tarball_source () {
|
||||||
TARBALL=$1
|
TARBALL=$1
|
||||||
# Print out what is going to be done:
|
# Print out what is going to be done:
|
||||||
@ -73,26 +81,64 @@ function check_for_binary() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function locales_get() {
|
function get_source_stamp() {
|
||||||
TMP_VERSION="$1"
|
BUILD_ID="$1"
|
||||||
URL_TO_CHECK="${LOCALES_URL}-${TMP_VERSION}"
|
FTP_CANDIDATES_BASE_URL=$(get_ftp_candidates_url $VERSION$VERSION_SUFFIX)
|
||||||
|
FTP_CANDIDATES_JSON_SUFFIX="${BUILD_ID}/linux-x86_64/en-US/$PRODUCT-$VERSION$VERSION_SUFFIX.json"
|
||||||
|
BUILD_JSON=$(curl --silent --fail "$FTP_CANDIDATES_BASE_URL/$FTP_CANDIDATES_JSON_SUFFIX") || return 1;
|
||||||
|
REV=$(echo "$BUILD_JSON" | jq .moz_source_stamp)
|
||||||
|
SOURCE_REPO=$(echo "$BUILD_JSON" | jq .moz_source_repo)
|
||||||
|
TIMESTAMP=$(echo "$BUILD_JSON" | jq .buildid)
|
||||||
|
echo "Extending $TAR_STAMP with:"
|
||||||
|
echo "RELEASE_REPO=${SOURCE_REPO}"
|
||||||
|
echo "RELEASE_TAG=${REV}"
|
||||||
|
echo "RELEASE_TIMESTAMP=${TIMESTAMP}"
|
||||||
|
# We "remove and add" instead of "replace" in case the entries are not there yet
|
||||||
|
# Removing the old RELEASE_-tags
|
||||||
|
sed -i "/RELEASE_\(TAG\|REPO\|TIMESTAMP\)=.*/d" "$TAR_STAMP"
|
||||||
|
# Appending the new
|
||||||
|
echo "RELEASE_REPO=$SOURCE_REPO" >> "$TAR_STAMP"
|
||||||
|
echo "RELEASE_TAG=$REV" >> "$TAR_STAMP"
|
||||||
|
echo "RELEASE_TIMESTAMP=$TIMESTAMP" >> "$TAR_STAMP"
|
||||||
|
}
|
||||||
|
|
||||||
|
function get_build_number() {
|
||||||
LAST_FOUND=""
|
LAST_FOUND=""
|
||||||
# Unfortunately, locales-files are not associated to releases, but to builds.
|
VERSION_WITH_SUFFIX="$1"
|
||||||
# And since we don't know which build was the final build, we go from 9 downwards
|
|
||||||
# try to find the latest one that exists (assuming there are no more than 9 builds).
|
BUILD_ID=$(curl --silent "$PRODUCT_URL" | jq -e '.["releases"] | .["'$PRODUCT-$VERSION_WITH_SUFFIX'"] | .["build_number"]')
|
||||||
# Error only if not even the first one exists
|
|
||||||
for BUILD_ID in $(seq 9 -1 0); do
|
# Slow fall-back
|
||||||
FINAL_URL="${URL_TO_CHECK}-build${BUILD_ID}.json"
|
if [ $? -ne 0 ]; then
|
||||||
if wget --quiet --spider "$FINAL_URL"; then
|
echo "Build number not found in product URL, falling back to slow FTP-parsing." 1>&2
|
||||||
LAST_FOUND="$FINAL_URL"
|
FTP_CANDIDATES_BASE_URL=$(get_ftp_candidates_url $VERSION_WITH_SUFFIX)
|
||||||
break
|
# Unfortunately, locales-files are not associated to releases, but to builds.
|
||||||
fi
|
# And since we don't know which build was the final build, we grep them all from
|
||||||
done
|
# the candidates-page, sort them and take the last one which should be the oldest
|
||||||
|
# Error only if not even the first one exists
|
||||||
|
LAST_FOUND=$(curl --silent --fail "$FTP_CANDIDATES_BASE_URL/" | grep -o "build[0-9]*/" | sort | uniq | tail -n 1 | cut -d "/" -f 1)
|
||||||
|
else
|
||||||
|
LAST_FOUND="build$BUILD_ID"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$LAST_FOUND" != "" ]; then
|
if [ "$LAST_FOUND" != "" ]; then
|
||||||
echo "$LAST_FOUND"
|
echo "$LAST_FOUND"
|
||||||
return 0
|
return 0
|
||||||
|
else
|
||||||
|
echo "Error: Could not find build-number for Firefox $VERSION_WITH_SUFFIX !" 1>&2
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function locales_get() {
|
||||||
|
TMP_VERSION="$1"
|
||||||
|
BUILD_ID="$2"
|
||||||
|
URL_TO_CHECK="${LOCALES_URL}-${TMP_VERSION}"
|
||||||
|
FINAL_URL="${URL_TO_CHECK}-${BUILD_ID}.json"
|
||||||
|
if wget --quiet --spider "$FINAL_URL"; then
|
||||||
|
echo "$FINAL_URL"
|
||||||
|
return 0
|
||||||
else
|
else
|
||||||
echo "Error: Could not find locales-file (json) for Firefox $TMP_VERSION !" 1>&2
|
echo "Error: Could not find locales-file (json) for Firefox $TMP_VERSION !" 1>&2
|
||||||
return 1
|
return 1
|
||||||
@ -107,9 +153,11 @@ function locales_parse() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function locales_unchanged() {
|
function locales_unchanged() {
|
||||||
|
BUILD_ID="$1"
|
||||||
|
PREV_BUILD_ID=$(get_build_number "$PREV_VERSION$PREV_VERSION_SUFFIX")
|
||||||
# If no json-file for one of the versions can be found, we say "they changed"
|
# If no json-file for one of the versions can be found, we say "they changed"
|
||||||
prev_url=$(locales_get "$PREV_VERSION$PREV_VERSION_SUFFIX") || return 1
|
prev_url=$(locales_get "$PREV_VERSION$PREV_VERSION_SUFFIX" "$PREV_BUILD_ID") || return 1
|
||||||
curr_url=$(locales_get "$VERSION$VERSION_SUFFIX") || return 1
|
curr_url=$(locales_get "$VERSION$VERSION_SUFFIX" "$BUILD_ID") || return 1
|
||||||
|
|
||||||
prev_content=$(locales_parse "$prev_url") || exit 1
|
prev_content=$(locales_parse "$prev_url") || exit 1
|
||||||
curr_content=$(locales_parse "$curr_url") || exit 1
|
curr_content=$(locales_parse "$curr_url") || exit 1
|
||||||
@ -129,11 +177,14 @@ if (($? != 127)); then
|
|||||||
compression='-Ipixz'
|
compression='-Ipixz'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Get ID
|
||||||
|
BUILD_ID=$(get_build_number "$VERSION$VERSION_SUFFIX")
|
||||||
|
|
||||||
if [ -z ${SKIP_LOCALES+x} ]; then
|
if [ -z ${SKIP_LOCALES+x} ]; then
|
||||||
# TODO: Thunderbird has usually "default" as locale entry.
|
# TODO: Thunderbird has usually "default" as locale entry.
|
||||||
# There we probably need to double-check Firefox-locals
|
# There we probably need to double-check Firefox-locals
|
||||||
# For now, just download every time for Thunderbird
|
# For now, just download every time for Thunderbird
|
||||||
if [ "$PRODUCT" = "firefox" ] && [ "$PREV_VERSION" != "" ] && locales_unchanged; then
|
if [ "$PRODUCT" = "firefox" ] && [ "$PREV_VERSION" != "" ] && locales_unchanged "$BUILD_ID"; then
|
||||||
printf "%-40s: Did not change. Skipping.\n" "locales"
|
printf "%-40s: Did not change. Skipping.\n" "locales"
|
||||||
LOCALES_CHANGED=0
|
LOCALES_CHANGED=0
|
||||||
else
|
else
|
||||||
@ -167,6 +218,7 @@ if [ -e $SOURCE_TARBALL ]; then
|
|||||||
echo "extract locale changesets"
|
echo "extract locale changesets"
|
||||||
tar -xf $SOURCE_TARBALL $LOCALE_FILE
|
tar -xf $SOURCE_TARBALL $LOCALE_FILE
|
||||||
fi
|
fi
|
||||||
|
get_source_stamp "$BUILD_ID"
|
||||||
else
|
else
|
||||||
# We are working on a version that is not yet published on the mozilla mirror
|
# We are working on a version that is not yet published on the mozilla mirror
|
||||||
# so we have to actually check out the repo
|
# so we have to actually check out the repo
|
||||||
@ -208,10 +260,9 @@ else
|
|||||||
hg update --check $FF_RELEASE_TAG
|
hg update --check $FF_RELEASE_TAG
|
||||||
[ "$FF_RELEASE_TAG" == "default" ] || hg update -r $FF_RELEASE_TAG
|
[ "$FF_RELEASE_TAG" == "default" ] || hg update -r $FF_RELEASE_TAG
|
||||||
# get repo and source stamp
|
# get repo and source stamp
|
||||||
echo -n "REV=" > ../source-stamp.txt
|
REV=$(hg -R . parent --template="{node|short}\n")
|
||||||
hg -R . parent --template="{node|short}\n" >> ../source-stamp.txt
|
SOURCE_REPO=$(hg showconfig paths.default 2>/dev/null | head -n1 | sed -e "s/^ssh:/http:/")
|
||||||
echo -n "REPO=" >> ../source-stamp.txt
|
TIMESTAMP=$(date +%Y%m%d%H%M%S)
|
||||||
hg showconfig paths.default 2>/dev/null | head -n1 | sed -e "s/^ssh:/http:/" >> ../source-stamp.txt
|
|
||||||
|
|
||||||
if [ "$PRODUCT" = "thunderbird" ]; then
|
if [ "$PRODUCT" = "thunderbird" ]; then
|
||||||
pushd comm || exit 1
|
pushd comm || exit 1
|
||||||
@ -221,6 +272,19 @@ else
|
|||||||
fi
|
fi
|
||||||
popd || exit 1
|
popd || exit 1
|
||||||
|
|
||||||
|
echo "Extending $TAR_STAMP with:"
|
||||||
|
echo "RELEASE_REPO=${SOURCE_REPO}"
|
||||||
|
echo "RELEASE_TAG=${REV}"
|
||||||
|
echo "RELEASE_TIMESTAMP=${TIMESTAMP}"
|
||||||
|
|
||||||
|
# We "remove and add" instead of "replace" in case the entries are not there yet
|
||||||
|
# Removing the old RELEASE_-tags
|
||||||
|
sed -i "/RELEASE_\(TAG\|REPO\|TIMESTAMP\)=.*/d" "$TAR_STAMP"
|
||||||
|
# Appending the new
|
||||||
|
echo "RELEASE_REPO=$SOURCE_REPO" >> "$TAR_STAMP"
|
||||||
|
echo "RELEASE_TAG=$REV" >> "$TAR_STAMP"
|
||||||
|
echo "RELEASE_TIMESTAMP=$TIMESTAMP" >> "$TAR_STAMP"
|
||||||
|
|
||||||
echo "creating archive..."
|
echo "creating archive..."
|
||||||
tar $compression -cf $PRODUCT-$VERSION$VERSION_SUFFIX.source.tar.xz --exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=CVS $PRODUCT-$VERSION
|
tar $compression -cf $PRODUCT-$VERSION$VERSION_SUFFIX.source.tar.xz --exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=CVS $PRODUCT-$VERSION
|
||||||
fi
|
fi
|
||||||
@ -267,15 +331,3 @@ elif [ -f "l10n-$PREV_VERSION$PREV_VERSION_SUFFIX.tar.xz" ]; then
|
|||||||
echo "Moving l10n-$PREV_VERSION$PREV_VERSION_SUFFIX.tar.xz to l10n-$VERSION$VERSION_SUFFIX.tar.xz"
|
echo "Moving l10n-$PREV_VERSION$PREV_VERSION_SUFFIX.tar.xz to l10n-$VERSION$VERSION_SUFFIX.tar.xz"
|
||||||
mv "l10n-$PREV_VERSION$PREV_VERSION_SUFFIX.tar.xz" "l10n-$VERSION$VERSION_SUFFIX.tar.xz"
|
mv "l10n-$PREV_VERSION$PREV_VERSION_SUFFIX.tar.xz" "l10n-$VERSION$VERSION_SUFFIX.tar.xz"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# compare-locales
|
|
||||||
echo "creating compare-locales"
|
|
||||||
if [ -d compare-locales/.hg ]; then
|
|
||||||
pushd compare-locales || exit 1
|
|
||||||
hg pull
|
|
||||||
popd || exit 1
|
|
||||||
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
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user