source: projects/specs/trunk/t/thunderbird/thunderbird-vl.spec @ 9260

Revision 9260, 32.9 KB checked in by Takemikaduchi, 9 years ago (diff)

thunderbird: new upstream release
others: rebuild with libpng12 or update

Line 
1# do not include minor version number in MOZILLA_FIVE_HOME
2%define tbmajor 31.4.0
3#%define tbversion %{tbmajor}.10
4%define tbversion %{tbmajor}
5%define tbrelease 1%{?_dist_release}
6
7# The tarball is pretty inconsistent with directory structure.
8# Sometimes there is a top level directory.  That goes here.
9#
10# IMPORTANT: If there is no top level directory, this should be
11# set to the cwd, ie: '.'
12#%define tarballdir .
13%define tarballdir comm-esr31
14
15%define mozappdir %{_libdir}/%{name}-%{version_internal}
16%define moz_objdir objdir-tb
17%define version_internal %{tbmajor}
18%define thunderbird_app_id \{3550f703-e582-4d05-9a08-453d09bdfdc6\}
19
20%define desktop_file_utils_version 0.6
21%define nspr_version 4.9
22%define nss_version 3.13.2
23%define cairo_version 1.6.0
24%define freetype_version 2.1.9
25%define sqlite_version 3.6.14
26%define libnotify_version 0.4
27
28%define build_vine7 0
29%define build_vine6 0
30
31%if "%{?_dist_release}" >= "vl7"
32%define build_vine7 1
33%endif
34%if "%{?_dist_release}" == "vl6"
35%define build_vine6 1
36%endif
37
38Summary:        Thunderbird Community Edition, Mail/newsgroup client
39Summary(ja):    Thunderbirdコミュニティエディション, メール・ニュースクライアント
40Name:           thunderbird
41Version:        %{tbversion}
42Release:        %{tbrelease}
43URL:            http://www.mozilla.org/projects/thunderbird/
44License:        MPL
45Group:          Applications/Internet
46
47Source0:        ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/%{tbversion}/source/thunderbird-%{version}.source.tar.bz2
48Source1:        ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/%{tbversion}/linux-x86_64/xpi/ja.xpi
49Source1010:     mozconfig-thunderbird-vine6
50Source1020:     mozconfig-thunderbird-vine7
51Source12:       thunderbird-vine-default-prefs.js
52Source20:       thunderbird.desktop
53Source21:       thunderbird.vine.sh.in
54Source30:       thunderbird-open-browser.sh
55Source40:       thunderbird-unofficial-brandig-tb-brand.properties
56Source41:       thunderbird-unofficial-brandig-tb-brand.dtd
57Source42:       thunderbird-unofficial-brandig-tb-ja-brand.properties
58Source43:       thunderbird-unofficial-brandig-tb-ja-brand.dtd
59Source100:      find-external-requires
60
61# locale sources
62#%define MOZ_BUILD_LOCALES "ja"
63# get from mercurial repository with command,
64# mkdir l10n
65# hg clone http://hg.mozilla.org/releases/l10n-mozilla-1.9.2/ja l10n/ja
66#Source1000:     thunderbird-%{tbversion}-ja.tar.bz2
67
68
69# upstream patch
70
71# Fix for version issues
72Patch0:         thunderbird-version.patch
73
74# customization patches
75Patch1:         firefox-1.5-default-a4-paper.patch
76
77
78# Linux specific
79Patch100:       thunderbird-31.0-enable-addons.patch
80
81# Vine Patch
82Patch2000:      thunderbird-24.0-vine6.patch
83Patch2001:      thunderbird-31.0-client_mk_objdir.patch
84
85BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
86BuildRequires:  pango-devel
87BuildRequires:  cairo-devel >= %{cairo_version}
88%if %{build_vine7}
89#BuildRequires: nspr-devel >= %{nspr_version}
90#BuildRequires: nss-devel >= %{nss_version}
91BuildRequires:  python-devel
92%endif
93%if %{build_vine6}
94BuildRequires:  python27-devel
95%endif
96BuildRequires:  gstreamer-devel
97BuildRequires:  gstreamer-plugins-base-devel
98BuildRequires:  pulseaudio-libs-devel
99BuildRequires:  pixman-devel
100BuildRequires:  libpng-devel
101BuildRequires:  libjpeg-turbo-devel
102BuildRequires:  gtk2-devel
103BuildRequires:  zlib-devel, gzip, zip, unzip
104BuildRequires:  libIDL-devel
105BuildRequires:  freetype2-devel >= %{freetype_version}
106## disabled libnotify support
107## see related bug: https://bugzilla.mozilla.org/show_bug.cgi?id=478463
108BuildRequires:  libnotify-devel >= %{libnotify_version}
109BuildRequires:  bzip2-devel
110#BuildRequires: gnome-vfs2-devel
111BuildRequires:  libgnome-devel
112#BuildRequires:  libgnomeui-devel
113BuildRequires:  krb5-devel
114BuildRequires:  pango-devel
115BuildRequires:  libXt-devel
116BuildRequires:  libXrender-devel
117BuildRequires:  curl-devel
118# hunspell is in plus category for vine
119#BuildRequires: hunspell-devel
120%if %{build_vine7}
121BuildRequires:  sqlite3-devel >= %{sqlite_version}
122%endif
123BuildRequires:  startup-notification-devel
124BuildRequires:  desktop-file-utils
125BuildRequires:  alsa-lib-devel
126BuildRequires:  yasm
127BuildRequires:  autoconf213
128%if %{build_vine7}
129Requires:       sqlite3 >= %{sqlite_version}
130%endif
131Requires(post):         desktop-file-utils >= %{desktop_file_utils_version}
132Requires(postun):       desktop-file-utils >= %{desktop_file_utils_version}
133
134Obsoletes:      MozillaThunderbird
135Provides:       MozillaThunderbird = %{version}
136
137Vendor:         Project Vine
138Distribution:   Vine Linux
139Packager:       daisuke, ryoichi, kazutaka, Takemikaduchi
140
141AutoProv: 0
142%define _use_internal_dependency_generator 0
143%define __find_requires %{SOURCE100}
144
145%description
146Thunderbird is a standalone mail and newsgroup client.
147
148%description -l ja
149Thunderbird はスタンドアローンのメールおよびニュースクライアントです。
150
151#===============================================================================
152
153%prep
154%setup -q %{name}-%{version} -c
155cd %{tarballdir}
156
157# Fix for version issue
158sed -e 's/__RPM_VERSION_INTERNAL__/%{version_internal}/' %{P:%%PATCH0} \
159    > version.patch
160%{__patch} -p1 -b --suffix .version --fuzz=0 < version.patch
161
162cd mozilla
163%patch1 -p1 -b .default-a4
164
165cd -
166%{__rm} -f .mozconfig
167%if %{build_vine6}
168%{__cp} %{SOURCE1010} .mozconfig
169%endif
170%if %{build_vine7}
171%{__cp} %{SOURCE1020} .mozconfig
172%endif
173
174# setup unofficial branding name
175%{__cp} %{SOURCE40} mail/branding/aurora/locales/en-US/brand.properties
176%{__cp} %{SOURCE41} mail/branding/aurora/locales/en-US/brand.dtd
177
178%patch100 -p1 -b .addons
179%if %{build_vine6}
180%patch2000 -p1 -b .vine
181%endif
182%patch2001 -p1 -b .vine
183
184#===============================================================================
185
186%build
187cd %{tarballdir}
188autoconf-2.13
189
190INTERNAL_GECKO=%{version_internal}
191MOZ_APP_DIR=%{mozappdir}
192
193
194#%if %{build_vine7}
195#MOZ_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | %__sed -e 's/-Wall//')
196#%else
197#%ifarch x86_64
198##MOZ_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | %__sed -e 's/-O2/-Os/' -e 's/-Wall//')
199#MOZ_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | %__sed -e 's/-O2//' -e 's/-Wall//')
200#%else
201#MOZ_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | %__sed -e 's/-Wall//')
202#%endif
203#%endif
204
205MOZ_OPT_FLAGS=$(echo "$RPM_OPT_FLAGS" | \
206                                %{__sed} -e 's/-Wall//')
207export RPM_OPT_FLAGS=$MOZ_OPT_FLAGS
208export CFLAGS="$RPM_OPT_FLAGS"
209#export CFLAGS=""
210export CXXFLAGS="$CFLAGS"
211export MOZ_APP_DISPLAYNAME="Tb for Vine Linux"
212
213export PREFIX='%{_prefix}'
214export LIBDIR='%{_libdir}'
215
216MOZ_SMP_FLAGS=-j1
217# On x86 architectures, Mozilla can build up to 4 jobs at once in parallel,
218# however builds tend to fail on other arches when building in parallel.
219%ifarch %{ix86} x86_64
220[ -z "$RPM_BUILD_NCPUS" ] && \
221     RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
222[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
223[ "$RPM_BUILD_NCPUS" -ge 4 ] && MOZ_SMP_FLAGS=-j4
224[ "$RPM_BUILD_NCPUS" -ge 8 ] && MOZ_SMP_FLAGS=-j8
225 %endif
226
227export LDFLAGS="-Wl,-rpath,%{ffdir}"
228%__make -f client.mk build STRIP="/bin/true" \
229                           MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS"
230
231## build locales
232#LOCALEDIRS=`find . -print | grep 'locales/Makefile$' | \
233#            sed -e 's|\./\(.*\)/locales/.*|\1|g'`
234#for dir in $LOCALEDIRS
235#do
236#  for lang in %{MOZ_BUILD_LOCALES} ; do
237#    make -C $dir/locales AB_CD=$lang
238#  done
239#done
240
241#===============================================================================
242
243%install
244%{__rm} -rf $RPM_BUILD_ROOT
245cd %{tarballdir}
246
247INTERNAL_GECKO=%{version_internal}
248
249INTERNAL_APP_NAME=%{name}-${INTERNAL_GECKO}
250MOZ_APP_DIR=%{_libdir}/${INTERNAL_APP_NAME}
251
252cd %{moz_objdir}
253DESTDIR=$RPM_BUILD_ROOT make install
254
255# install unofficial icons
256cd -
257
258%{__mkdir_p} $RPM_BUILD_ROOT%{mozappdir}/icons
259%{__cp} mail/branding/aurora/mailicon16.png \
260        $RPM_BUILD_ROOT/%{mozappdir}/icons/
261%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps
262%{__cp} mail/branding/aurora/mailicon16.png \
263        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/thunderbird.png
264%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps
265%{__cp} mail/branding/aurora/mailicon22.png \
266        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps/thunderbird.png
267%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps
268%{__cp} mail/branding/aurora/mailicon24.png \
269        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps/thunderbird.png
270%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps
271%{__cp} mail/branding/aurora/mailicon32.png \
272        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/thunderbird.png
273%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps
274%{__cp} mail/branding/aurora/mailicon48.png \
275        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/thunderbird.png
276%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps
277%{__cp} mail/branding/aurora/mailicon256.png \
278        $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps/thunderbird.png
279
280desktop-file-install --vendor vine \
281  --dir $RPM_BUILD_ROOT%{_datadir}/applications %{SOURCE20}
282
283# set up the thunderbird start script
284rm -f $RPM_BUILD_ROOT/%{_bindir}/thunderbird
285%{__cat} %{SOURCE21} | %{__sed} -e 's,TBDIR,%{mozappdir},g' > \
286  $RPM_BUILD_ROOT%{_bindir}/thunderbird
287%{__chmod} 755 $RPM_BUILD_ROOT/%{_bindir}/thunderbird
288
289install -Dm755 %{SOURCE30} $RPM_BUILD_ROOT/%{mozappdir}/open-browser.sh
290%{__sed} -i -e 's|LIBDIR|%{_libdir}|g' $RPM_BUILD_ROOT/%{mozappdir}/open-browser.sh
291
292%{__cat} %{SOURCE12} | %{__sed} -e 's,THUNDERBIRD_RPM_VR,%{version}-%{release},g' \
293                                -e 's,COMMAND,%{mozappdir}/open-browser.sh,g' > \
294        $RPM_BUILD_ROOT/vine-default-prefs
295%{__install} -D $RPM_BUILD_ROOT/vine-default-prefs $RPM_BUILD_ROOT/%{mozappdir}/greprefs/all-vine.js
296%{__install} -D $RPM_BUILD_ROOT/vine-default-prefs $RPM_BUILD_ROOT/%{mozappdir}/defaults/pref/all-vine.js
297%{__rm} $RPM_BUILD_ROOT/vine-default-prefs
298
299%{__rm} -f $RPM_BUILD_ROOT%{_bindir}/thunderbird-config
300
301# own mozilla plugin dir (#135050)
302%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins
303
304# own extension directories
305%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/mozilla/extensions/%{thunderbird_app_id}
306%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/extensions/%{thunderbird_app_id}
307
308# install locales
309#for lang in %{MOZ_BUILD_LOCALES} ; do
310#  %{__install} -p -D -m 664 %{moz_objdir}/objdir-tb/mozilla/dist/bin/chrome/$lang.{jar,manifest} $RPM_BUILD_ROOT%{mozappdir}/chrome/
311#done
312
313# install ja.xpi to langpacks directory
314#%{__mkdir_p} $RPM_BUILD_ROOT/%{mozappdir}/langpacks/langpack-ja@thunderbird.mozilla.org
315#unzip %{SOURCE1} -d $RPM_BUILD_ROOT/%{mozappdir}/langpacks/langpack-ja@thunderbird.mozilla.org
316# also setup unofficial branding name
317#%{__cp} %{SOURCE42} $RPM_BUILD_ROOT/%{mozappdir}/langpacks/langpack-ja@thunderbird.mozilla.org/chrome/ja/locale/ja/branding/brand.properties
318#%{__cp} %{SOURCE43} $RPM_BUILD_ROOT/%{mozappdir}/langpacks/langpack-ja@thunderbird.mozilla.org/chrome/ja/locale/ja/branding/brand.dtd
319
320# install ja.xpi to langpack file
321%{__mkdir_p} lang_tmp
322unzip %{SOURCE1} -d lang_tmp
323# also setup unofficial branding name
324%{__cp} %{SOURCE42} lang_tmp/chrome/ja/locale/ja/branding/brand.properties
325%{__cp} %{SOURCE43} lang_tmp/chrome/ja/locale/ja/branding/brand.dtd
326
327%{__mkdir_p} $RPM_BUILD_ROOT/%{mozappdir}/langpacks
328cd lang_tmp; \
329zip -r $RPM_BUILD_ROOT%{mozappdir}/langpacks/langpack-ja@thunderbird.mozilla.org.xpi chrome chrome.manifest install.rdf
330
331
332%clean
333%{__rm} -rf $RPM_BUILD_ROOT
334
335#===============================================================================
336
337%post
338update-desktop-database &> /dev/null || :
339touch --no-create %{_datadir}/icons/hicolor
340if [ -x %{_bindir}/gtk-update-icon-cache ]; then
341  %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
342fi
343
344%postun
345update-desktop-database &> /dev/null || :
346touch --no-create %{_datadir}/icons/hicolor
347if [ -x %{_bindir}/gtk-update-icon-cache ]; then
348  %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
349fi
350
351
352%files
353%defattr(-,root,root,-)
354%attr(755,root,root) %{_bindir}/thunderbird
355%attr(644,root,root) %{_datadir}/applications/vine-thunderbird.desktop
356%{_datadir}/icons/hicolor/16x16/apps/thunderbird.png
357%{_datadir}/icons/hicolor/22x22/apps/thunderbird.png
358%{_datadir}/icons/hicolor/24x24/apps/thunderbird.png
359%{_datadir}/icons/hicolor/256x256/apps/thunderbird.png
360%{_datadir}/icons/hicolor/32x32/apps/thunderbird.png
361%{_datadir}/icons/hicolor/48x48/apps/thunderbird.png
362%{mozappdir}
363#%{_libdir}/mozilla
364%exclude %{_libdir}/%{name}-%{version_internal}/removed-files
365%exclude %{_datadir}/idl/%{name}-%{version_internal}
366%exclude %{_includedir}/%{name}-%{version_internal}
367%exclude %{_libdir}/%{name}-devel-%{version_internal}
368
369#===============================================================================
370
371%changelog
372* Wed Jan 14 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 31.4.0-1
373- new upstream release
374
375* Sat Jan 03 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 31.3.0-1
376- new upstream release
377
378* Sun Nov 16 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 31.2.0-1
379- new upstream release
380
381* Thu Sep 25 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 31.1.2-1
382- new upstream release
383
384* Sun Sep 14 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 31.1.1-1
385- new upstream release
386
387* Tue Sep 02 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 31.1.0-1
388- new upstream release
389
390* Thu Jul 31 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 31.0-1
391- new upstream release
392- add BuildRequires: pulseaudio-libs-devel
393- update Patch100 (thunderbird-31.0-enable-addons.patch)
394- update Source1020 (mozconfig-thunderbird-vine7)
395- add Patch2001 (thunderbird-31.0-client_mk_objdir.patch)
396
397* Wed Jun 11 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 24.6.0-1
398- new upstream release
399
400* Sat May 03 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 24.5.0-1
401- new upstream release
402
403* Sun Mar 23 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 24.4.0-1
404- new upstream release
405
406* Fri Feb 07 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 24.3.0-1
407- new upstream release
408
409* Sat Jan 11 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 24.2.0-1
410- new upstream release
411
412* Sun Dec 01 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 24.1.1-1
413- new upstream release
414
415* Tue Nov 12 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 24.1.0-1
416- new upstream release
417
418* Sat Sep 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 24.0-1
419- new upstream release
420- remove BuildRequires: nspr-devel, nss-devel
421- add BuildRequires: gstreamer-devel, gstreamer-plugins-base-devel
422- add Patch2000 (thunderbird-24.0-vine6.patch)
423
424* Tue Aug 06 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 17.0.8-1
425- new upstream release
426
427* Mon Jul 15 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 17.0.7-1
428- new upstream release
429
430* Sun May 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 17.0.6-1
431- new upstream release
432
433* Wed Mar 20 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 17.0.4-1
434- new upstream release
435
436* Sat Mar 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 17.0.3-1
437- new upstream release
438
439* Wed Jan 09 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 17.0.2-1
440- new upstream release
441- update Source1010,1020
442- fix %% build
443
444* Wed Nov 21 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 17.0-1
445- new upstream release
446
447* Sun Nov 04 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 16.0.2-2
448- use --disable-install-strip instead of --enable-install-strip
449- add --disable-debug-symbols
450
451* Tue Oct 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 16.0.2-1
452- new upstream release
453
454* Fri Oct 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 16.0.1-1
455- new upstream release
456
457* Thu Oct 11 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 16.0-1
458- new upstream release
459
460* Tue Oct 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 15.0.1-2
461- use --enable-optimize instead of --enable-optimize="\$RPM_OPT_FLAGS"
462
463* Sun Sep 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 15.0.1-1
464- new upstream release
465
466* Wed Aug 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 15.0-1
467- new upstream release
468- add BuildRequires: python-devel (Vine6 only)
469- remove build rule of Vine5
470
471* Wed Jul 18 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 14.0-1
472- new upstream release
473- remove Patch2 (thunderbird-13.0-buildfix-nspr.patch)
474
475* Sat Jun 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 13.0.1-1
476- new upstream release
477
478* Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 13.0-1
479- new upstream release
480- add Patch2 (thunderbird-13.0-buildfix-nspr.patch)
481
482* Tue May 01 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 12.0.1-1
483- new upstream release
484
485* Sat Apr 28 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 12.0-1
486- new upstream release
487- update Source1030 (mozconfig-thunderbird-vine7)
488
489* Sun Mar 18 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 11.0-1
490- new upstream release
491- update Source1020 (mozconfig-thunderbird-vine6)
492
493* Fri Feb 17 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.0.2-1
494- new upstream release
495
496* Mon Feb 13 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.0.1-1
497- new upstream release
498
499* Wed Feb 01 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.0-1
500- new upstream release
501
502* Sat Dec 24 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 9.0.1-1
503- new upstream release
504- update Source1
505
506* Fri Dec 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 9.0-1
507- new upstream release
508- update Source1
509- add Source1030 (mozconfig-thunderbird-vine7)
510- add Patch100 (thunderbird-9.0-enable-addons.patch)
511
512* Thu Nov 10 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 8.0-2
513- fix %%version_internal
514
515* Wed Nov 09 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 8.0-1
516- new upstream release
517- update Source1
518
519* Sat Oct 01 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.0.1-1
520- new upstream release
521- update Source1,21,1010,1020
522
523* Wed Aug 17 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.0-3
524- rebuild with libnotify-0.7
525
526* Wed Jul 20 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0-2
527- enable-install-strip
528
529* Wed Jul 06 2011 Kazutaka HARADA <kazutaka@vinelinux.org> 5.0-1
530- new upstream release
531- drop obsolete patch and renumber patch26 to patch1
532- add BuildRequires: yasm
533- enable libnotify support
534- add --disable-updater and --disable-installer to mozconfig
535- use ja.xpi instead of l10n source
536- update Source21: add step to setup langpack plugin
537- update Source20: add japanese translation
538- add Source42 & Source43 for localized branding
539- add --disable-system-cairo and ac_add_options --disable-libjpeg-turbo
540  for mozconfig-thunderbird-vine5
541
542* Mon May 16 2011 Kazutaka HARADA <kazutaka@vinelinux.org> 3.1.10-1
543- new upstream release with security fix
544
545* Wed Dec 22 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 3.1.7-1
546- new upstream release with security fix
547
548* Fri Oct 29 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 3.1.6-1
549- new upstream release with security fix
550
551* Thu Oct 21 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 3.1.5-1
552- new upstream release with security fix
553- add patch5 to fix build failure
554
555* Sun Sep 19 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 3.1.4-1
556- new upstream release
557
558* Thu Sep 09 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 3.1.3-1
559- new upstream release with security fix
560- add Patch1030 to fix compilation error
561
562* Sat Aug 07 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 3.1.2-2
563- change mozconfig (Source1030 & 1040): add --enable-jsd
564
565* Fri Aug 06 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 3.1.2-1
566- new upstream release
567
568* Wed Jul 21 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 3.1.1-1
569- new upstream release with security fix
570- add Patch0 from fedora development: fix version issue
571- remove BuildRequires: hunspell-devel
572- update mozconfig (Source1030 & Source1040): set --disable-system-hunspell
573
574* Sat Jul 03 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 3.1-2
575- add BuildRequires: alsa-lib-devel
576- remove BuildRequires: libnotify-devel
577  (workaround for known bug)
578- update mozconfig to add --disable-libnotify option
579
580* Tue Jun 29 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 3.1-1
581- new upstream release
582- update spec entirely
583- import patches from fedora (Patch1, 2 & 4)
584- drop outdated patches (Patch22, 24)
585- update Sources:
586  - mozconfig (Source1030 & Source1040)
587  - default prefs.js (Source12)
588  - unofficial branding (Source40 & Source41)
589  - japanese translation (Source1000)
590- update Patch1000 (sjis-alias)
591
592* Mon Aug 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.23-1
593- new upstream release
594
595* Wed Jul 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.22-1
596- new upstream release
597
598* Wed May 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.21-3
599- don't install official branding logos
600
601* Mon May 04 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.0.0.21-2
602- add necessary icons in %%{tbdir}/chrome/icons/default
603- add Packager tag
604
605* Fri Mar 20 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.0.0.21-1
606- new upstream release
607
608* Sun Jan 25 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.0.0.19-1
609- new upstream release
610
611* Sun Nov 23 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.0.0.18-1
612- new upstream release
613
614* Wed Apr 30 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.14-1
615- new upstream release
616
617* Sun Aug  5 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.0.0.6-0vl2
618- rebuilt for VineSeed
619
620* Sun Aug  5 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.0.0.6-0vl1
621- new upstream release
622
623* Sat Jul 21 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.0.0.5-0vl1
624- new upstream release
625- built for Vine Linux 4.x
626- dropped Patch1020 (merged into upstream)
627
628* Sun May 20 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.0.0.0-0vl4
629- added Patch1020 for workaround gcc visibility hidden bugs
630
631* Sat May 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.0-0vl3
632- build with new environment/toolchain
633- add build options to build with external nss/nspr libraries
634    ac_add_options --with-system-nspr
635    ac_add_options --with-system-nss
636
637* Mon Apr 23 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.0-0vl2
638- new upstream release
639
640* Mon Oct 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.7-0vl2
641- new upstream release
642
643* Fri Jul 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.5-0vl2
644- new upstream release
645
646* Fri Jun 09 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.4-0vl1
647- new upstream release
648
649* Fri Apr 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.2-0vl1
650- new upstream release
651- merge changes from firefox
652  - use thunderbird-1.5 for MOZILLA_FIVE_HOME instead of thunderbird-1.5.0.2
653
654* Tue Mar 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl2
655- new upstream release
656- build en-US locale
657- merge changes from firefox
658  - add upstream patches
659  - disable pango rendering by default
660    (workaround fix slow rendering in some page)
661
662* Thu Dec 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl0.rc2
663- initial build for Vine Linux based on FC package
664- update to 1.5RC2
665
666* Mon Nov 28 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.1.rc1
667- Fix issue with popup dialogs and other actions causing lockups
668
669* Sat Nov  5 2005 Christopher Aillon <caillon@redhat.com> 1.5-0.5.0.rc1
670- Update to 1.5 rc1
671
672* Sat Oct  8 2005 Christopher Aillon <caillon@redhat.com> 1.5-0.5.0.beta2
673- Update to 1.5 beta2
674
675* Wed Sep 28 2005 Christopher Aillon <caillon@redhat.com> 1.5-0.5.0.beta1
676- Update to 1.5 beta1
677- Bring the install phase of the spec file up to speed
678
679* Sun Aug 14 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-4
680- Rebuild
681
682* Sat Aug  6 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-3
683- Add patch to make file chooser dialog modal
684
685* Fri Jul 22 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-2
686- Update to 1.0.6
687
688* Mon Jul 18 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-0.1.fc5
689- 1.0.6 Release Candidate
690
691* Fri Jul 15 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-8
692- Use system NSPR
693- Fix crash on 64bit platforms (#160330)
694
695* Thu Jun 23 2005 Kristian H淡gsberg <krh@redhat.com>  1.0.2-7
696- Add firefox-1.0-pango-cairo.patch to get rid of the last few Xft
697  references, fixing the "no fonts" problem.
698
699* Fri May 13 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-6
700- Change the Exec line in the desktop file to `thunderbird`
701
702* Fri May 13 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-5
703- Update pango patche, MOZ_DISABLE_PANGO now works as advertised.
704
705* Mon May  9 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-4
706- Add temporary workaround to not create files in the user's $HOME (#149664)
707
708* Wed May  4 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-3
709- Don't have downloads "disappear" when downloading to desktop (#139015)
710- Fix for some more cursor issues in textareas (149991, 150002, 152089)
711- Add upstream patch to fix bidi justification of pango
712- Add patch to fix launching of helper applications
713- Add patch to properly link against libgfxshared_s.a
714- Fix multilib conflicts
715
716* Wed Apr 27 2005 Warren Togami <wtogami@redhat.com>
717- correct confusing PANGO vars in startup script
718
719* Wed Mar 23 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-1
720- Thunderbird 1.0.2
721
722* Tue Mar  8 2005 Christopher Aillon <caillon@redhat.com> 1.0-5
723- Add patch to compile against new fortified glibc macros
724
725* Sat Mar  5 2005 Christopher Aillon <caillon@redhat.com> 1.0-4
726- Rebuild against GCC 4.0
727- Add execshield patches
728- Minor specfile cleanup
729
730* Mon Dec 20 2004 Christopher Aillon <caillon@redhat.com> 1.0-3
731- Rebuild
732
733* Thu Dec 16 2004 Christopher Aillon <caillon@redhat.com> 1.0-2
734- Add RPM version to useragent
735
736* Thu Dec 16 2004 Christopher Blizzard <blizzard@redhat.com>
737- Port over pango patches from firefox
738
739* Wed Dec  8 2004 Christopher Aillon <caillon@redhat.com> 1.0-1
740- Thunderbird 1.0
741
742* Mon Dec  6 2004 Christopher Aillon <caillon@redhat.com> 1.0-0.rc1.1
743- Fix advanced prefs
744
745* Fri Dec  3 2004 Christopher Aillon <caillon@redhat.com>
746- Make this run on s390(x) now for real
747
748* Wed Dec  1 2004 Christopher Aillon <caillon@redhat.com> 1.0-0.rc1.0
749- Update to 1.0 rc1
750
751* Fri Nov 19 2004 Christopher Aillon <caillon@redhat.com>
752- Add patches to build and run on s390(x)
753
754* Thu Nov 11 2004 Christopher Aillon <caillon@redhat.com> 0.9.0-2
755- Rebuild to fix file chooser
756
757* Fri Nov  5 2004 Christopher Aillon <caillon@redhat.com> 0.9.0-1
758- Update to 0.9
759
760* Fri Oct 22 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-10
761- Prevent inlining of stack direction detection (#135255)
762
763* Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-9
764- More file chooser fixes (same as in firefox)
765- Fix for upstream 28327.
766
767* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0.8.0-8
768- Update the pango patch
769
770* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0.8.0-8
771- Pull over patches from firefox build:
772  - disable default application dialog
773  - don't include software update since it doesn't work
774  - make external app support work
775
776* Thu Oct 14 2004 Christopher Blizzard <blizzard@redhat.com> 0.8.0-7
777- Use pango for rendering
778
779* Tue Oct 12 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-6
780- Fix for 64 bit crash at startup (b.m.o #256603)
781
782* Sat Oct  9 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-5
783- Add patches to fix xremote (#135036)
784
785* Fri Oct  8 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-4
786- Add patch to fix button focus issues (#133507)
787- Add patch for fix IMAP race issues (bmo #246439)
788
789* Fri Oct  1 2004 Bill Nottingham <notting@redhat.com> 0.8.0-3
790- filter out library Provides: and internal Requires:
791
792* Tue Sep 28 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-2
793- Backport the GTK+ File Chooser.
794- Add fix for JS math on x86_64 systems
795- Add pkgconfig patch
796
797* Thu Sep 16 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-1
798- Update to 0.8.0
799- Remove enigmail
800- Update BuildRequires
801- Remove gcc34 and extension manager patches -- they are upstreamed.
802- Fix for gnome-vfs2 error at component registration
803
804* Fri Sep 03 2004 Christopher Aillon <caillon@redhat.com> 0.7.3-5
805- Build with --disable-xprint
806
807* Wed Sep 01 2004 David Hill <djh[at]ii.net> 0.7.3-4
808- remove all Xvfb-related hacks
809
810* Wed Sep 01 2004 Warren Togami <wtogami@redhat.com>
811- actually apply psfonts
812- add mozilla gnome-uriloader patch to prevent build failure
813
814* Tue Aug 31 2004 Warren Togami <wtogami@redhat.com> 0.7.3-3
815- rawhide import
816- apply NetBSD's freetype 2.1.8 patch
817- apply psfonts patch
818- remove BR on /usr/bin/ex, breaks beehive
819
820* Tue Aug 31 2004 David Hill <djh[at]ii.net> 0.7.3-0.fdr.2
821- oops, fix %%install
822
823* Thu Aug 26 2004 David Hill <djh[at]ii.net> 0.7.3-0.fdr.1
824- update to Thunderbird 0.7.3 and Enigmail 0.85.0
825- remove XUL.mfasl on startup, add Debian enigmail patches
826- add Xvfb hack for -install-global-extension
827
828* Wed Jul 14 2004 David Hill <djh[at]ii.net> 0.7.2-0.fdr.0
829- update to 0.7.2, just because it's there
830- update gcc-3.4 patch (Kaj Niemi)
831- add EM registration patch and remove instdir hack
832
833* Sun Jul 04 2004 David Hill <djh[at]ii.net> 0.7.1-0.fdr.1
834- re-add Enigmime 1.0.7, omit Enigmail until the Mozilla EM problems are fixed
835
836* Wed Jun 30 2004 David Hill <djh[at]ii.net> 0.7.1-0.fdr.0
837- update to 0.7.1
838- remove Enigmail
839
840* Mon Jun 28 2004 David Hill <djh[at]ii.net> 0.7-0.fdr.1
841- re-enable Enigmail 0.84.1
842- add gcc-3.4 patch (Kaj Niemi)
843- use official branding (with permission)
844
845* Fri Jun 18 2004 David Hill <djh[at]ii.net> 0.7-0.fdr.0
846- update to 0.7
847- temporarily disable Enigmail 0.84.1, make ftp links work (#1634)
848- specify libdir, change BR for apt (V. Skytt辰, #1617)
849
850* Tue May 18 2004 Warren Togami <wtogami@redhat.com> 0.6-0.fdr.5
851- temporary workaround for enigmail skin "modern" bug
852
853* Mon May 10 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.4
854- update to Enigmail 0.84.0
855- update launch script
856
857* Mon May 10 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.3
858- installation directory now versioned
859- allow root to run the program (for installing extensions)
860- remove unnecessary %%pre and %%post
861- remove separators, update mozconfig and launch script (M. Schwendt, #1460)
862
863* Wed May 05 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.2
864- include Enigmail, re-add release notes
865- delete %{_libdir}/thunderbird in %%pre
866
867* Mon May 03 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.1
868- update to Thunderbird 0.6
869
870* Fri Apr 30 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.0.rc1
871- update to Thunderbird 0.6 RC1
872- add new icon, remove release notes
873
874* Thu Apr 15 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.0.20040415
875- update to latest CVS, update mozconfig and %%build accordingly
876- update to Enigmail 0.83.6
877- remove x-remote and x86_64 patches
878- build with -Os
879
880* Thu Apr 15 2004 David Hill <djh[at]ii.net> 0.5-0.fdr.12
881- update x-remote patch
882- more startup script fixes
883
884* Tue Apr 06 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.11
885- startup script fixes, and a minor cleanup
886
887* Sun Apr 04 2004 Warren Togami <wtogami@redhat.com> 0:0.5-0.fdr.10
888- Minor cleanups
889
890* Sun Apr 04 2004 David Hill <djh[at]ii.net>    0:0.5-0.fdr.8
891- minor improvements to open-browser.sh and startup script
892- update to latest version of Blizzard's x-remote patch
893
894* Thu Mar 25 2004 David Hill <djh[at]ii.net>    0:0.5-0.fdr.7
895- update open-browser.sh, startup script, and BuildRequires
896
897* Sun Mar 14 2004 David Hill <djh[at]ii.net>    0:0.5-0.fdr.6
898- update open-browser script, modify BuildRequires (Warren)
899- add Blizzard's x-remote patch
900- initial attempt at x-remote-enabled startup script
901
902* Sun Mar 07 2004 David Hill <djh[at]ii.net>    0:0.5-0.fdr.5
903- refuse to run with excessive privileges
904
905* Fri Feb 27 2004 David Hill <djh[at]ii.net>    0:0.5-0.fdr.4
906- add Mozilla x86_64 patch (Oliver Sontag)
907- Enigmail source filenames now include the version
908- modify BuildRoot
909
910* Thu Feb 26 2004 David Hill <djh[at]ii.net>    0:0.5-0.fdr.3
911- use the updated official tarball
912
913* Wed Feb 18 2004 David Hill <djh[at]ii.net>    0:0.5-0.fdr.2
914- fix %%prep script
915
916* Mon Feb 16 2004 David Hill <djh[at]ii.net>    0:0.5-0.fdr.1
917- update Enigmail to 0.83.3
918- use official source tarball (after removing the CRLFs)
919- package renamed to thunderbird
920
921* Mon Feb 09 2004 David Hill <djh[at]ii.net>    0:0.5-0.fdr.0
922- update to 0.5
923- check for lockfile before launching
924
925* Fri Feb 06 2004 David Hill <djh[at]ii.net>
926- update to latest cvs
927- update to Enigmail 0.83.2
928
929* Thu Jan 29 2004 David Hill <djh[at]ii.net>    0:0.4-0.fdr.5
930- update to Enigmail 0.83.1
931- removed Mozilla/Firebird script patching
932
933* Sat Jan 03 2004 David Hill <djh[at]ii.net>    0:0.4-0.fdr.4
934- add startup notification to .desktop file
935
936* Thu Dec 25 2003 Warren Togami <warren@togami.com> 0:0.4-0.fdr.3
937- open-browser.sh release 3
938- patch broken /usr/bin/mozilla script during install
939- dir ownership
940- XXX: Source fails build on x86_64... fix later
941
942* Tue Dec 23 2003 David Hill <djh[at]ii.net>    0:0.4-0.fdr.2
943- update to Enigmail 0.82.5
944- add Warren's open-browser.sh (#1113)
945
946* Tue Dec 09 2003 David Hill <djh[at]ii.net>    0:0.4-0.fdr.1
947- use Thunderbird's mozilla-xremote-client to launch browser
948
949* Sun Dec 07 2003 David Hill <djh[at]ii.net>    0:0.4-0.fdr.0
950- update to 0.4
951- make hyperlinks work (with recent versions of Firebird/Mozilla)
952
953* Thu Dec 04 2003 David Hill <djh[at]ii.net>
954- update to 0.4rc2
955
956* Wed Dec 03 2003 David Hill <djh[at]ii.net>
957- update to 0.4rc1 and Enigmail 0.82.4
958
959* Thu Nov 27 2003 David Hill <djh[at]ii.net>
960- update to latest CVS and Enigmail 0.82.3
961
962* Sun Nov 16 2003 David Hill <djh[at]ii.net>
963- update to latest CVS (0.4a)
964- update Enigmail to 0.82.2
965- alter mozconfig for new build requirements
966- add missing BuildReq (#987)
967
968* Thu Oct 16 2003 David Hill <djh[at]ii.net>    0:0.3-0.fdr.0
969- update to 0.3
970
971* Sun Oct 12 2003 David Hill <djh[at]ii.net>    0:0.3rc3-0.fdr.0
972- update to 0.3rc3
973- update Enigmail to 0.81.7
974
975* Thu Oct 02 2003 David Hill <djh[at]ii.net>    0:0.3rc2-0.fdr.0
976- update to 0.3rc2
977
978* Wed Sep 17 2003 David Hill <djh[at]ii.net>    0:0.2-0.fdr.2
979- simplify startup script
980
981* Wed Sep 10 2003 David Hill <djh[at]ii.net>    0:0.2-0.fdr.1
982- add GPG support (Enigmail 0.81.6)
983- specfile fixes (#679)
984
985* Thu Sep 04 2003 David Hill <djh[at]ii.net>    0:0.2-0.fdr.0
986- update to 0.2
987
988* Mon Sep 01 2003 David Hill <djh[at]ii.net>
989- initial RPM
990  (based on the fedora MozillaFirebird-0.6.1 specfile)
991
Note: See TracBrowser for help on using the repository browser.