Commit Graph

1780 Commits

Author SHA1 Message Date
Martin Stransky
e4ae574472 Enabled tests, disabled arm 2021-03-24 15:58:33 +01:00
Martin Stransky
91add2d4f7 Updated to 87.0 2021-03-23 10:29:22 +01:00
Martin Stransky
8ce8e0ad9f Enabled arm 2021-03-13 16:41:44 +01:00
Martin Stransky
ca19f446c5 Disable ppc64le on Fedora 34 due to https://bugzilla.redhat.com/show_bug.cgi?id=1933742 2021-03-13 16:33:00 +01:00
Martin Stransky
5e9102a9fe Update to latest upstream (86.0.1) 2021-03-12 12:36:34 +01:00
Martin Stransky
ba88443605 Temporary disable ppc64le/Fedora 35 due to https://bugzilla.redhat.com/show_bug.cgi?id=1933742 2021-03-10 09:17:10 +01:00
Martin Stransky
c9b8b418a1 Merge branch 'f33' into rawhide 2021-03-03 15:02:45 +01:00
Martin Stransky
8f2ad85567 Merge branch 'main' into f33 2021-03-03 15:01:16 +01:00
Martin Stransky
806d3f55bd Run tests on intel only 2021-03-03 15:01:05 +01:00
Martin Stransky
9ebc9be748 Added fix for mozbz#1694670 - merge 2021-03-03 14:59:03 +01:00
Martin Stransky
8f5618205c Added fix for mozilla#1694670 2021-03-03 14:57:49 +01:00
Martin Stransky
8746ce4b3a Release up 2021-03-02 09:02:46 +01:00
Martin Stransky
4c51d6a65a Test fixes 2021-03-02 09:01:48 +01:00
Martin Stransky
eda702a952 Log reftest results as HTML 2021-03-02 08:11:18 +01:00
Martin Stransky
2859c0f127 Run xpcshell tests sequential 2021-03-01 19:39:12 +01:00
Martin Stransky
818bcfb481 Enable Wayland backend when Wayland display is set 2021-03-01 15:10:18 +01:00
Martin Stransky
d0f12344f4 Added icecat-78.7.1-fix_error_template_with_C_linkage.patch to build on F34+ 2021-03-01 13:48:20 +01:00
Martin Stransky
a57a03dc89 Merge branch 'rawhide' of ssh://pkgs.fedoraproject.org/rpms/firefox into rawhide 2021-03-01 13:47:02 +01:00
Martin Stransky
3507a285d1 Added icecat-78.7.1-fix_error_template_with_C_linkage.patch to build on F34+ 2021-03-01 13:46:57 +01:00
Martin Stransky
57fcfb5e75 Nss version up 2021-02-27 10:29:30 +01:00
Martin Stransky
11cd4df669 f32 build fixes 2021-02-27 10:21:56 +01:00
Martin Stransky
498b7e2fa5 Build with system nss 2021-02-26 08:26:50 +01:00
Martin Stransky
5f5997630b Updated to 86.0 2021-02-24 12:39:29 +01:00
Martin Stransky
ad8d32e847 Test tweak 2021-02-23 12:09:27 +01:00
Martin Stransky
1f9e6ebbfe Fixed reftests in mock 2021-02-23 11:54:14 +01:00
Martin Stransky
603d980e8c Updated to 85.0.1 2021-02-08 17:18:10 +01:00
Dan Horák
2fe076f06f Fix parameter passing on ppc64le (mozb#1690152) 2021-02-03 12:07:56 +01:00
Kalev Lember
634d3e1ea3 Remove gtk2 support as flash plugin is no longer supported
ESR91 is supposed to drop gtk2 support, but in the mean time, we can
just rm the gtk2 libmozgtk.so as we are using gtk3 by default. The last
supported plugin -- adobe flash -- is no longer supported in Firefox 85,
so we no longer need to keep the gtk2 libmozgtk around for the plugin
loader.

https://pagure.io/fedora-workstation/issue/180
2021-02-02 16:43:35 +01:00
Martin Stransky
090200f68b Add Changelog 2021-02-01 16:23:56 +01:00
Martin Stransky
08858f399d Merge branch 'master' of ssh://pkgs.fedoraproject.org/rpms/firefox 2021-02-01 16:22:39 +01:00
Martin Stransky
68ac29b2c1 Enable WebRender on Wayland/KDE 2021-02-01 16:22:29 +01:00
Kalev Lember
7e3bd66d74 Fix warnings from requires filtering
Avoid using %{name} in %{mozappdir} definition as it's expanded
separately for each subpackage when doing requires filtering, which then
leads to expanding it as /usr/lib64/firefox, /usr/lib64/firefox-x11,
/usr/lib64/firefox-wayland etc, which is incorrect.

Just spell out "firefox" instead of "%{name}" to avoid this.

find: ‘/builddir/build/BUILDROOT/firefox-85.0-8.npgo.fc33.x86_64/usr/lib64/firefox-x11’: No such file or directory
2021-02-01 12:23:49 +01:00
Martin Stransky
70bb7dede6 Disabled crashreporter on rawhide due to bugzilla.redhat.com/show_bug.cgi?id=1922744 2021-01-31 12:42:08 +01:00
Martin Stransky
85ed0e903c Enable Wayland backend on Fedora 34/KDE/Plasma (and other compositors) by default. 2021-01-30 16:01:39 +01:00
Martin Stransky
96e0061c83 ARM / Rawhide PGO updates to produce rahide build 2021-01-30 15:20:47 +01:00
Martin Stransky
5a70ac803a Added clipboard fix mozbz#1631061. 2021-01-30 14:57:30 +01:00
Martin Stransky
490f23e1dd Added clipboard fix mozbz#1631061. 2021-01-30 14:56:07 +01:00
Kalev Lember
00f050ca50 Make provides/requires filtering smarter/automatic
The issue with the previous approach was that _everything_ that
firefox's shared libraries required was filtered out. This included e.g.
libxul.so's dependency on libdbus-glib-1.so.2 which definitely should
not be filtered out.

Instead, a better approach is to only filter out all of the private
libraries provides (as they are firefox's implementation detail) and
also all the internal requires on the same private libraries.

RPM doesn't make it very easy, but the rudimentary filtering is there
and we can build upon that. This commit improves the filtering by making
it actually look at what's built, and automatically generating the list
of private libraries to filter based on that.

This also lets us drop manual dbus-glib requires and instead rely on
rpm's automatic dep generator (the results are no longer filtered out).

This should make the filtering future proof when more private libraries
are added in the future (e.g. nss).

https://bugzilla.redhat.com/show_bug.cgi?id=1582116
2021-01-28 14:26:06 +01:00
Martin Stransky
3ee1da498c Add dbus-glib requires 2021-01-28 13:45:22 +01:00
Martin Stransky
9892072ed8 Added fix for mozbz#1679933 - startup crash 2021-01-26 23:47:03 +01:00
Fedora Release Engineering
1fd14fa8e1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-01-26 05:33:47 +00:00
Martin Stransky
f8dd69acc0 Switch to system NSS 3.60 2021-01-25 15:35:10 +01:00
Martin Stransky
afa323cda0 Added mozbz#1678247 2021-01-25 15:18:39 +01:00
Jan Horak
9946e9ffbe Fixing libxul requires 2021-01-22 12:41:56 +01:00
Martin Stransky
96a77865b8 Removed mzbz#1645695 as it causes a popup regression 2021-01-22 11:20:50 +01:00
Martin Stransky
c302989fdf Disable crashreporter when building without debuginfo 2021-01-22 09:37:18 +01:00
Martin Stransky
04e2d77e46 Removed unused patches 2021-01-21 19:03:40 +01:00
Martin Stransky
ef830a0c93 Update to 85.0 2021-01-21 13:55:58 +01:00
Jan Horak
9be9b1e03e Fixing package requires/provides 2021-01-20 16:46:59 +01:00
Martin Stransky
e369e8cae9 Added patch for mozilla bug 1645695 2021-01-20 16:35:08 +01:00