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

Revision 11982, 36.3 KB checked in by tomop, 5 years ago (diff)

thunderbird-60.3.3-1

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