-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfirefox.spec
1504 lines (1114 loc) · 53.6 KB
/
firefox.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%define homepage http://www.google.com/
%define default_bookmarks_file %{_datadir}/bookmarks/default-bookmarks.html
%define firefox_app_id \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
%define mozappdir %{_libdir}/%{name}-%{internal_version}
%define tarballdir mozilla-1.9.2
# xulrunner_version matches the firefox package.
# xulrunner_version_max is first next incompatible xulrunner version
%define xulrunner_version 1.9.2.3-1
%define xulrunner_version_max 1.9.2.4
%define internal_version 3.6
%define official_branding 1
%define build_langpacks 1
%if ! %{official_branding}
%define cvsdate 20080327
%define nightly .cvs%{cvsdate}
%define prever rc2
%endif
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 3.6.4
Release: 1%{?prever}%{?dist}
URL: http://www.mozilla.org/projects/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
# From ftp://ftp.mozilla.org/pub/firefox/releases/%{version}%{?pretag}/source
Source0: firefox-%{version}%{?prever}.source.tar.bz2
%if %{build_langpacks}
Source2: firefox-langpacks-%{version}-20100622.tar.bz2
%endif
Source10: firefox-mozconfig
Source11: firefox-mozconfig-branded
Source12: firefox-redhat-default-prefs.js
Source20: firefox.desktop
Source21: firefox.sh.in
Source23: firefox.1
Source100: find-external-requires
#Build patches
Patch0: firefox-version.patch
Patch1: mozilla-jemalloc-526152.patch
# Upstream patches
%if %{official_branding}
# Required by Mozilla Corporation
%else
# Not yet approved by Mozillla Corporation
%endif
# ---------------------------------------------------
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: desktop-file-utils
#BuildRequires: system-bookmarks
BuildRequires: xulrunner-devel >= %{xulrunner_version}
Requires: xulrunner >= %{xulrunner_version}
Conflicts: xulrunner >= %{xulrunner_version_max}
#Requires: system-bookmarks
Obsoletes: mozilla <= 37:1.7.13
Provides: webclient
%define _use_internal_dependency_generator 0
%define __find_requires %{SOURCE100}
%description
Mozilla Firefox is an open-source web browser, designed for standards
compliance, performance and portability.
#---------------------------------------------------------------------
%prep
%setup -q -c
cd %{tarballdir}
sed -e 's/__RPM_VERSION_INTERNAL__/%{internal_version}/' %{P:%%PATCH0} \
> version.patch
%{__patch} -p1 -b --suffix .version --fuzz=0 < version.patch
# For branding specific patches.
%patch1 -p1 -b .526152
%if %{official_branding}
# Required by Mozilla Corporation
%else
# Not yet approved by Mozilla Corporation
%endif
%{__rm} -f .mozconfig
%{__cp} %{SOURCE10} .mozconfig
%if %{official_branding}
%{__cat} %{SOURCE11} >> .mozconfig
%endif
# Set up SDK path
echo "ac_add_options --with-libxul-sdk=\
`pkg-config --variable=sdkdir libxul`" >> .mozconfig
sed -i 's/ac_add_options --with-system-nss/#ac_add_options --with-system-nss/' .mozconfig
sed -i 's/ac_add_options --with-system-nspr/#ac_add_options --with-system-nspr/' .mozconfig
sed -i 's/ac_add_options --enable-system-hunspell/#ac_add_options --enable-system-hunspell/' .mozconfig
sed -i 's/ac_add_options --enable-system-sqlite/#ac_add_options --enable-system-sqlite/' .mozconfig
sed -i 's/ac_add_options --enable-system-cairo/#ac_add_options --enable-system-cairo/' .mozconfig
./configure --disable-system-hunspell --disable-system-sqlite --disable-system-cairo
#---------------------------------------------------------------------
%build
cd %{tarballdir}
# Mozilla builds with -Wall with exception of a few warnings which show up
# everywhere in the code; so, don't override that.
MOZ_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | %{__sed} -e 's/-Wall//')
export CFLAGS=$MOZ_OPT_FLAGS
export CXXFLAGS=$MOZ_OPT_FLAGS
export PREFIX='%{_prefix}'
export LIBDIR='%{_libdir}'
MOZ_SMP_FLAGS=-j1
%ifnarch ppc ppc64 s390 s390x
[ -z "$RPM_BUILD_NCPUS" ] && \
RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
[ "$RPM_BUILD_NCPUS" -gt 1 ] && MOZ_SMP_FLAGS=-j2
%endif
INTERNAL_GECKO=%{internal_version}
MOZ_APP_DIR=%{_libdir}/%{name}-${INTERNAL_GECKO}
export LDFLAGS="-Wl,-rpath,${MOZ_APP_DIR}"
make -f client.mk build STRIP="/bin/true" MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS"
#---------------------------------------------------------------------
%install
%{__rm} -rf $RPM_BUILD_ROOT
cd %{tarballdir}
INTERNAL_GECKO=%{internal_version}
INTERNAL_APP_NAME=%{name}-${INTERNAL_GECKO}
MOZ_APP_DIR=%{_libdir}/${INTERNAL_APP_NAME}
DESTDIR=$RPM_BUILD_ROOT make install
%{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications}
desktop-file-install --vendor mozilla \
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
--add-category WebBrowser \
--add-category Network \
%{SOURCE20}
# set up the firefox start script
%{__rm} -rf $RPM_BUILD_ROOT%{_bindir}/firefox
%{__cat} %{SOURCE21} | %{__sed} -e 's,FIREFOX_VERSION,%{internal_version},g' \
| %{__sed} -e "s,XULRUNNER_DIRECTORY,`pkg-config --variable=libdir libxul`,g" > \
$RPM_BUILD_ROOT%{_bindir}/firefox
%{__chmod} 755 $RPM_BUILD_ROOT%{_bindir}/firefox
# set up our default preferences
%{__cat} %{SOURCE12} | %{__sed} -e 's,FIREFOX_RPM_VR,%{version}-%{release},g' > rh-default-prefs
# resolves bug #461880
%{__cat} > $RPM_BUILD_ROOT/%{mozappdir}/browserconfig.properties << EOF
browser.startup.homepage=%{homepage}
EOF
# Export correct locale
%{__cat} > $RPM_BUILD_ROOT/%{mozappdir}/defaults/preferences/firefox-l10n.js << EOF
pref("general.useragent.locale", "chrome://global/locale/intl.properties");
EOF
%{__chmod} 644 $RPM_BUILD_ROOT/%{mozappdir}/defaults/preferences/firefox-l10n.js
# place the preferences
%{__cp} rh-default-prefs $RPM_BUILD_ROOT/%{mozappdir}/defaults/preferences/all-redhat.js
%{__rm} rh-default-prefs
# set up our default bookmarks
%{__rm} -f $RPM_BUILD_ROOT/%{mozappdir}/defaults/profile/bookmarks.html
ln -s %{default_bookmarks_file} $RPM_BUILD_ROOT/%{mozappdir}/defaults/profile/bookmarks.html
%{__install} -p -D -m 644 %{SOURCE23} $RPM_BUILD_ROOT%{_mandir}/man1/firefox.1
%{__rm} -f $RPM_BUILD_ROOT/%{mozappdir}/firefox-config
#cd $RPM_BUILD_ROOT/%{mozappdir}/chrome
#find . -name "*" -type d -maxdepth 1 -exec %{__rm} -rf {} \;
#cd -
#%{__cat} > $RPM_BUILD_ROOT/%{mozappdir}/defaults/pref/firefox-l10n.js << EOF
#pref("general.useragent.locale", "chrome://global/locale/intl.properties");
#EOF
#%{__chmod} 644 $RPM_BUILD_ROOT/%{mozappdir}/defaults/pref/firefox-l10n.js
%{__cp} other-licenses/branding/%{name}/default16.png \
$RPM_BUILD_ROOT/%{mozappdir}/icons/
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps
%{__cp} other-licenses/branding/%{name}/default16.png \
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/firefox.png
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps
%{__cp} other-licenses/branding/%{name}/default22.png \
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps/firefox.png
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps
%{__cp} other-licenses/branding/%{name}/default24.png \
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps/firefox.png
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps
%{__cp} other-licenses/branding/%{name}/default32.png \
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/firefox.png
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps
%{__cp} other-licenses/branding/%{name}/default48.png \
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/firefox.png
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps
%{__cp} other-licenses/branding/%{name}/default256.png \
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps/firefox.png
echo > ../%{name}.lang
%if %{build_langpacks}
# Install langpacks
%{__mkdir_p} $RPM_BUILD_ROOT/%{mozappdir}/langpacks
%{__tar} xjf %{SOURCE2}
for langpack in `ls firefox-langpacks/*.xpi`; do
language=`basename $langpack .xpi`
extensiondir=$RPM_BUILD_ROOT/%{mozappdir}/extensions/[email protected]
%{__mkdir_p} $extensiondir
unzip $langpack -d $extensiondir
find $extensiondir -type f | xargs chmod 644
tmpdir=`mktemp -d %{name}.XXXXXXXX`
langtmp=$tmpdir/%{name}/langpack-$language
%{__mkdir_p} $langtmp
jarfile=$extensiondir/chrome/$language.jar
unzip $jarfile -d $langtmp
sed -i -e "s|browser.startup.homepage.*$|browser.startup.homepage=%{homepage}|g;" \
$langtmp/locale/browser-region/region.properties
find $langtmp -type f | xargs chmod 644
%{__rm} -rf $jarfile
cd $langtmp
zip -r -D $jarfile locale
cd -
%{__rm} -rf $tmpdir
language=`echo $language | sed -e 's/-/_/g'`
extensiondir=`echo $extensiondir | sed -e "s,^$RPM_BUILD_ROOT,,"`
echo "%%lang($language) $extensiondir" >> ../%{name}.lang
done
%{__rm} -rf firefox-langpacks
%endif # build_langpacks
# System extensions
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/mozilla/extensions/%{firefox_app_id}
%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/extensions/%{firefox_app_id}
# Copy over the LICENSE
%{__install} -p -c -m 644 LICENSE $RPM_BUILD_ROOT/%{mozappdir}
# ghost files
touch $RPM_BUILD_ROOT/%{mozappdir}/components/compreg.dat
touch $RPM_BUILD_ROOT/%{mozappdir}/components/xpti.dat
# jemalloc shows up sometimes, but it's not needed here, it's in XR
%{__rm} -f $RPM_BUILD_ROOT/%{mozappdir}/libjemalloc.so
#---------------------------------------------------------------------
%clean
%{__rm} -rf $RPM_BUILD_ROOT
#---------------------------------------------------------------------
%post
update-desktop-database &> /dev/null || :
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%postun
if [ $1 -eq 0 ] ; then
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
fi
update-desktop-database &> /dev/null || :
%preun
# is it a final removal?
if [ $1 -eq 0 ]; then
%{__rm} -rf %{mozappdir}/components
%{__rm} -rf %{mozappdir}/extensions
%{__rm} -rf %{mozappdir}/langpacks
%{__rm} -rf %{mozappdir}/plugins
fi
%posttrans
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%files -f %{name}.lang
%defattr(-,root,root,-)
%{_bindir}/firefox
%doc %{_mandir}/man1/*
%dir %{_datadir}/mozilla/extensions/%{firefox_app_id}
%dir %{_libdir}/mozilla/extensions/%{firefox_app_id}
%{_datadir}/applications/mozilla-%{name}.desktop
%dir %{mozappdir}
%doc %{mozappdir}/LICENSE
%doc %{mozappdir}/README.txt
%{mozappdir}/*.properties
%{mozappdir}/chrome
%dir %{mozappdir}/components
%ghost %{mozappdir}/components/compreg.dat
%ghost %{mozappdir}/components/xpti.dat
%{mozappdir}/components/*.so
%{mozappdir}/components/*.xpt
%attr(644, root, root) %{mozappdir}/blocklist.xml
%attr(644, root, root) %{mozappdir}/components/*.js
%{mozappdir}/defaults
%dir %{mozappdir}/extensions
%{mozappdir}/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}
%dir %{mozappdir}/langpacks
%{mozappdir}/icons
%{mozappdir}/searchplugins
%{mozappdir}/firefox
%{mozappdir}/run-mozilla.sh
%{mozappdir}/application.ini
%dir %{mozappdir}/modules
%{mozappdir}/modules/distribution.js
%{mozappdir}/modules/openLocationLastURL.jsm
%{mozappdir}/modules/NetworkPrioritizer.jsm
%{mozappdir}/.autoreg
# XXX See if these are needed still
%{mozappdir}/updater*
%exclude %{mozappdir}/removed-files
%exclude %{mozappdir}/components/components.list
%{_datadir}/icons/hicolor/16x16/apps/firefox.png
%{_datadir}/icons/hicolor/22x22/apps/firefox.png
%{_datadir}/icons/hicolor/24x24/apps/firefox.png
%{_datadir}/icons/hicolor/256x256/apps/firefox.png
%{_datadir}/icons/hicolor/32x32/apps/firefox.png
%{_datadir}/icons/hicolor/48x48/apps/firefox.png
#---------------------------------------------------------------------
%changelog
* Wed Jun 23 2010 David Hrbáč <[email protected]> - 3.6.4-1
- new upstream release
* Tue Apr 06 2010 David Hrbáč <[email protected]> - 3.6.3-2
- rebuild to pick up new xulrunner
* Tue Apr 06 2010 David Hrbáč <[email protected]> - 3.6.3-1
- new upstream release
* Wed Mar 24 2010 David Hrbáč <[email protected]> - 3.6.2-1
- new upstream release
* Wed Feb 10 2010 David Hrbáč <[email protected]> - 3.6.1-1
- CentOS rebuild
* Wed Jan 18 2010 Martin Stransky <[email protected]> - 3.6.1-1
- Update to 3.6
* Wed Jan 18 2010 Martin Stransky <[email protected]> - 3.6.1-0.11.rc2
- Update to 3.6.1 RC2
- Fix for #556428 - Restricted maximal xulrunner version
* Wed Jan 13 2010 Martin Stransky <[email protected]> - 3.6.1-0.10.rc1
- Update to 3.6.1 RC1
* Thu Jan 7 2010 Martin Stransky <[email protected]> - 3.6.1-0.9.b4
- firefox.sh fixes (error messages, #553184)
* Tue Jan 5 2010 Martin Stransky <[email protected]> - 3.6.1-0.8.b4
- Removed MOZ_LOCAL_LANGPACKS from browser launcher script (#284011)
* Mon Dec 21 2009 Martin Stransky <[email protected]> - 3.6.1-0.7.b4
- Update to 3.6.1 Beta 5
* Wed Nov 27 2009 Martin Stransky <[email protected]> - 3.6.1-0.6.b4
- Added fix for mozbz#526152 - jemalloc fix
* Wed Nov 27 2009 Martin Stransky <[email protected]> - 3.6.1-0.5.b4
- Update to 3.6.1 Beta 4
* Wed Nov 25 2009 Martin Stransky <[email protected]> - 3.6.1-0.4.b3
- Language pack updated (#284011)
* Fri Nov 20 2009 Martin Stransky <[email protected]> - 3.6.1-0.3.b3
- Necko wifi monitor disabled
- Added source URL (#521704)
* Wed Nov 18 2009 Martin Stransky <[email protected]> - 3.6.1-0.2.b3
- Rebase to 3.6.1 Beta 3
* Fri Nov 13 2009 Martin Stransky <[email protected]> - 3.6.1-0.1.b2
- Rebase to 3.6.1 Beta 2
* Thu Nov 5 2009 Jan Horak <[email protected]> - 3.5.5-1
- Update to 3.5.5
* Mon Oct 26 2009 Jan Horak <[email protected]> - 3.5.4-1
- Update to 3.5.4
* Mon Sep 7 2009 Jan Horak <[email protected]> - 3.5.3-1
- Update to 3.5.3
* Thu Aug 6 2009 Martin Stransky <[email protected]> - 3.5.2-3
- Rebuilt
* Thu Aug 6 2009 Martin Stransky <[email protected]> - 3.5.2-2
- Fix for #437596 - Firefox needs to register proper name
for session restore.
* Mon Aug 3 2009 Christopher Aillon <[email protected]> - 3.5.2-1
- Update to 3.5.2
* Fri Jul 24 2009 Jan Horak <[email protected]> - 3.5.1-3
- Adjust icons cache update according to template
* Wed Jul 22 2009 Jan Horak <[email protected]> - 3.5.1-2
- New icons fixed
* Fri Jul 17 2009 Christopher Aillon <[email protected]> - 3.5.1-1
- Update to 3.5.1
* Mon Jul 13 2009 Jan Horak <[email protected]> - 3.5-2
- Updated icon
* Tue Jun 30 2009 Christopher Aillon <[email protected]> - 3.5-1
- Firefox 3.5 final release
* Tue May 26 2009 Martin Stransky <[email protected]> - 3.5-0.21
- fix for #502541 - Firefox version should depend
on Xulrunner but does not
* Mon Apr 27 2009 Christopher Aillon <[email protected]> - 3.5-0.20
- 3.5 beta 4
* Fri Mar 27 2009 Christopher Aillon <[email protected]> - 3.1-0.11
- Rebuild against newer gecko
* Fri Mar 13 2009 Christopher Aillon <[email protected]> - 3.1-0.10
- 3.1 beta 3
* Tue Feb 24 2009 Fedora Release Engineering <[email protected]> - 3.1-0.7.beta2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Wed Feb 11 2009 Christopher Aillon <[email protected]> - 3.1-0.6
- Drop explicit requirement on desktop-file-utils
* Wed Jan 7 2009 Jan Horak <[email protected]> - 3.1-0.5
- Fixed wrong LANG and LC_MESSAGES variables interpretation (#441973)
in startup script.
* Sat Dec 20 2008 Christopher Aillon <[email protected]> 3.1-0.4
- 3.1 beta 2
* Tue Dec 9 2008 Christopher Aillon <[email protected]> 3.1-0.3
- Rebuild
* Thu Dec 4 2008 Christopher Aillon <[email protected]> 3.1-0.1
- Update to 3.1 beta 1
* Tue Nov 11 2008 Jan Horak <[email protected]> 3.0.2-2
- Removed firefox-2.0-getstartpage.patch patch
- Start page is set by different way
* Tue Sep 23 2008 Christopher Aillon <[email protected]> 3.0.2-1
- Update to 3.0.2
* Wed Jul 16 2008 Christopher Aillon <[email protected]> 3.0.1-1
- Update to 3.0.1
* Tue Jun 17 2008 Christopher Aillon <[email protected]> 3.0-1
- Firefox 3 Final
* Thu May 08 2008 Colin Walters <[email protected]> 3.0-0.61
- Rebuild to pick up new xulrunner (bug #445543)
* Wed Apr 30 2008 Christopher Aillon <[email protected]> 3.0-0.60
- Rebuild
* Mon Apr 28 2008 Christopher Aillon <[email protected]> 3.0-0.59
- Zero out the lang file we generate during builds
* Mon Apr 28 2008 Christopher Aillon <[email protected]> 3.0-0.58
- Bounce a few unneeded items from the spec and clean up some tabs
* Fri Apr 25 2008 Martin Stransky <[email protected]> 3.0-0.57
- Enable anti-pishing protection (#443403)
* Fri Apr 18 2008 Martin Stransky <[email protected]> 3.0-0.55
- Don't show an welcome page during first browser start (#437065)
* Sat Apr 12 2008 Christopher Aillon <[email protected]> 3.0-0.54
- Remove the broken Macedonian (mk) langpack
- Download to Download/
* Mon Apr 7 2008 Christopher Aillon <[email protected]> 3.0-0.53
- Add langpacks, marked with %%lang
- Translate the .desktop file
* Wed Apr 2 2008 Christopher Aillon <[email protected]> 3.0-0.52
- Beta 5
* Mon Mar 31 2008 Christopher Aillon <[email protected]> 3.0-0.51
- Beta 5 RC2
* Thu Mar 27 2008 Christopher Aillon <[email protected]> 3.0-0.50
- Update to latest trunk (2008-03-27)
* Wed Mar 26 2008 Christopher Aillon <[email protected]> 3.0-0.49
- Update to latest trunk (2008-03-26)
* Tue Mar 25 2008 Christopher Aillon <[email protected]> 3.0-0.48
- Update to latest trunk (2008-03-25)
* Mon Mar 24 2008 Christopher Aillon <[email protected]> 3.0-0.47
- Update to latest trunk (2008-03-24)
* Thu Mar 20 2008 Christopher Aillon <[email protected]> 3.0-0.46
- Update to latest trunk (2008-03-20)
* Mon Mar 17 2008 Christopher Aillon <[email protected]> 3.0-0.45
- Update to latest trunk (2008-03-17)
* Mon Mar 17 2008 Christopher Aillon <[email protected]> 3.0-0.44
- Revert to trunk from the 15th to fix crashes on HTTPS sites
* Sun Mar 16 2008 Christopher Aillon <[email protected]> 3.0-0.43
- Update to latest trunk (2008-03-16)
* Sat Mar 15 2008 Christopher Aillon <[email protected]> 3.0-0.42
- Update to latest trunk (2008-03-15)
* Sat Mar 15 2008 Christopher Aillon <[email protected]> 3.0-0.41
- Avoid conflicts between gecko debuginfo packages
* Wed Mar 12 2008 Christopher Aillon <[email protected]> 3.0-0.40
- Update to latest trunk (2008-03-12)
* Tue Mar 11 2008 Christopher Aillon <[email protected]> 3.0-0.39
- Update to latest trunk (2008-03-11)
* Mon Mar 10 2008 Christopher Aillon <[email protected]> 3.0-0.38
- Update to latest trunk (2008-03-10)
* Sun Mar 9 2008 Christopher Aillon <[email protected]> 3.0-0.37
- Update to latest trunk (2008-03-09)
* Fri Mar 7 2008 Christopher Aillon <[email protected]> 3.0-0.beta4.36
- Update to latest trunk (2008-03-07)
* Thu Mar 6 2008 Christopher Aillon <[email protected]> 3.0-0.beta4.35
- Update to latest trunk (2008-03-06)
* Tue Mar 4 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.34
- Update to latest trunk (2008-03-04)
* Sun Mar 2 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.33
- Update to latest trunk (2008-03-02)
* Sat Mar 1 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.32
- Update to latest trunk (2008-03-01)
* Fri Feb 29 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.31
- Update to latest trunk (2008-02-29)
* Thu Feb 28 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.30
- Update to latest trunk (2008-02-28)
* Wed Feb 27 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.29
- Update to latest trunk (2008-02-27)
* Tue Feb 26 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.28
- Update to latest trunk (2008-02-26)
* Sat Feb 23 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.27
- Update to latest trunk (2008-02-23)
* Fri Feb 22 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.26
- Update to latest trunk (2008-02-22)
* Thu Feb 21 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.25
- Update to latest trunk (2008-02-21)
* Sun Feb 17 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.23
- Update to latest trunk (2008-02-17)
* Fri Feb 15 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.22
- Update to latest trunk (2008-02-15)
* Thu Feb 14 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.21
- Update to latest trunk (2008-02-14)
* Wed Feb 13 2008 Christopher Aillon <[email protected]> 3.0-0.beta3.20
- Update to latest trunk (2008-02-13)
* Mon Feb 11 2008 Christopher Aillon <[email protected]> 3.0-0.beta2.19
- Update to latest trunk (2008-02-11)
* Sun Feb 10 2008 Christopher Aillon <[email protected]> 3.0-0.beta2.18
- Update to latest trunk (2008-02-10)
* Sat Feb 9 2008 Christopher Aillon <[email protected]> 3.0-0.beta2.17
- Update to latest trunk (2008-02-09)
* Wed Feb 6 2008 Christopher Aillon <[email protected]> 3.0-0.beta2.16
- Update to latest trunk (2008-02-06)
* Wed Jan 30 2008 Martin Stransky <[email protected]> 3.0-0.beta2.15
- Update to latest trunk (2008-01-30)
- Backported an old laucher
* Mon Jan 28 2008 Martin Stransky <[email protected]> 3.0-0.beta2.13
- cleared starting scripts, removed useless parts
* Mon Jan 21 2008 Christopher Aillon <[email protected]> 3.0-0.beta2.12
- Update to latest trunk (2008-01-21)
* Tue Jan 15 2008 Christopher Aillon <[email protected]> 3.0-0.beta2.11
- Update to latest trunk (2008-01-15)
- Now with system extensions directory support
- Temporarily disable langpacks while we're on the bleeding edge
- Remove skeleton files; they are in xulrunner now
* Sun Jan 13 2008 Christopher Aillon <[email protected]> 3.0-0.beta2.10
- Update to latest trunk (20080113)
- Fix the default prefs, homepage, and useragent string
* Thu Jan 10 2008 Martin Stransky <[email protected]> 3.0-0.beta2.9
- rebuilt agains xulrunner-devel-unstable
* Mon Jan 7 2008 Martin Stransky <[email protected]> 3.0-0.beta2.8
- added ssl exception patch (mozbz #411037)
* Fri Jan 4 2008 Martin Stransky <[email protected]> 3.0-0.beta2.7
- removed broken langpack
- built against libxul
* Thu Jan 3 2008 Martin Stransky <[email protected]> 3.0-0.beta2.6
- updated to the latest trunk (20080103)
* Wed Jan 2 2008 Martin Stransky <[email protected]> 3.0-0.beta2.5
- added default fedora homepage
- updated a language pack (#427182)
* Mon Dec 31 2007 Christopher Aillon <[email protected]> 3.0-0.beta2.4
- Create and own /etc/skel/.mozilla
- No longer need add-gecko-provides
* Sat Dec 22 2007 Christopher Aillon <[email protected]> 3.0-0.beta2.3
- When there are both 32- and 64-bit versions of XPCOM installed on disk
make sure to load the correct one.
* Tue Dec 20 2007 Martin Stransky <[email protected]> 3.0-0.beta2.2
- fixed xulrunner dependency
* Tue Dec 18 2007 Martin Stransky <[email protected]> 3.0-0.beta2.1
- moved to XUL Runner and updated to 3.0b3pre
- removed firefox-devel package, gecko-libs is provided
by xulrunner-devel now.
* Thu Dec 13 2007 Christopher Aillon <[email protected]> 2.0.0.10-5
- Fix the getStartPage method to not return blank.
Patch by [email protected]
* Sun Dec 9 2007 Christopher Aillon <[email protected]> 2.0.0.10-4
- Fix up some rpmlint warnings
- Use only one pref for the homepage for now
- Drop some old patches and some obsolote Obsoletes
* Tue Dec 4 2007 Martin Stransky <[email protected]> 2.0.0.10-3
- fixed an icon location
* Mon Dec 3 2007 Martin Stransky <[email protected]> 2.0.0.10-2
- removed gre.conf file (most of the gtkmozembed applications
run with xulrunner now)
* Mon Nov 26 2007 Christopher Aillon <[email protected]> 2.0.0.10-1
- Update to 2.0.0.10
* Tue Nov 5 2007 Martin Stransky <[email protected]> 2.0.0.9-1
- updated to the latest upstream
* Wed Oct 31 2007 Martin Stransky <[email protected]> 2.0.0.8-3
- added mozilla-plugin-config to startup script
* Tue Oct 30 2007 Christopher Aillon <[email protected]> 2.0.0.8-2
- Tweak the default backspace behavior to be more in line with
GNOME convention, Mozilla upstream, and other distros
* Tue Oct 23 2007 Martin Stransky <[email protected]> 2.0.0.8-1
- updated to the latest upstream
- moved preference updates to build section
* Thu Oct 18 2007 Jesse Keating <[email protected]> - 2.0.0.6-12
- Disable the Firefox startup notification support for now.
* Mon Sep 26 2007 Martin Stransky <[email protected]> 2.0.0.6-11
- Fixed #242657 - firefox -g doesn't work
* Mon Sep 25 2007 Martin Stransky <[email protected]> 2.0.0.6-10
- Removed hardcoded MAX_PATH, PATH_MAX and MAXPATHLEN macros
* Mon Sep 24 2007 Christopher Aillon <[email protected]> 2.0.0.6-9
- Startup notification support
* Tue Sep 11 2007 Christopher Aillon <[email protected]> 2.0.0.6-8
- Fix crashes when using GTK+ themes containing a gtkrc which specify
GtkOptionMenu::indicator_size and GtkOptionMenu::indicator_spacing
* Mon Sep 10 2007 Martin Stransky <[email protected]> 2.0.0.6-7
- added fix for #246248 - firefox crashes when searching for word "do"
* Thu Sep 6 2007 Christopher Aillon <[email protected]> - 2.0.0.6-6
- Fix default page for all locales
* Wed Aug 29 2007 Christopher Aillon <[email protected]> - 2.0.0.6-5
- Tweak the default home page
* Fri Aug 24 2007 Adam Jackson <[email protected]> - 2.0.0.6-4
- Rebuild for build ID
* Mon Aug 13 2007 Christopher Aillon <[email protected]> 2.0.0.6-3
- Update the license tag
* Mon Aug 6 2007 Martin Stransky <[email protected]> 2.0.0.6-2
- unwrapped plugins moved to the old location
- removed plugin configuration utility
* Sat Aug 4 2007 Christopher Aillon <[email protected]> 2.0.0.6-1
- Update to 2.0.0.6
- Fix dnd support to/from gtk2 apps
- Fix installed permissions of *.png
* Mon Jul 23 2007 Martin Stransky <[email protected]> 2.0.0.5-3
- added nspluginwrapper support
* Wed Jul 18 2007 Kai Engert <[email protected]> - 2.0.0.5-2
- Update to 2.0.0.5
* Fri Jun 29 2007 Martin Stransky <[email protected]> 2.0.0.4-3
- backported pango patches from FC6 (1.5.0.12)
* Sun Jun 3 2007 Christopher Aillon <[email protected]> 2.0.0.4-2
- Properly clean up threads with newer NSPR
* Wed May 30 2007 Christopher Aillon <[email protected]> 2.0.0.4-1
- Final version
* Wed May 23 2007 Christopher Aillon <[email protected]> 2.0.0.4-0.rc3
- Update to 2.0.0.4 RC3
* Tue Apr 17 2007 Christopher Aillon <[email protected]> 2.0.0.3-4
- Fix permissions of the man page
* Tue Apr 10 2007 Christopher Aillon <[email protected]> 2.0.0.3-3
- Ensure initial homepage on all locales is our proper default
* Sun Mar 25 2007 Christopher Aillon <[email protected]> 2.0.0.3-2
- Fix the symlink to default bookmarks
- Use mktemp for temp dirs
* Tue Mar 20 2007 Christopher Aillon <[email protected]> 2.0.0.3-1
- Update to 2.0.0.3
* Tue Mar 20 2007 Christopher Aillon <[email protected]> 2.0.0.2-3
- Default bookmarks no longer live here; use system-bookmarks
* Mon Mar 12 2007 Christopher Aillon <[email protected]> 2.0.0.2-2
- Oops, define the variables I expect to use.
* Fri Feb 23 2007 Martin Stransky <[email protected]> 2.0.0.2-1
- Update to 2002
* Wed Feb 21 2007 David Woodhouse <[email protected]> 2.0.0.1-6
- Fix PPC64 runtime
- Fix firefox script to use 32-bit browser by default on PPC64 hardware
* Fri Feb 9 2007 Christopher Aillon <[email protected]> 2.0.0.1-5
- Start using the specified locale
* Tue Jan 30 2007 Christopher Aillon <[email protected]> 2.0.0.1-4
- Fix the DND implementation to not grab, so it works with new GTK+.
* Thu Jan 18 2007 Christopher Aillon <[email protected]> 2.0.0.1-3
- Remove the XLIB_SKIP_ARGB_VISUALS=1 workaround; the plugin got fixed.
* Fri Dec 22 2006 Christopher Aillon <[email protected]> 2.0.0.1-2
- Strip out some frequent warnings; they muddy up the build output
* Thu Dec 21 2006 Christopher Aillon <[email protected]> 2.0.0.1-1
- Update to 2001
* Fri Oct 27 2006 Christopher Aillon <[email protected]> 2.0-2
- Tweak the .desktop file
* Tue Oct 24 2006 Christopher Aillon <[email protected]> 2.0-1
- Update to 2.0
- Add patch from Behdad to fix pango printing.
* Wed Oct 11 2006 Christopher Aillon <[email protected]> 1.5.0.7-7
- Add virtual provides for gecko applications.
* Wed Oct 4 2006 Christopher Aillon <[email protected]> 1.5.0.7-6
- Bring the invisible character to parity with GTK+
* Tue Sep 26 2006 Christopher Aillon <[email protected]> 1.5.0.7-5
- Fix crash when changing gtk key theme
- Fix gtkmozembed window visibility
- Prevent UI freezes while changing GNOME theme
- Remove verbiage about pango; no longer required by upstream.
* Tue Sep 19 2006 Christopher Aillon <caillon@redhat/com> 1.5.0.7-4
- Arrrr! Add Obsoletes: mozilla to avoid GRE conflicts, me hearties!
* Mon Sep 18 2006 Christopher Aillon <[email protected]> 1.5.0.7-3
- Bring back the GRE files for embeddors
* Thu Sep 14 2006 Christopher Aillon <[email protected]> 1.5.0.7-2
- Update default bookmarks for FC6
* Wed Sep 13 2006 Christopher Aillon <[email protected]> 1.5.0.7-1
- Update to 1.5.0.7
* Thu Sep 7 2006 Christopher Aillon <[email protected]> 1.5.0.6-12
- Icon tweaks and minor spec-file variable cleanup: s/ffdir/mozappdir/g
* Wed Sep 6 2006 Christopher Aillon <[email protected]> 1.5.0.6-11
- Fix for cursor position in editor widgets by tagoh and behdad (#198759)
* Sun Sep 3 2006 Christopher Aillon <[email protected]> 1.5.0.6-10
- Enable GCC visibility
- export XLIB_SKIP_ARGB_VISUALS=1 as a temporary workaround to prevent
a broken Adobe/Macromedia Flash Player plugin taking the X server.
* Tue Aug 29 2006 Christopher Aillon <[email protected]> 1.5.0.6-9
- Build with -rpath (#161958)
* Mon Aug 28 2006 Behdad Esfahbod <[email protected]>
- Remove "Pango breaks MathML" from firefox.sh.in
* Mon Aug 28 2006 Christopher Aillon <[email protected]> 1.5.0.6-8
- Turn visibility back off again for now, as it still breaks the build.
* Sat Aug 26 2006 Behdad Esfahbod <[email protected]> 1.5.0.6-7
- Remove "Pango breaks MathML" from firefox-1.5-pango-about.patch
* Thu Aug 24 2006 Behdad Esfahbod <[email protected]> 1.5.0.6-6
- Remove debugging statement from firefox-1.5-pango-mathml.patch
* Wed Aug 23 2006 Christopher Aillon <[email protected]> 1.5.0.6-5
- Attempt to turn visibility back on since the GCC issues should have
been fixed.
* Tue Aug 22 2006 Christopher Aillon <[email protected]> 1.5.0.6-4
- Update NSS requires to workaround a bug introduced by NSS changes.
https://bugzilla.mozilla.org/show_bug.cgi?id=294542
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=201922
* Tue Aug 22 2006 Behdad Esfahbod <[email protected]>
- Add a better nopangoxft patch that doesn't depend on pangocairo
- Add firefox-1.5-pango-mathml.patch (bug 150393)
* Tue Aug 08 2006 Kai Engert <[email protected]> - 1.5.0.6-3
- Rebuild
* Thu Aug 03 2006 Kai Engert <[email protected]> - 1.5.0.6-2
- Update to 1.5.0.6
* Sun Jul 30 2006 Matthias Clasen <[email protected]> - 1.5.0.5-8
- Pass --libdir to configure
* Fri Jul 28 2006 Christopher Aillon <[email protected]> - 1.5.0.5-7
- Dereference links in %%install so the files get put in the
right place.
* Fri Jul 28 2006 Christopher Aillon <[email protected]> - 1.5.0.5-6
- Actually, those pkgconfig files really shouldn't be here as we use
system nss and nspr.
* Fri Jul 28 2006 Matthias Clasen <[email protected]> - 1.5.0.5-5
- Add more pkgconfig files
* Thu Jul 27 2006 Christopher Aillon <[email protected]> - 1.5.0.5-4
- Add pkgconfig files
* Thu Jul 27 2006 Christopher Aillon <[email protected]> - 1.5.0.5-3
- Don't strip provides when building the devel package
* Wed Jul 26 2006 Christopher Aillon <[email protected]> - 1.5.0.5-2
- Update to 1.5.0.5
* Mon Jul 24 2006 Christopher Aillon <[email protected]> - 1.5.0.4-4
- Ugh:
- Mozilla the platform is deprecated
- XULrunner has been promised for a while but is still not 1.0
- Ship a firefox-devel for now as we need a devel platform.
- The plan is to kill firefox-devel when xulrunner 1.0 ships.
- Clean up the files list a little bit.
* Thu Jun 15 2006 Kai Engert <[email protected]> - 1.5.0.4-3
- Force "gmake -j1" on ppc ppc64 s390 s390x
* Mon Jun 12 2006 Kai Engert <[email protected]> - 1.5.0.4-2
- Firefox 1.5.0.4
* Thu May 4 2006 Christopher Aillon <[email protected]> - 1.5.0.3-2
- Firefox 1.5.0.3
* Wed Apr 19 2006 Christopher Aillon <[email protected]> - 1.5.0.2-4
- Really drop the broken langpacks this time.
* Tue Apr 18 2006 Christopher Aillon <[email protected]> - 1.5.0.2-3
- Drop some broken langpacks
* Thu Apr 13 2006 Christopher Aillon <[email protected]> - 1.5.0.2-2
- Firefox 1.5.0.2
* Sat Mar 11 2006 Christopher Aillon <[email protected]> - 1.5.0.1-9
- Add a notice to the about dialog denoting this is a pango enabled build.
- Tweak the user agent denoting this is a pango enabled build.
* Mon Mar 6 2006 Warren Togami <[email protected]> - 1.5.0.1-7
- make links point to the correct release
* Mon Mar 6 2006 Ray Strode <[email protected]> - 1.5.0.1-6
- Add new bookmarks file from Warren (bug 182386)
* Tue Feb 28 2006 Karsten Hopp <[email protected]>
- add buildrequires libXt-devel for X11/Intrinsic.h, X11/Shell.h
* Mon Feb 20 2006 Christopher Aillon <[email protected]> - 1.5.0.1-5
- Rebuild
* Mon Feb 20 2006 Christopher Aillon <[email protected]> - 1.5.0.1-4
- Ensure our wrapper handles URLs with commas/spaces (Ilya Konstantinov)
- Fix a pango typo
* Fri Feb 10 2006 Christopher Aillon <[email protected]> - 1.5.0.1-3
- Improve the langpack install stuff
- Fix up dumpstack.patch to match the finalized change
* Tue Feb 7 2006 Jesse Keating <[email protected]> - 1.5.0.1-2.1
- rebuilt for new gcc4.1 snapshot and glibc changes
* Wed Feb 1 2006 Christopher Aillon <[email protected]> - 1.5.0.1-2
- Update language packs to 1.5.0.1
- Add dumpstack.patch
* Wed Feb 1 2006 Christopher Aillon <[email protected]> - 1.5.0.1-1
- Update to 1.5.0.1
* Thu Jan 26 2006 Christopher Aillon <[email protected]> - 1.5-5
- Ship langpacks again from upstream
- Stop providing MozillaFirebird and mozilla-firebird
* Tue Jan 3 2006 Christopher Aillon <[email protected]> - 1.5-4
- Looks like we can build ppc64 again. Happy New Year!
* Fri Dec 16 2005 Christopher Aillon <[email protected]> - 1.5-3
- Once again, disable ppc64 because of a new issue.
See https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=175944
* Thu Dec 15 2005 Christopher Aillon <[email protected]> - 1.5-2
- Use the system NSS libraries
- Build on ppc64
* Fri Dec 09 2005 Jesse Keating <[email protected]>
- rebuilt
* Tue Nov 29 2005 Christopher Aillon <[email protected]> - 1.5-1
- Update to Firefox 1.5
* Mon Nov 28 2005 Christopher Aillon <[email protected]> - 1.5-0.5.1.rc3
- Fix issue with popup dialogs and other actions causing lockups
* Fri Nov 18 2005 Christopher Aillon <[email protected]> - 1.5-0.5.0.rc3
- Update to 1.5 rc3
* Thu Nov 3 2005 Christopher Aillon <[email protected]> - 1.5-0.5.0.rc1
- Update to 1.5 rc1
- Clean up the default bookmarks