1
0

Accepting request 352993 from mozilla:Factory

1

OBS-URL: https://build.opensuse.org/request/show/352993
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/MozillaFirefox?expand=0&rev=226
This commit is contained in:
Dominique Leuenberger 2016-01-15 09:39:33 +00:00 committed by Git OBS Bridge
commit 1f5badb87c
10 changed files with 27 additions and 61 deletions

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Jan 11 08:04:24 UTC 2016 - astieger@suse.com
- Mozilla Firefox 43.0.4:
* Re-enable SHA-1 certificates to prevent outdated
man-in-the-middle security devices from interfering with
properly secured SSL/TLS connections (bmo#1236975)
* Fix for startup crash for users of a third party antivirus tool
(bmo#1235537)
- The following change was previously in the package as a patch:
* Multi-user GNU/Linux download folders can be created
(bmo#1233434), removed mozilla-bmo1233434.patch
-------------------------------------------------------------------
Tue Dec 29 20:29:35 UTC 2015 - wr@rosenauer.org

View File

@ -1,7 +1,7 @@
#
# spec file for package MozillaFirefox
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# 2006-2015 Wolfgang Rosenauer
#
# All modifications and additions to the file contributed by third parties
@ -19,9 +19,9 @@
# changed with every update
%define major 43
%define mainver %major.0.3
%define mainver %major.0.4
%define update_channel release
%define releasedate 2015122500
%define releasedate 2016010600
# general build definitions
%if "%{update_channel}" != "aurora"
@ -159,7 +159,6 @@ Patch7: mozilla-repo.patch
Patch8: mozilla-openaes-decl.patch
Patch10: mozilla-no-stdcxx-check.patch
Patch11: mozilla-libproxy.patch
Patch12: mozilla-bmo1233434.patch
# Firefox/browser
Patch101: firefox-kde.patch
Patch102: firefox-no-default-ualocale.patch
@ -269,7 +268,6 @@ cd $RPM_BUILD_DIR/mozilla
%patch8 -p1
%patch10 -p1
%patch11 -p1
%patch12 -p1
# Firefox
%patch101 -p1
%patch102 -p1

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4c4fa751e8d78829db3740eab62b71e605d9b97967f61358b01b8900a6b29bfa
size 28416
oid sha256:c33238a571724750a2429fc48d56cf84b82a3bcae876b1e71b102aea4170120c
size 28624

View File

@ -2,8 +2,8 @@
CHANNEL="release"
BRANCH="releases/mozilla-$CHANNEL"
RELEASE_TAG="FIREFOX_43_0_3_RELEASE"
VERSION="43.0.3"
RELEASE_TAG="FIREFOX_43_0_4_RELEASE"
VERSION="43.0.4"
# mozilla
if [ -d mozilla ]; then

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1ce8085c8b0dd4102701d2b442ad3c9076359b2ee522a3d6d10471cd25da970b
size 185751552

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a4f3dbdc7063a6ef421cd9931e09bd099834933037b4cd173e028886619d6750
size 185574652

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:93f9aee25ec756147f26e62eb8bbe7c556ada63bd25b24ea626cea96dfdc1963
size 43068464

3
l10n-43.0.4.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:57e5e502001ea4093a1ad219ebc26c9fef075c4818f87e0f22c83063f977d327
size 42791412

View File

@ -1,45 +0,0 @@
# HG changeset patch
# User Aidin Gharibnavaz <aidin@aidinhut.com>
# Date 1450550460 -12600
# Node ID 07ec362866977f37e638fc88e3079621fd7aef96
# Parent cb66ffeb6725e8344818e8e2f707ae2eaeb953b4
Bug 1233434 - Fixing download failure on a multi-user GNU/Linux machine. r?bagder
diff -r cb66ffeb6725 -r 07ec36286697 uriloader/exthandler/nsExternalHelperAppService.cpp
--- a/uriloader/exthandler/nsExternalHelperAppService.cpp Tue Dec 15 14:45:06 2015 +0100
+++ b/uriloader/exthandler/nsExternalHelperAppService.cpp Sat Dec 19 22:11:00 2015 +0330
@@ -416,12 +416,12 @@
const char* userName = PR_GetEnv("USERNAME");
if (!userName || !*userName) {
userName = PR_GetEnv("USER");
- if (!userName || !*userName) {
- userName = PR_GetEnv("LOGNAME");
- }
- else {
- userName = "mozillaUser";
- }
+ }
+ if (!userName || !*userName) {
+ userName = PR_GetEnv("LOGNAME");
+ }
+ if (!userName || !*userName) {
+ userName = "mozillaUser";
}
nsAutoString userDir;
@@ -447,7 +447,12 @@
rv = finalPath->GetPermissions(&permissions);
NS_ENSURE_SUCCESS(rv, rv);
- if (permissions == PR_IRWXU) {
+ // Ensuring the path is writable by the current user.
+ bool isWritable;
+ rv = finalPath->IsWritable(&isWritable);
+ NS_ENSURE_SUCCESS(rv, rv);
+
+ if (permissions == PR_IRWXU && isWritable) {
dir = finalPath;
break;
}

View File

@ -1,2 +1,2 @@
REV=f227eec41a24
REV=146f494b6a79
REPO=http://hg.mozilla.org/releases/mozilla-release