From 69f0a4b61208f13ad8b730e42c7a3dfb3920b188392a1d7564bf6f9a527d6e73 Mon Sep 17 00:00:00 2001 From: Wolfgang Rosenauer Date: Fri, 19 Jul 2019 14:43:08 +0000 Subject: [PATCH] - Mozilla Firefox 68.0.1 * Fixed missing Full Screen button when watching videos in full screen mode on HBO GO (bmo#1562837) * Fixed a bug causing incorrect messages to appear for some locales when sites try to request the use of the Storage Access API (bmo#1558503) * Users in Russian regions may have their default search engine changed (bmo#1565315) * Built-in search engines in some locales do not function correctly (bmo#1565779) * SupportMenu policy doesn't always work (bmo#1553290) * Allow the privacy.file_unique_origin pref to be controlled by policy (bmo#1563759) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=753 --- MozillaFirefox.changes | 17 +++++++++++++++++ MozillaFirefox.spec | 6 +++--- compare-locales.tar.xz | 4 ++-- create-tar.sh | 32 ++++++++++++++++++++------------ firefox-68.0.1.source.tar.xz | 3 +++ firefox-68.0.1.source.tar.xz.asc | 16 ++++++++++++++++ firefox-68.0.source.tar.xz | 3 --- firefox-68.0.source.tar.xz.asc | 16 ---------------- l10n-68.0.1.tar.xz | 3 +++ l10n-68.0.tar.xz | 3 --- source-stamp.txt | 2 +- tar_stamps | 4 ++-- 12 files changed, 67 insertions(+), 42 deletions(-) create mode 100644 firefox-68.0.1.source.tar.xz create mode 100644 firefox-68.0.1.source.tar.xz.asc delete mode 100644 firefox-68.0.source.tar.xz delete mode 100644 firefox-68.0.source.tar.xz.asc create mode 100644 l10n-68.0.1.tar.xz delete mode 100644 l10n-68.0.tar.xz diff --git a/MozillaFirefox.changes b/MozillaFirefox.changes index 257e401e..74e16323 100644 --- a/MozillaFirefox.changes +++ b/MozillaFirefox.changes @@ -1,3 +1,20 @@ +------------------------------------------------------------------- +Fri Jul 19 08:11:27 UTC 2019 - Wolfgang Rosenauer + +- Mozilla Firefox 68.0.1 + * Fixed missing Full Screen button when watching videos in full + screen mode on HBO GO (bmo#1562837) + * Fixed a bug causing incorrect messages to appear for some + locales when sites try to request the use of the Storage + Access API (bmo#1558503) + * Users in Russian regions may have their default search engine + changed (bmo#1565315) + * Built-in search engines in some locales do not function + correctly (bmo#1565779) + * SupportMenu policy doesn't always work (bmo#1553290) + * Allow the privacy.file_unique_origin pref to be controlled by + policy (bmo#1563759) + ------------------------------------------------------------------- Thu Jul 11 10:51:39 UTC 2019 - Jiri Slaby diff --git a/MozillaFirefox.spec b/MozillaFirefox.spec index 99876c9f..3d576365 100644 --- a/MozillaFirefox.spec +++ b/MozillaFirefox.spec @@ -19,12 +19,12 @@ # changed with every update %define major 68 -%define mainver %major.0 -%define orig_version 68.0 +%define mainver %major.0.1 +%define orig_version 68.0.1 %define orig_suffix %{nil} %define update_channel release %define branding 1 -%define releasedate 20190705220548 +%define releasedate 20190717172542 %define source_prefix firefox-%{orig_version} # always build with GCC as SUSE Security Team requires that diff --git a/compare-locales.tar.xz b/compare-locales.tar.xz index f0cf3b62..a38fa7e6 100644 --- a/compare-locales.tar.xz +++ b/compare-locales.tar.xz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b0c9df05c85ba1e6089280153c4e929063e6ec30db07929de68ddb06d5f8031a -size 28392 +oid sha256:74bbb01f23fde0403c2b8d0fcd66b138a19e5acdf9943a0e2ae97838595104f0 +size 28488 diff --git a/create-tar.sh b/create-tar.sh index a3618f6b..5a3cf37d 100644 --- a/create-tar.sh +++ b/create-tar.sh @@ -80,21 +80,24 @@ function locales_get() { LAST_FOUND="" # Unfortunately, locales-files are not associated to releases, but to builds. - # And since we don't know which build was the final build, we go from 1 to - # the last we find and try to find the latest one that exists. + # 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). # Error only if not even the first one exists - for BUILD_ID in $(seq 1 9); do + for BUILD_ID in $(seq 9 -1 0); do FINAL_URL="${URL_TO_CHECK}-build${BUILD_ID}.json" if wget --quiet --spider "$FINAL_URL"; then LAST_FOUND="$FINAL_URL" - elif [ $BUILD_ID -gt 1 ]; then - echo "$LAST_FOUND" - return 0 - else - echo "Error: Could not find locales-file (json) for Firefox $TMP_VERSION !" 1>&2 - return 1 + break fi done + + if [ "$LAST_FOUND" != "" ]; then + echo "$LAST_FOUND" + return 0 + else + echo "Error: Could not find locales-file (json) for Firefox $TMP_VERSION !" 1>&2 + return 1 + fi } function locales_parse() { @@ -160,7 +163,7 @@ fi # we might have an upstream archive already and can skip the checkout if [ -e $SOURCE_TARBALL ]; then - if [ -z ${SKIP_LOCALES+x} ]; then + if [ -z ${SKIP_LOCALES+x} ] && [ $LOCALES_CHANGED -ne 0 ]; then # still need to extract the locale information from the archive echo "extract locale changesets" tar -xf $SOURCE_TARBALL $LOCALE_FILE @@ -243,13 +246,18 @@ if [ $LOCALES_CHANGED -ne 0 ]; then esac done echo "creating l10n archive..." -if [ "$PRODUCT" = "thunderbird" ]; then + if [ "$PRODUCT" = "thunderbird" ]; then TB_TAR_FLAGS="--exclude=browser --exclude=suite" -fi + fi tar $compression -cf l10n-$VERSION$VERSION_SUFFIX.tar.xz \ --exclude=.hgtags --exclude=.hgignore --exclude=.hg \ $TB_TAR_FLAGS \ l10n +elif [ -f "l10n-$PREV_VERSION$PREV_VERSION_SUFFIX.tar.xz" ]; then + # Locales did not change, but the old tar-ball is in this directory + # Simply rename it: + 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" fi # compare-locales diff --git a/firefox-68.0.1.source.tar.xz b/firefox-68.0.1.source.tar.xz new file mode 100644 index 00000000..460e8140 --- /dev/null +++ b/firefox-68.0.1.source.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6037f77bdab29d79ca5e3fbd1d32f6c209e09d2066189a13dc7f7491227f5568 +size 311390092 diff --git a/firefox-68.0.1.source.tar.xz.asc b/firefox-68.0.1.source.tar.xz.asc new file mode 100644 index 00000000..9e8b98f8 --- /dev/null +++ b/firefox-68.0.1.source.tar.xz.asc @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCAAdFiEECXsxMHeuYqAvhNpN8aZmj7t9Vy4FAl0vi+QACgkQ8aZmj7t9 +Vy5aFA//ZsBnQjpaCS4uhDKS5hfycGbpUcN/xNhEC43jPemJOUKsmwTYt9V1Qnpe +ayuJ/JTALQjzn5korT8OqLQeuAGJbbNsg4OaR5G1LuDjD5I6rH3A7RSjM6XC/MBM +8bF1pKi7dz8/W39z6qJVMRHUw5+BAiDdqv0KWP0Bp37ZEgJRnS33GAJH7HpuoCck +YJ1/xl2mb5wexiqMY00o/X7uGTy7fEe/eOCgHrxmKjcUNizDU97/aPmlfolDvKuH +x8kf1QcvkYueFmGf3MPVq92XH6WuRf7TPyM3LAhdJFux+2Fg3AFsr8BIib/FOwon +zouKynmlmIHT/uySGtqcOdlZq/+Lhe9NDirvj8Dx3P/cSdfLy6T6FFnreu0ef7uM +ksBwnDwQT0VimX3AwWDs+Nz3PR4DazB1jtmSYSrRRnl1MAz6DT9HPt4ma44rolC5 +kgXWa9voPdmU16vkarET/NegqjcUtbeCGi6+n1Kw1fPqRJ91FIGp/ROmPIYoodL2 +kkxBGHZYJ4QkICdqJC6JCp6oDp6m6IDznTlhuI3bNqiPGRAnB8yiFmMVrg6Pf4Ts +b+oi8HdCnFqqrP+GCxwfIlTSteCZXkWpTXJxJJm2oMr5FIcA/Ivexrmi/sO89usC +aIBGgPG4gk/LzyNUUIiJQ+dS9LAiF3KniQWUjlFKDvsbqobSDDY= +=wInf +-----END PGP SIGNATURE----- diff --git a/firefox-68.0.source.tar.xz b/firefox-68.0.source.tar.xz deleted file mode 100644 index d34da9dd..00000000 --- a/firefox-68.0.source.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f7d61a08820088f1280d27f0808e355152c1dd0c94625fd077ced7319e522565 -size 315855672 diff --git a/firefox-68.0.source.tar.xz.asc b/firefox-68.0.source.tar.xz.asc deleted file mode 100644 index fbc7cb21..00000000 --- a/firefox-68.0.source.tar.xz.asc +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCAAdFiEECXsxMHeuYqAvhNpN8aZmj7t9Vy4FAl0f/2YACgkQ8aZmj7t9 -Vy4Q9Q/7BUeGl3mPqCC+RMSQyp2r1hPouNj1aIzWgjmUCNk+2soKgYXFameB7/UT -nWejptelT261tAUdRUYfttXk+KBsT4wOMEf0UrlC7GTGllfwjoxc/JWUUmXpJTa6 -M9xAUIa6NJbXIGCfaRk/PRdz+TAjsLWLQsdavw5zcyMoNiYyTARO0ap1luUo/FAg -9aZ7MtBQ1z4C9B3vYuTH6qgGIA1wazstrNg4C4rgkHAXAzvYW9NMNAO53d0F9w1q -UVDw0VY7G27gOnrysTJH12Lb18AXFWPXWbF5gmxKbkpdjeGlC1q7GvLV+TAI3m7H -UL1fV3c8Y8+9TEJ0c95FvZwTcUmuNDJagt7bu/MNu7i9gyWBqucNnF3NgkmTR+EE -BG21l7lSGBh8s4vl4upoCUoQ/bpriMBw767++TA5uzvj7NZXsOwU4sY97gpiJJIa -0VwVjdHKjQTUITrHuH2hrqD0dNBL8FgFATXxVVEwDGxhiR5ZP9tduL+a/Sn2pcQd -D9v5tJ/3GSlfYJqIAiNMaq139BZBYStcibk99pct5WU5jH6conzx4QEAHM2eaFBX -f87G7PKEfvHiVhuUJF8sblbO1DSj0Qk08/bwcVjW8vTAEKcz7AIQw18FoNxlgcg+ -kIW6xfR/P/sLMnwgc9ZEvVd25AYBJ1qwyBDwwAlcEbEmYoftVJo= -=9AVI ------END PGP SIGNATURE----- diff --git a/l10n-68.0.1.tar.xz b/l10n-68.0.1.tar.xz new file mode 100644 index 00000000..c9f7abb8 --- /dev/null +++ b/l10n-68.0.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8870ac699c5c8536b75d9f4a93f720cb75d312ec29c276cd07699c151f96f4f +size 49128836 diff --git a/l10n-68.0.tar.xz b/l10n-68.0.tar.xz deleted file mode 100644 index 60a3e70b..00000000 --- a/l10n-68.0.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6a93aca6a8e41ac91d301203fb0d59cc6f6ff20d483e0f6c83e34b9e82a8d116 -size 49500472 diff --git a/source-stamp.txt b/source-stamp.txt index 7d6c396f..ba5437e0 100644 --- a/source-stamp.txt +++ b/source-stamp.txt @@ -1,2 +1,2 @@ -REV=353628fec415324ca6aa333ab6c47d447ecc128e +REV=837bbcb850cd58eb07c7f6437078d5229986967c REPO=http://hg.mozilla.org/releases/mozilla-release diff --git a/tar_stamps b/tar_stamps index 59dbb6df..efdcdc09 100644 --- a/tar_stamps +++ b/tar_stamps @@ -1,8 +1,8 @@ PRODUCT="firefox" CHANNEL="release" -VERSION="68.0" +VERSION="68.0.1" VERSION_SUFFIX="" -FF_RELEASE_TAG="353628fec415324ca6aa333ab6c47d447ecc128e" +FF_RELEASE_TAG="837bbcb850cd58eb07c7f6437078d5229986967c" TB_RELEASE_TAG="" PREV_VERSION="" PREV_VERSION_SUFFIX=""