forked from pool/MozillaFirefox
- update to Firefox 33.0.2
* Fix a startup crash with some combination of hardware and drivers 33.0.1 * Firefox displays a black screen at start-up with certain graphics drivers - adjusted _constraints for ARM - added mozilla-bmo1088588.patch to fix build with EGL (bmo#1088588) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=408
This commit is contained in:
parent
b0bbfbf8c8
commit
113f1f2433
@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 30 11:31:05 UTC 2014 - wr@rosenauer.org
|
||||
|
||||
- update to Firefox 33.0.2
|
||||
* Fix a startup crash with some combination of hardware and drivers
|
||||
33.0.1
|
||||
* Firefox displays a black screen at start-up with certain
|
||||
graphics drivers
|
||||
- adjusted _constraints for ARM
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 28 15:23:09 UTC 2014 - josua.mayer97@gmail.com
|
||||
|
||||
- added mozilla-bmo1088588.patch to fix build with EGL (bmo#1088588)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 08:45:43 UTC 2014 - wr@rosenauer.org
|
||||
|
||||
|
@ -19,9 +19,9 @@
|
||||
|
||||
# changed with every update
|
||||
%define major 33
|
||||
%define mainver %major.0
|
||||
%define mainver %major.0.2
|
||||
%define update_channel release
|
||||
%define releasedate 2014101000
|
||||
%define releasedate 2014102800
|
||||
|
||||
# general build definitions
|
||||
%define firefox_appid \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
|
||||
@ -150,6 +150,7 @@ Patch9: mozilla-repo.patch
|
||||
Patch10: mozilla-sle11.patch
|
||||
Patch11: mozilla-icu-strncat.patch
|
||||
Patch12: mozilla-arm-disable-edsp.patch
|
||||
Patch13: mozilla-bmo1088588.patch
|
||||
# Firefox/browser
|
||||
Patch101: firefox-kde.patch
|
||||
Patch102: firefox-kde-114.patch
|
||||
@ -261,6 +262,7 @@ cd $RPM_BUILD_DIR/mozilla
|
||||
%endif
|
||||
%patch11 -p1
|
||||
%patch12 -p1
|
||||
%patch13 -p1
|
||||
# Firefox
|
||||
%patch101 -p1
|
||||
%if 0%{?suse_version} >= 1140
|
||||
|
11
_constraints
11
_constraints
@ -8,4 +8,15 @@
|
||||
<size unit="M">4500</size>
|
||||
</memory>
|
||||
</hardware>
|
||||
<overwrite>
|
||||
<conditions>
|
||||
<arch>armv6l</arch>
|
||||
<arch>armv7l</arch>
|
||||
</conditions>
|
||||
<hardware>
|
||||
<memory>
|
||||
<size unit="M">768</size>
|
||||
</memory>
|
||||
</hardware>
|
||||
</overwrite>
|
||||
</constraints>
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d3cccc117bcca233b9a17da85b479c57f6aceeb080ac17d8c9b300f8ea272318
|
||||
size 28432
|
||||
oid sha256:9da5fc2933ef4241a6b311ea34d3e45a20c8db862b55f554b4cea24faadb7751
|
||||
size 28468
|
||||
|
@ -2,8 +2,8 @@
|
||||
|
||||
CHANNEL="release"
|
||||
BRANCH="releases/mozilla-$CHANNEL"
|
||||
RELEASE_TAG="FIREFOX_33_0_RELEASE"
|
||||
VERSION="33.0"
|
||||
RELEASE_TAG="FIREFOX_33_0_2_RELEASE"
|
||||
VERSION="33.0.2"
|
||||
|
||||
# mozilla
|
||||
if [ -d mozilla ]; then
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:63c904a680581793a3c071bb1d81586a8102709d5d377bd0864727a11e2b9079
|
||||
size 131614988
|
3
firefox-33.0.2-source.tar.xz
Normal file
3
firefox-33.0.2-source.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:994e72dc778f50a0c850f4623c07fd91ad6702b3b6c8bf1a61cabd39630cdd8f
|
||||
size 131636868
|
3
l10n-33.0.2.tar.xz
Normal file
3
l10n-33.0.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5cb9f895fef103f8eb6a1ce1452163214977f543c26dde39f5d1a83f877619cf
|
||||
size 41126140
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5904c4c5ad5df00fae68afde41edb371d561f558b9818cad82e990455e1b7e46
|
||||
size 41114040
|
29
mozilla-bmo1088588.patch
Normal file
29
mozilla-bmo1088588.patch
Normal file
@ -0,0 +1,29 @@
|
||||
# HG changeset patch
|
||||
# User Dirk Mueller <dmueller@suse.com>
|
||||
# Date 1414618964 0
|
||||
# Wed Oct 29 21:42:44 2014 +0000
|
||||
# Node ID 8e3825b2d12a9f295b6ff9a972340b9d84fce068
|
||||
# Parent 262e4847ad6cca40d7375e40a0d6ebe8b372e3d3
|
||||
Bug 1088588 - fix ifdef in X11TextureSourceOGL.cpp, r?nical
|
||||
|
||||
diff --git a/gfx/layers/opengl/X11TextureSourceOGL.cpp b/gfx/layers/opengl/X11TextureSourceOGL.cpp
|
||||
--- a/gfx/layers/opengl/X11TextureSourceOGL.cpp
|
||||
+++ b/gfx/layers/opengl/X11TextureSourceOGL.cpp
|
||||
@@ -94,14 +94,14 @@ X11TextureSourceOGL::ContentTypeToSurfac
|
||||
switch (aType) {
|
||||
case gfxContentType::COLOR:
|
||||
return SurfaceFormat::R8G8B8X8;
|
||||
case gfxContentType::COLOR_ALPHA:
|
||||
return SurfaceFormat::R8G8B8A8;
|
||||
default:
|
||||
return SurfaceFormat::UNKNOWN;
|
||||
}
|
||||
}
|
||||
|
||||
+}
|
||||
+}
|
||||
+
|
||||
#endif
|
||||
-
|
||||
-}
|
||||
-}
|
@ -1,2 +1,2 @@
|
||||
REV=1f22a8cc7aa5
|
||||
REV=7dc4a9d1b3e6
|
||||
REPO=http://hg.mozilla.org/releases/mozilla-release
|
||||
|
Loading…
Reference in New Issue
Block a user