e75128
# Use system nspr/nss?
e75128
%define system_nss        1
e75128
e75128
# Build as a debug package?
e75128
%define debug_build       0
e75128
e75128
#
e75128
%if 0%{?fedora}
e75128
%define system_libvpx     1
e75128
%else
e75128
%define system_libvpx     0
e75128
%endif
e75128
e75128
%if 0%{?fedora} < 20
e75128
%define system_sqlite 0
e75128
%else
e75128
%define system_sqlite 1
e75128
%endif
e75128
e75128
%define build_langpacks 1
e75128
e75128
%if %{?system_nss}
e75128
%global nspr_version 4.10.6
e75128
%global nspr_build_version %(pkg-config --silence-errors --modversion nspr 2>/dev/null || echo 65536)
e75128
%if 0%{?fedora}
e75128
%global nss_version 3.16.2.3
e75128
%global nss_build_version %(pkg-config --silence-errors --modversion nss 2>/dev/null || echo 65536)
e75128
%else
e75128
%global nss_version 3.16.2.3
e75128
%global nss_build_version %(pkg-config --silence-errors --modversion nss 2>/dev/null || echo 65536)
e75128
%endif
e75128
e75128
%endif
e75128
e75128
%define cairo_version 1.8.8
e75128
%define freetype_version 2.1.9
e75128
e75128
%if %{?system_sqlite}
e75128
%define sqlite_version 3.8.4.2
e75128
# The actual sqlite version (see #480989):
e75128
%global sqlite_build_version %(pkg-config --silence-errors --modversion sqlite3 2>/dev/null || echo 65536)
e75128
%endif
e75128
e75128
%define libnotify_version 0.4
e75128
%global libvpx_version 1.3.0
e75128
%define _default_patch_fuzz 2
e75128
e75128
%define thunderbird_app_id \{3550f703-e582-4d05-9a08-453d09bdfdc6\} 
e75128
e75128
# The tarball is pretty inconsistent with directory structure.
e75128
# Sometimes there is a top level directory.  That goes here.
e75128
#
e75128
# IMPORTANT: If there is no top level directory, this should be 
e75128
# set to the cwd, ie: '.'
e75128
%define tarballdir   comm-esr31
e75128
%define objdir       objdir
e75128
%define mozappdir    %{_libdir}/%{name}
e75128
e75128
%define official_branding 1
e75128
# enable crash reporter only for iX86
e75128
%ifarch %{ix86} x86_64
e75128
%define enable_mozilla_crashreporter 0
e75128
%else
e75128
%define enable_mozilla_crashreporter 0
e75128
%endif
e75128
e75128
Summary:        Mozilla Thunderbird mail/newsgroup client
e75128
Name:           thunderbird
e75128
Version:        31.4.0
e75128
Release:        1%{?dist}
e75128
URL:            http://www.mozilla.org/projects/thunderbird/
e75128
License:        MPLv1.1 or GPLv2+ or LGPLv2+
e75128
Group:          Applications/Internet
e75128
#ExcludeArch:    s390x s390 ppc ppc64 i686
e75128
e75128
Source0:        ftp://ftp.mozilla.org/pub/thunderbird/releases/%{version}%{?pre_version}/source/thunderbird-%{version}%{?pre_version}.source.tar.bz2
e75128
%if %{build_langpacks}
e75128
Source1:        thunderbird-langpacks-%{version}-20150110.tar.bz2
e75128
%endif
e75128
Source10:       thunderbird-mozconfig
e75128
Source11:       thunderbird-mozconfig-branded
e75128
Source12:       thunderbird-redhat-default-prefs.js
e75128
Source20:       thunderbird.desktop
e75128
Source21:       thunderbird.sh.in
e75128
Source100:      find-external-requires
e75128
e75128
# Mozilla (XULRunner) patches
e75128
Patch0:         thunderbird-install-dir.patch
e75128
Patch9:         mozilla-build-arm.patch
e75128
Patch10:        webm.patch
e75128
Patch11:        remove-ogg.patch
e75128
Patch12:        mozilla-1097550-dict-fix.patch
e75128
e75128
# Build patches
e75128
Patch100:       thunderbird-objdir.patch
e75128
e75128
# Linux specific
e75128
Patch200:       thunderbird-enable-addons.patch
e75128
e75128
# PPC fixes
e75128
Patch300:       xulrunner-24.0-jemalloc-ppc.patch
e75128
e75128
# Fedora specific patches
e75128
Patch400:       rhbz-966424.patch
e75128
Patch401:       mozilla-858919.patch
e75128
e75128
# Epel patches:
e75128
e75128
# Arch patches
e75128
Patch600:       ppc64le-build.patch
e75128
%if %{official_branding}
e75128
# Required by Mozilla Corporation
e75128
e75128
%else
e75128
# Not yet approved by Mozillla Corporation
e75128
e75128
%endif
e75128
e75128
%if %{?system_nss}
e75128
BuildRequires:  nss-static >= %{nss_version}
e75128
BuildRequires:  nspr-devel >= %{nspr_version}
e75128
BuildRequires:  nss-devel >= %{nss_version}
e75128
Requires:       nspr >= %{nspr_build_version}
e75128
Requires:       nss >= %{nss_build_version}
e75128
%endif
e75128
BuildRequires:  cairo-devel >= %{cairo_version}
e75128
BuildRequires:  libnotify-devel >= %{libnotify_version}
e75128
BuildRequires:  libpng-devel
e75128
BuildRequires:  libjpeg-devel
e75128
BuildRequires:  zip
e75128
BuildRequires:  bzip2-devel
e75128
BuildRequires:  zlib-devel
e75128
BuildRequires:  libIDL-devel
e75128
BuildRequires:  gtk2-devel
e75128
BuildRequires:  krb5-devel
e75128
BuildRequires:  pango-devel
e75128
BuildRequires:  freetype-devel >= %{freetype_version}
e75128
BuildRequires:  libXt-devel
e75128
BuildRequires:  libXrender-devel
e75128
BuildRequires:  hunspell-devel
e75128
%if %{?system_sqlite}
e75128
BuildRequires:  sqlite-devel >= %{sqlite_version}
e75128
Requires:       sqlite >= %{sqlite_build_version}
e75128
%endif
e75128
BuildRequires:  startup-notification-devel
e75128
BuildRequires:  alsa-lib-devel
e75128
BuildRequires:  autoconf213
e75128
BuildRequires:  desktop-file-utils
e75128
BuildRequires:  libcurl-devel
e75128
BuildRequires:  mesa-libGL-devel
e75128
%if %{?system_libvpx}
e75128
BuildRequires:  libvpx-devel >= %{libvpx_version}
e75128
Requires:       libvpx >= %{libvpx_version}
e75128
%endif
e75128
BuildRequires:  pulseaudio-libs-devel
e75128
BuildRequires:  libicu-devel
e75128
Requires:       mozilla-filesystem
e75128
BuildRequires:  libffi-devel
e75128
e75128
%define _use_internal_dependency_generator 0
e75128
%define __find_requires %{SOURCE100}
e75128
e75128
%description
e75128
Mozilla Thunderbird is a standalone mail and newsgroup client.
e75128
e75128
%if %{enable_mozilla_crashreporter}
e75128
%global moz_debug_prefix %{_prefix}/lib/debug
e75128
%global moz_debug_dir %{moz_debug_prefix}%{mozappdir}
e75128
%global uname_m %(uname -m)
e75128
%global symbols_file_name %{name}-%{version}.en-US.%{_os}-%{uname_m}.crashreporter-symbols.zip
e75128
%global symbols_file_path %{moz_debug_dir}/%{symbols_file_name}
e75128
%global _find_debuginfo_opts -p %{symbols_file_path} -o debugcrashreporter.list
e75128
%global crashreporter_pkg_name mozilla-crashreporter-%{name}-debuginfo
e75128
%package -n %{crashreporter_pkg_name}
e75128
Summary: Debugging symbols used by Mozilla's crash reporter servers
e75128
Group: Development/Debug
e75128
%description -n %{crashreporter_pkg_name}
e75128
This package provides debug information for XULRunner, for use by
e75128
Mozilla's crash reporter servers.  If you are trying to locally
e75128
debug %{name}, you want to install %{name}-debuginfo instead.
e75128
%files -n %{crashreporter_pkg_name} -f debugcrashreporter.list
e75128
%defattr(-,root,root)
e75128
%endif
e75128
e75128
e75128
%prep
e75128
%setup -q -c
e75128
cd %{tarballdir}
e75128
e75128
%patch0   -p2 -b .dir
e75128
%patch100 -p2 -b .objdir
e75128
e75128
# Mozilla (XULRunner) patches
e75128
cd mozilla
e75128
%patch9   -p2 -b .arm
e75128
%patch10   -p1 -b .web-m
e75128
%patch11   -p1 -b .remove-ogg
e75128
%patch12   -p2 -b .dict-fix
e75128
%patch300 -p2 -b .852698
e75128
%patch400 -p1 -b .966424
e75128
%patch401 -p1 -b .858919
e75128
cd ..
e75128
e75128
%patch200 -p1 -b .addons
e75128
%patch600 -p1 -b .ppc64le
e75128
e75128
e75128
%if %{official_branding}
e75128
# Required by Mozilla Corporation
e75128
e75128
%else
e75128
# Not yet approved by Mozilla Corporation
e75128
e75128
%endif
e75128
e75128
%{__rm} -f .mozconfig
e75128
%{__cp} %{SOURCE10} .mozconfig
e75128
%if %{official_branding}
e75128
%{__cat} %{SOURCE11} >> .mozconfig
e75128
%endif
e75128
e75128
%if %{?system_nss}
e75128
echo "ac_add_options --with-system-nspr" >> .mozconfig
e75128
echo "ac_add_options --with-system-nss" >> .mozconfig
e75128
%else
e75128
echo "ac_add_options --without-system-nspr" >> .mozconfig
e75128
echo "ac_add_options --without-system-nss" >> .mozconfig
e75128
%endif
e75128
e75128
# s390(x) fails to start with jemalloc enabled
e75128
%ifarch s390 s390x
e75128
echo "ac_add_options --disable-jemalloc" >> .mozconfig
e75128
%endif
e75128
e75128
%if %{?system_sqlite}
e75128
echo "ac_add_options --enable-system-sqlite"  >> .mozconfig
e75128
%else
e75128
echo "ac_add_options --disable-system-sqlite" >> .mozconfig
e75128
%endif
e75128
e75128
%if %{?debug_build}
e75128
echo "ac_add_options --enable-debug" >> .mozconfig
e75128
echo "ac_add_options --disable-optimize" >> .mozconfig
e75128
%else
e75128
echo "ac_add_options --disable-debug" >> .mozconfig
e75128
echo "ac_add_options --enable-optimize" >> .mozconfig
e75128
%endif
e75128
e75128
%ifarch %{arm}
e75128
echo "ac_add_options --disable-elf-hack" >> .mozconfig
e75128
%endif
e75128
e75128
%ifnarch %{ix86} x86_64
e75128
echo "ac_add_options --disable-webrtc" >> .mozconfig
e75128
%endif
e75128
%if %{?system_libvpx}
e75128
echo "ac_add_options --enable-system-libvpx" >> .mozconfig
e75128
%else
e75128
echo "ac_add_options --disable-webm" >> .mozconfig
e75128
echo "ac_add_options --disable-webrtc" >> .mozconfig
e75128
%endif
e75128
%if %{enable_mozilla_crashreporter}
e75128
echo "ac_add_options --enable-crashreporter" >> .mozconfig
e75128
%else
e75128
echo "ac_add_options --disable-crashreporter" >> .mozconfig
e75128
%endif
e75128
e75128
#===============================================================================
e75128
e75128
%build
e75128
%if %{?system_sqlite}
e75128
# Do not proceed with build if the sqlite require would be broken:
e75128
# make sure the minimum requirement is non-empty, ...
e75128
sqlite_version=$(expr "%{sqlite_version}" : '\([0-9]*\.\)[0-9]*\.') || exit 1
e75128
# ... and that major number of the computed build-time version matches:
e75128
case "%{sqlite_build_version}" in
e75128
  "$sqlite_version"*) ;;
e75128
  *) exit 1 ;;
e75128
esac
e75128
%endif
e75128
e75128
cd %{tarballdir}
e75128
e75128
# -fpermissive is needed to build with gcc 4.6+ which has become stricter
e75128
#
e75128
# Mozilla builds with -Wall with exception of a few warnings which show up
e75128
# everywhere in the code; so, don't override that.
e75128
#
e75128
# Disable C++ exceptions since Mozilla code is not exception-safe
e75128
# 
e75128
MOZ_OPT_FLAGS=$(echo "$RPM_OPT_FLAGS -fpermissive" | \
e75128
                      %{__sed} -e 's/-Wall//')
e75128
#rhbz#1037353
e75128
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -Wformat-security -Wformat -Werror=format-security"
e75128
%if %{?debug_build}
e75128
MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-O2//')
e75128
%endif
e75128
%ifarch s390
e75128
MOZ_OPT_FLAGS=$(echo "$RPM_OPT_FLAGS" | %{__sed} -e 's/-g/-g1/')
e75128
%endif
e75128
%ifarch s390 %{arm} ppc
e75128
MOZ_LINK_FLAGS="-Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
e75128
%endif
e75128
e75128
export CFLAGS=$MOZ_OPT_FLAGS
e75128
export CXXFLAGS="$MOZ_OPT_FLAGS -fno-strict-aliasing"
e75128
export LDFLAGS=$MOZ_LINK_FLAGS
e75128
e75128
export PREFIX='%{_prefix}'
e75128
export LIBDIR='%{_libdir}'
e75128
e75128
MOZ_SMP_FLAGS=-j1
e75128
# On x86 architectures, Mozilla can build up to 4 jobs at once in parallel,
e75128
# however builds tend to fail on other arches when building in parallel.
e75128
%ifarch %{ix86} x86_64 ppc ppc64 ppc64le
e75128
[ -z "$RPM_BUILD_NCPUS" ] && \
e75128
     RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
e75128
[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
e75128
[ "$RPM_BUILD_NCPUS" -ge 4 ] && MOZ_SMP_FLAGS=-j4
e75128
[ "$RPM_BUILD_NCPUS" -ge 8 ] && MOZ_SMP_FLAGS=-j8
e75128
%endif
e75128
e75128
make -f client.mk build STRIP="/bin/true" MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS"
e75128
e75128
# create debuginfo for crash-stats.mozilla.com
e75128
%if %{enable_mozilla_crashreporter}
e75128
make -C %{objdir} buildsymbols
e75128
%endif
e75128
e75128
#===============================================================================
e75128
e75128
%install
e75128
cd %{tarballdir}/%{objdir}
e75128
e75128
DESTDIR=$RPM_BUILD_ROOT make install
e75128
e75128
cd ..
e75128
e75128
# install icons
e75128
for s in 16 22 24 32 48 256; do
e75128
    %{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${s}x${s}/apps
e75128
    %{__cp} -p other-licenses/branding/%{name}/mailicon${s}.png \
e75128
               $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${s}x${s}/apps/thunderbird.png
e75128
done
e75128
e75128
e75128
desktop-file-install --vendor mozilla \
e75128
  --dir $RPM_BUILD_ROOT%{_datadir}/applications \
e75128
  %{SOURCE20}
e75128
e75128
e75128
# set up the thunderbird start script
e75128
rm -f $RPM_BUILD_ROOT/%{_bindir}/thunderbird
e75128
%{__cat} %{SOURCE21}  > $RPM_BUILD_ROOT%{_bindir}/thunderbird
e75128
%{__chmod} 755 $RPM_BUILD_ROOT/%{_bindir}/thunderbird
e75128
e75128
# set up our default preferences
e75128
%{__cat} %{SOURCE12} | %{__sed} -e 's,THUNDERBIRD_RPM_VR,%{version}-%{release},g' > \
e75128
        $RPM_BUILD_ROOT/rh-default-prefs
e75128
%{__install} -D $RPM_BUILD_ROOT/rh-default-prefs $RPM_BUILD_ROOT/%{mozappdir}/greprefs/all-redhat.js
e75128
%{__install} -D $RPM_BUILD_ROOT/rh-default-prefs $RPM_BUILD_ROOT/%{mozappdir}/defaults/pref/all-redhat.js
e75128
%{__rm} $RPM_BUILD_ROOT/rh-default-prefs
e75128
e75128
%{__rm} -f $RPM_BUILD_ROOT%{_bindir}/thunderbird-config
e75128
e75128
# own mozilla plugin dir (#135050)
e75128
%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins
e75128
e75128
# own extension directories
e75128
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/mozilla/extensions/%{thunderbird_app_id}
e75128
%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/extensions/%{thunderbird_app_id}
e75128
e75128
# Install langpacks
e75128
%{__rm} -f %{name}.lang # Delete for --short-circuit option
e75128
touch %{name}.lang
e75128
%if %{build_langpacks}
e75128
%{__mkdir_p} $RPM_BUILD_ROOT%{mozappdir}/langpacks
e75128
%{__tar} xf %{SOURCE1}
e75128
for langpack in `ls thunderbird-langpacks/*.xpi`; do
e75128
  language=`basename $langpack .xpi`
e75128
  extensionID=langpack-$language@thunderbird.mozilla.org
e75128
e75128
  language=`echo $language | sed -e 's/-/_/g'`
e75128
  %{__install} -m 644 ${langpack} $RPM_BUILD_ROOT%{mozappdir}/langpacks/${extensionID}.xpi
e75128
  echo "%%lang($language) %{mozappdir}/langpacks/${extensionID}.xpi" >> %{name}.lang
e75128
done
e75128
%{__rm} -rf thunderbird-langpacks
e75128
%endif # build_langpacks
e75128
e75128
# Get rid of devel package and its debugsymbols
e75128
%{__rm} -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-devel-%{version}
e75128
e75128
# Copy over the LICENSE
e75128
cd mozilla
e75128
install -c -m 644 LICENSE $RPM_BUILD_ROOT%{mozappdir}
e75128
cd -
e75128
e75128
# Use the system hunspell dictionaries
e75128
%{__rm} -rf $RPM_BUILD_ROOT/%{mozappdir}/dictionaries
e75128
ln -s %{_datadir}/myspell $RPM_BUILD_ROOT%{mozappdir}/dictionaries
e75128
e75128
# ghost files
e75128
%{__mkdir_p} $RPM_BUILD_ROOT%{mozappdir}/components
e75128
touch $RPM_BUILD_ROOT%{mozappdir}/components/compreg.dat
e75128
touch $RPM_BUILD_ROOT%{mozappdir}/components/xpti.dat
e75128
e75128
# Add debuginfo for crash-stats.mozilla.com 
e75128
%if %{enable_mozilla_crashreporter}
e75128
%{__mkdir_p} $RPM_BUILD_ROOT/%{moz_debug_dir}
e75128
%{__cp} %{objdir}/mozilla/dist/%{symbols_file_name} $RPM_BUILD_ROOT/%{moz_debug_dir}
e75128
%endif
e75128
e75128
#===============================================================================
e75128
e75128
%post
e75128
update-desktop-database &> /dev/null || :
e75128
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
e75128
e75128
%postun
e75128
update-desktop-database &> /dev/null || :
e75128
if [ $1 -eq 0 ] ; then
e75128
    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
e75128
    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
e75128
fi
e75128
e75128
%posttrans
e75128
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
e75128
e75128
#===============================================================================
e75128
%files -f %{tarballdir}/%{name}.lang
e75128
%defattr(-,root,root,-)
e75128
%attr(755,root,root) %{_bindir}/thunderbird
e75128
%attr(644,root,root) %{_datadir}/applications/mozilla-thunderbird.desktop
e75128
%dir %{_datadir}/mozilla/extensions/%{thunderbird_app_id}
e75128
%dir %{_libdir}/mozilla/extensions/%{thunderbird_app_id}
e75128
%dir %{mozappdir}
e75128
%doc %{mozappdir}/LICENSE
e75128
%{mozappdir}/chrome
e75128
%dir %{mozappdir}/components
e75128
%ghost %{mozappdir}/components/compreg.dat
e75128
%ghost %{mozappdir}/components/xpti.dat
e75128
%{mozappdir}/components/components.manifest
e75128
%{mozappdir}/components/libdbusservice.so
e75128
%{mozappdir}/components/libmozgnome.so
e75128
%{mozappdir}/omni.ja
e75128
%{mozappdir}/plugin-container
e75128
%{mozappdir}/defaults
e75128
%{mozappdir}/dictionaries
e75128
%dir %{mozappdir}/extensions
e75128
%{mozappdir}/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}
e75128
%dir %{mozappdir}/langpacks
e75128
%{mozappdir}/greprefs
e75128
%{mozappdir}/isp
e75128
%{mozappdir}/mozilla-xremote-client
e75128
%{mozappdir}/run-mozilla.sh
e75128
%{mozappdir}/thunderbird-bin
e75128
%{mozappdir}/thunderbird
e75128
%{mozappdir}/*.so
e75128
%{mozappdir}/platform.ini
e75128
%{mozappdir}/application.ini
e75128
%{mozappdir}/blocklist.xml
e75128
%exclude %{mozappdir}/removed-files
e75128
%{_datadir}/icons/hicolor/16x16/apps/thunderbird.png
e75128
%{_datadir}/icons/hicolor/22x22/apps/thunderbird.png
e75128
%{_datadir}/icons/hicolor/24x24/apps/thunderbird.png
e75128
%{_datadir}/icons/hicolor/256x256/apps/thunderbird.png
e75128
%{_datadir}/icons/hicolor/32x32/apps/thunderbird.png
e75128
%{_datadir}/icons/hicolor/48x48/apps/thunderbird.png
e75128
%if %{enable_mozilla_crashreporter}
e75128
%{mozappdir}/crashreporter
e75128
%{mozappdir}/crashreporter.ini
e75128
%{mozappdir}/Throbber-small.gif
e75128
%endif
e75128
%if !%{?system_nss}
e75128
%{mozappdir}/*.chk
e75128
%endif
e75128
%exclude %{_datadir}/idl/%{name}-%{version}
e75128
%exclude %{_includedir}/%{name}-%{version}
e75128
%{mozappdir}/chrome.manifest
e75128
%{mozappdir}/searchplugins
e75128
%{mozappdir}/dependentlibs.list
e75128
e75128
#===============================================================================
e75128
e75128
%changelog
e75128
* Sat Jan 10 2015 Jan Horak <jhorak@redhat.com> - 31.4.0-1
e75128
- Update to 31.4.0
e75128
e75128
* Mon Dec 22 2014 Jan Horak <jhorak@redhat.com> - 31.3.0-2
e75128
- Fixed problems with dictionaries (mozbz#1097550)
e75128
e75128
* Fri Nov 28 2014 Jan Horak <jhorak@redhat.com> - 31.3.0-1
e75128
- Update to 31.3.0
e75128
e75128
* Thu Oct 30 2014 Jan Horak <jhorak@redhat.com> - 31.2.0-2
e75128
- Update to 31.2.0
e75128
e75128
* Wed Oct 1 2014 Martin Stransky <stransky@redhat.com> - 31.1.1-5
e75128
- Sync preferences with Firefox
e75128
e75128
* Thu Sep 18 2014 Yaakov Selkowitz <yselkowi@redhat.com> - 31.1.1-4
e75128
- Fix dependency generation for internal libraries (#1140471)
e75128
e75128
* Fri Sep 12 2014 Jan Horak <jhorak@redhat.com> - 31.1.1-3
e75128
- Update to 31.1.1
e75128
e75128
* Tue Sep  9 2014 Jan Horak <jhorak@redhat.com> - 31.1.0-4
e75128
- Use  system libffi
e75128
e75128
* Wed Sep  3 2014 Jan Horak <jhorak@redhat.com> - 31.1.0-2
e75128
- Added fix for ppc64le
e75128
e75128
* Mon Sep  1 2014 Jan Horak <jhorak@redhat.com> - 31.1.0-1
e75128
- Update to 31.1.0
e75128
e75128
* Wed Jul 30 2014 Martin Stransky <stransky@redhat.com> - 31.0-2
e75128
- Added patch for mozbz#858919
e75128
e75128
* Tue Jul 29 2014 Martin Stransky <stransky@redhat.com> - 31.0-1
e75128
- Update to 31.0
e75128
e75128
* Tue Jul 22 2014 Jan Horak <jhorak@redhat.com> - 24.7.0-1
e75128
- Update to 24.7.0
e75128
e75128
* Mon Jun  9 2014 Jan Horak <jhorak@redhat.com> - 24.6.0-1
e75128
- Update to 24.6.0
e75128
e75128
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 24.5.0-6
e75128
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e75128
e75128
* Fri May 23 2014 Brent Baude <baude@us.ibm.com> - 24.5.0-5
e75128
- Moving the ppc64 conditional up before the cd so it will
e75128
- apply cleanly
e75128
e75128
* Fri May 23 2014 Martin Stransky <stransky@redhat.com> - 24.5.0-4
e75128
- Added a build fix for ppc64 - rhbz#1100495
e75128
e75128
* Mon May  5 2014 Jan Horak <jhorak@redhat.com> - 24.5.0-3
e75128
- Fixed find requires
e75128
e75128
* Mon Apr 28 2014 Jan Horak <jhorak@redhat.com> - 24.5.0-1
e75128
- Update to 24.5.0
e75128
e75128
* Tue Apr 22 2014 Jan Horak <jhorak@redhat.com> - 24.4.0-2
e75128
- Added support for ppc64le
e75128
e75128
* Tue Mar 18 2014 Jan Horak <jhorak@redhat.com> - 24.4.0-1
e75128
- Update to 24.4.0
e75128
e75128
* Mon Feb  3 2014 Jan Horak <jhorak@redhat.com> - 24.3.0-1
e75128
- Update to 24.3.0
e75128
e75128
* Mon Dec 16 2013 Martin Stransky <stransky@redhat.com> - 24.2.0-4
e75128
- Fixed rhbz#1024232 - thunderbird: squiggly lines used 
e75128
  for spelling correction disappear randomly
e75128
e75128
* Fri Dec 13 2013 Martin Stransky <stransky@redhat.com> - 24.2.0-3
e75128
- Build with -Werror=format-security (rhbz#1037353)
e75128
e75128
* Wed Dec 11 2013 Martin Stransky <stransky@redhat.com> - 24.2.0-2
e75128
- rhbz#1001998 - added a workaround for system notifications
e75128
e75128
* Mon Dec  9 2013 Jan Horak <jhorak@redhat.com> - 24.2.0-1
e75128
- Update to 24.2.0
e75128
e75128
* Sat Nov 02 2013 Dennis Gilmore <dennis@ausil.us> - 24.1.0-2
e75128
- remove ExcludeArch: armv7hl
e75128
e75128
* Wed Oct 30 2013 Jan Horak <jhorak@redhat.com> - 24.1.0-1
e75128
- Update to 24.1.0
e75128
e75128
* Thu Oct 17 2013 Martin Stransky <stransky@redhat.com> - 24.0-4
e75128
- Fixed rhbz#1005611 - BEAST workaround not enabled in Firefox
e75128
e75128
* Wed Sep 25 2013 Jan Horak <jhorak@redhat.com> - 24.0-3
e75128
- Update to 24.0
e75128
e75128
* Mon Sep 23 2013 Jan Horak <jhorak@redhat.com> - 17.0.9-1
e75128
- Update to 17.0.9 ESR
e75128
e75128
* Mon Aug  5 2013 Jan Horak <jhorak@redhat.com> - 17.0.8-1
e75128
- Update to 17.0.8
e75128
e75128
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 17.0.7-2
e75128
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
e75128
e75128
* Tue Jun 25 2013 Jan Horak <jhorak@redhat.com> - 17.0.7-1
e75128
- Update to 17.0.7
e75128
e75128
* Wed Jun 12 2013 Jan Horak <jhorak@redhat.com> - 17.0.6-2
e75128
- Fixed rhbz#973371 - unable to install addons
e75128
e75128
* Tue May 14 2013 Jan Horak <jhorak@redhat.com> - 17.0.6-1
e75128
- Update to 17.0.6
e75128
e75128
* Tue Apr  2 2013 Jan Horak <jhorak@redhat.com> - 17.0.5-1
e75128
- Update to 17.0.5
e75128
e75128
* Mon Mar 11 2013 Jan Horak <jhorak@redhat.com> - 17.0.4-1
e75128
- Update to 17.0.4
e75128
e75128
* Tue Feb 19 2013 Jan Horak <jhorak@redhat.com> - 17.0.3-1
e75128
- Update to 17.0.3
e75128
e75128
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 17.0.2-4
e75128
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e75128
e75128
* Tue Jan 15 2013 Martin Stransky <stransky@redhat.com> - 17.0.2-3
e75128
- Added fix for NM regression (mozbz#791626)
e75128
e75128
* Tue Jan 15 2013 Jan Horak <jhorak@redhat.com> - 17.0.2-2
e75128
- Added mozilla-746112 patch to fix crash on ppc(64)
e75128
e75128
* Thu Jan 10 2013 Jan Horak <jhorak@redhat.com> - 17.0.2-1
e75128
- Update to 17.0.2
e75128
e75128
* Mon Nov 19 2012 Jan Horak <jhorak@redhat.com> - 17.0-1
e75128
- Update to 17.0
e75128
e75128
* Mon Oct 29 2012 Jan Horak <jhorak@redhat.com> - 16.0.2-1
e75128
- Update to 16.0.2
e75128
e75128
* Tue Oct 16 2012 Jan Horak <jhorak@redhat.com> - 16.0.1-2
e75128
- Fixed nss and nspr versions
e75128
e75128
* Thu Oct 11 2012 Jan Horak <jhorak@redhat.com> - 16.0.1-1
e75128
- Update to 16.0.1
e75128
e75128
* Tue Oct  9 2012 Jan Horak <jhorak@redhat.com> - 16.0-1
e75128
- Update to 16.0
e75128
e75128
* Tue Sep 18 2012 Dan Horák <dan[at]danny.cz> - 15.0.1-3
e75128
- Added fix for rhbz#855923 - TB freezes on Fedora 18 for PPC64
e75128
e75128
* Fri Sep 14 2012 Martin Stransky <stransky@redhat.com> - 15.0.1-2
e75128
- Added build flags for second arches
e75128
e75128
* Tue Sep 11 2012 Jan Horak <jhorak@redhat.com> - 15.0.1-1
e75128
- Update to 15.0.1
e75128
e75128
* Fri Sep  7 2012 Jan Horak <jhorak@redhat.com> - 15.0-2
e75128
- Added workaround fix for PPC (rbhz#852698)
e75128
e75128
* Mon Aug 27 2012 Jan Horak <jhorak@redhat.com> - 15.0-1
e75128
- Update to 15.0
e75128
e75128
* Wed Aug 1 2012 Martin Stransky <stransky@redhat.com> - 14.0-4
e75128
- Removed StartupWMClass (rhbz#844863)
e75128
- Fixed -g parameter
e75128
- Removed thunderbird-devel before packing to avoid debugsymbols duplicities (rhbz#823940)
e75128
e75128
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 14.0-2
e75128
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e75128
e75128
* Tue Jul 17 2012 Jan Horak <jhorak@redhat.com> - 14.0-1
e75128
- Update to 14.0
e75128
e75128
* Fri Jun 15 2012 Jan Horak <jhorak@redhat.com> - 13.0.1-1
e75128
- Update to 13.0.1
e75128
e75128
* Tue Jun  5 2012 Jan Horak <jhorak@redhat.com> - 13.0-1
e75128
- Update to 13.0
e75128
e75128
* Mon May 7 2012 Martin Stransky <stransky@redhat.com> - 12.0.1-2
e75128
- Fixed #717245 - adhere Static Library Packaging Guidelines
e75128
e75128
* Mon Apr 30 2012 Jan Horak <jhorak@redhat.com> - 12.0.1-1
e75128
- Update to 12.0.1
e75128
e75128
* Tue Apr 24 2012 Jan Horak <jhorak@redhat.com> - 12.0-1
e75128
- Update to 12.0
e75128
e75128
* Mon Apr 16 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 11.0.1-2
e75128
- Add upstream patch to fix FTBFS on ARM
e75128
e75128
* Thu Mar 29 2012 Jan Horak <jhorak@redhat.com> - 11.0.1-1
e75128
- Update to 11.0.1
e75128
e75128
* Thu Mar 22 2012 Jan Horak <jhorak@redhat.com> - 11.0-6
e75128
- Added translations to thunderbird.desktop file
e75128
e75128
* Fri Mar 16 2012 Martin Stransky <stransky@redhat.com> - 11.0-5
e75128
- gcc 4.7 build fixes
e75128
e75128
* Wed Mar 14 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 11.0-4
e75128
- Add ARM configuration options
e75128
e75128
* Wed Mar 14 2012 Martin Stransky <stransky@redhat.com> - 11.0-3
e75128
- Build with system libvpx
e75128
e75128
* Tue Mar 13 2012 Martin Stransky <stransky@redhat.com> - 11.0-1
e75128
- Update to 11.0
e75128
e75128
* Thu Feb 23 2012 Jan Horak <jhorak@redhat.com> - 10.0.1-3
e75128
- Added fix for proxy settings mozbz#682832
e75128
e75128
* Thu Feb 16 2012 Martin Stransky <stransky@redhat.com> - 10.0.1-2
e75128
- Added fix for mozbz#727401
e75128
e75128
* Thu Feb  9 2012 Jan Horak <jhorak@redhat.com> - 10.0.1-1
e75128
- Update to 10.0.1
e75128
e75128
* Mon Feb 6 2012 Martin Stransky <stransky@redhat.com> - 10.0-2
e75128
- gcc 4.7 build fixes
e75128
e75128
* Tue Jan 31 2012 Jan Horak <jhorak@redhat.com> - 10.0-1
e75128
- Update to 10.0
e75128
e75128
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.0-7
e75128
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e75128
e75128
* Thu Jan 05 2012 Dan Horák <dan[at]danny.cz> - 9.0-6
e75128
- disable jemalloc on s390(x) (taken from xulrunner)
e75128
e75128
* Wed Jan 04 2012 Dan Horák <dan[at]danny.cz> - 9.0-5
e75128
- fix build on secondary arches (cherry-picked from 13afcd4c097c)
e75128
e75128
* Thu Dec 22 2011 Jan Horak <jhorak@redhat.com> - 9.0-4
e75128
- Update to 9.0
e75128
e75128
* Fri Dec 9 2011 Martin Stransky <stransky@redhat.com> - 8.0-4
e75128
- enabled gio support (#760644)
e75128
e75128
* Tue Nov 29 2011 Jan Horak <jhorak@redhat.com> - 8.0-3
e75128
- Fixed s390x issues
e75128
e75128
* Thu Nov 10 2011 Jan Horak <jhorak@redhat.com> - 8.0-2
e75128
- Enable Mozilla's crash reporter again for all archs
e75128
- Temporary workaround for langpacks
e75128
- Disabled addon check UI (#753551)
e75128
e75128
* Tue Nov  8 2011 Jan Horak <jhorak@redhat.com> - 8.0-1
e75128
- Update to 8.0
e75128
e75128
* Tue Oct 18 2011 Martin Stransky <stransky@redhat.com> - 7.0.1-3
e75128
- Added NM patches (mozbz#627672, mozbz#639959)
e75128
e75128
* Wed Oct 12 2011 Dan Horák <dan[at]danny.cz> - 7.0.1-2
e75128
- fix build on secondary arches (copied from xulrunner)
e75128
e75128
* Fri Sep 30 2011 Jan Horak <jhorak@redhat.com> - 7.0.1-1
e75128
- Update to 7.0.1
e75128
e75128
* Tue Sep 27 2011 Jan Horak <jhorak@redhat.com> - 7.0-1
e75128
- Update to 7.0
e75128
e75128
* Tue Sep  6 2011 Jan Horak <jhorak@redhat.com> - 6.0.2-1
e75128
- Update to 6.0.2
e75128
e75128
* Wed Aug 31 2011 Jan Horak <jhorak@redhat.com> - 6.0-3
e75128
- Distrust a specific Certificate Authority
e75128
e75128
* Wed Aug 31 2011 Dan Horák <dan[at]danny.cz> - 6.0-2
e75128
- add secondary-ipc patch from xulrunner
e75128
e75128
* Tue Aug 16 2011 Jan Horak <jhorak@redhat.com> - 6.0-1
e75128
- Update to 6.0
e75128
e75128
* Tue Aug 16 2011 Remi Collet <remi@fedoraproject.org> 5.0-4
e75128
- Don't unzip the langpacks
e75128
e75128
* Mon Aug 15 2011 Jan Horak <jhorak@redhat.com> - 5.0-3
e75128
- Rebuild due to rhbz#728707
e75128
e75128
* Wed Jul 20 2011 Dan Horák <dan[at]danny.cz> - 5.0-2
e75128
- add xulrunner patches for secondary arches
e75128
e75128
* Tue Jun 28 2011 Jan Horak <jhorak@redhat.com> - 5.0-1
e75128
- Update to 5.0
e75128
e75128
* Tue Jun 21 2011 Jan Horak <jhorak@redhat.com> - 3.1.11-1
e75128
- Update to 3.1.11
e75128
e75128
* Wed May 25 2011 Caolán McNamara <caolanm@redhat.com> - 3.1.10-2
e75128
- rebuild for new hunspell
e75128
e75128
* Thu Apr 28 2011 Jan Horak <jhorak@redhat.com> - 3.1.10-1
e75128
- Update to 3.1.10
e75128
e75128
* Thu Apr 21 2011 Christopher Aillon <caillon@redhat.com> - 3.1.9-7
e75128
- Make gvfs-open launch a compose window (salimma)
e75128
- Spec file cleanups (salimma, caillon)
e75128
- Split out mozilla crashreporter symbols to its own debuginfo package (caillon)
e75128
e75128
* Sat Apr  2 2011 Christopher Aillon <caillon@redhat.com> - 3.1.9-6
e75128
- Drop gio support: the code hooks don't exist yet for TB 3.1.x
e75128
e75128
* Fri Apr  1 2011 Orion Poplawski <orion@cora.nwra.com> - 3.1.9-5
e75128
- Enable startup notification
e75128
e75128
* Sun Mar 20 2011 Dan Horák <dan[at]danny.cz> - 3.1.9-4
e75128
- updated the s390 build patch
e75128
e75128
* Fri Mar 18 2011 Jan Horak <jhorak@redhat.com> - 3.1.9-3
e75128
- Removed gnome-vfs2, libgnomeui and libgnome from build requires
e75128
e75128
* Wed Mar  9 2011 Jan Horak <jhorak@redhat.com> - 3.1.9-2
e75128
- Disabled gnomevfs, enabled gio
e75128
e75128
* Mon Mar  7 2011 Jan Horak <jhorak@redhat.com> - 3.1.9-1
e75128
- Update to 3.1.9
e75128
e75128
* Tue Mar  1 2011 Jan Horak <jhorak@redhat.com> - 3.1.8-3
e75128
- Update to 3.1.8
e75128
e75128
* Wed Feb  9 2011 Christopher Aillon <caillon@redhat.com> - 3.1.7-6
e75128
- Drop the -lightning subpackage, it needs to be in its own SRPM
e75128
e75128
* Mon Feb  7 2011 Christopher Aillon <caillon@redhat.com> - 3.1.7-5
e75128
- Bring back the default mailer check but fix up the directory
e75128
e75128
* Wed Dec 15 2010 Jan Horak <jhorak@redhat.com> - 3.1.7-4
e75128
- Mozilla crash reporter enabled
e75128
e75128
* Thu Dec  9 2010 Jan Horak <jhorak@redhat.com> - 3.1.7-2
e75128
- Fixed useragent
e75128
e75128
* Thu Dec  9 2010 Jan Horak <jhorak@redhat.com> - 3.1.7-1
e75128
- Update to 3.1.7
e75128
e75128
* Sat Nov 27 2010 Remi Collet <fedora@famillecollet.com> - 3.1.6-8
e75128
- fix cairo + nspr required version
e75128
- lightning: fix thunderbird version required
e75128
- lightning: fix release (b3pre)
e75128
- lightning: clean install
e75128
e75128
* Mon Nov 22 2010 Jan Horak <jhorak@redhat.com> - 3.1.6-7
e75128
- Added x-scheme-handler/mailto to thunderbird.desktop file
e75128
e75128
* Mon Nov  8 2010 Jan Horak <jhorak@redhat.com> - 3.1.6-4
e75128
- Added libnotify patch
e75128
- Removed dependency on static libraries
e75128
e75128
* Fri Oct 29 2010 Jan Horak <jhorak@redhat.com> - 3.1.6-2
e75128
- Move thunderbird-lightning extension from Sunbird package to Thunderbird
e75128
e75128
* Wed Oct 27 2010 Jan Horak <jhorak@redhat.com> - 3.1.6-1
e75128
- Update to 3.1.6
e75128
e75128
* Tue Oct 19 2010 Jan Horak <jhorak@redhat.com> - 3.1.5-1
e75128
- Update to 3.1.5
e75128
e75128
* Thu Sep 16 2010 Dan Horák <dan[at]danny.cz> - 3.1.3-2
e75128
- fix build on s390
e75128
e75128
* Tue Sep  7 2010 Jan Horak <jhorak@redhat.com> - 3.1.3-1
e75128
- Update to 3.1.3
e75128
e75128
* Fri Aug  6 2010 Jan Horak <jhorak@redhat.com> - 3.1.2-1
e75128
- Update to 3.1.2
e75128
- Disable updater
e75128
e75128
* Tue Jul 20 2010 Jan Horak <jhorak@redhat.com> - 3.1.1-1
e75128
- Update to 3.1.1
e75128
e75128
* Thu Jun 24 2010 Jan Horak <jhorak@redhat.com> - 3.1-1
e75128
- Thunderbird 3.1
e75128
e75128
* Fri Jun 11 2010 Jan Horak <jhorak@redhat.com> - 3.1-0.3.rc2
e75128
- TryExec added to desktop file
e75128
e75128
* Wed Jun  9 2010 Christopher Aillon <caillon@redhat.com> 3.1-0.2.rc2
e75128
- Thunderbird 3.1 RC2
e75128
e75128
* Tue May 25 2010 Christopher Aillon <caillon@redhat.com> 3.1-0.1.rc1
e75128
- Thunderbird 3.1 RC1
e75128
e75128
* Fri Apr 30 2010 Jan Horak <jhorak@redhat.com> - 3.0.4-3
e75128
- Fix for mozbz#550455
e75128
e75128
* Tue Apr 13 2010 Martin Stransky <stransky@redhat.com> - 3.0.4-2
e75128
- Fixed langpacks (#580444)
e75128
e75128
* Tue Mar 30 2010 Jan Horak <jhorak@redhat.com> - 3.0.4-1
e75128
- Update to 3.0.4
e75128
e75128
* Sat Mar 06 2010 Kalev Lember <kalev@smartlink.ee> - 3.0.3-2
e75128
- Own extension directories (#532132)
e75128
e75128
* Mon Mar  1 2010 Jan Horak <jhorak@redhat.com> - 3.0.3-1
e75128
- Update to 3.0.3
e75128
e75128
* Thu Feb 25 2010 Jan Horak <jhorak@redhat.com> - 3.0.2-1
e75128
- Update to 3.0.2
e75128
e75128
* Wed Jan 20 2010 Martin Stransky <stransky@redhat.com> - 3.0.1-1
e75128
- Update to 3.0.1
e75128
e75128
* Mon Jan 18 2010 Martin Stransky <stransky@redhat.com> - 3.0-5
e75128
- Added fix for #480603 - thunderbird takes 
e75128
  unacceptably long time to start
e75128
e75128
* Wed Dec  9 2009 Jan Horak <jhorak@redhat.com> - 3.0-4
e75128
- Update to 3.0
e75128
e75128
* Thu Dec  3 2009 Jan Horak <jhorak@redhat.com> - 3.0-3.13.rc2
e75128
- Update to RC2
e75128
e75128
* Wed Nov 25 2009 Jan Horak <jhorak@redhat.com> - 3.0-3.12.rc1
e75128
- Sync with Mozilla latest RC1 build
e75128
e75128
* Thu Nov 19 2009 Jan Horak <jhorak@redhat.com> - 3.0-3.11.rc1
e75128
- Update to RC1
e75128
e75128
* Thu Sep 17 2009 Christopher Aillon <caillon@redhat.com> - 3.0-3.9.b4
e75128
- Update to 3.0 b4
e75128
e75128
* Thu Aug  6 2009 Martin Stransky <stransky@redhat.com> - 3.0-3.8.beta3
e75128
- Added fix for #437596
e75128
- Removed unused patches
e75128
e75128
* Thu Aug  6 2009 Jan Horak <jhorak@redhat.com> - 3.0-3.7.beta3
e75128
- Removed unused build requirements
e75128
e75128
* Mon Aug  3 2009 Jan Horak <jhorak@redhat.com> - 3.0-3.6.beta3
e75128
- Build with system hunspell
e75128
e75128
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-3.5.b3
e75128
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e75128
e75128
* Fri Jul 24 2009 Jan Horak <jhorak@redhat.com> - 3.0-2.5.beta3
e75128
- Use system hunspell
e75128
e75128
* Tue Jul 21 2009 Jan Horak <jhorak@redhat.com> - 3.0-2.4.beta3
e75128
- Update to 3.0 beta3
e75128
e75128
* Mon Mar 30 2009 Jan Horak <jhorak@redhat.com> - 3.0-2.2.beta2
e75128
- Fixed open-browser.sh to use xdg-open instead of gnome-open
e75128
e75128
* Mon Mar 23 2009 Christopher Aillon <caillon@redhat.com> - 3.0-2.1.beta2
e75128
- Disable the default app nag dialog
e75128
e75128
* Tue Mar 17 2009 Jan Horak <jhorak@redhat.com> - 3.0-2.beta2
e75128
- Fixed clicked link does not open in browser (#489120)
e75128
- Fixed missing help in thunderbird (#488885)
e75128
e75128
* Mon Mar  2 2009 Jan Horak <jhorak@redhat.com> - 3.0-1.beta2
e75128
- Update to 3.0 beta2
e75128
- Added Patch2 to build correctly when building with --enable-shared option 
e75128
e75128
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0.18-3
e75128
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e75128
e75128
* Wed Jan 07 2009 Christopher Aillon <caillon@redhat.com> - 2.0.0.18-2
e75128
- Disable the crash dialog
e75128
e75128
* Wed Nov 19 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.18-1
e75128
- Update to 2.0.0.18
e75128
e75128
* Thu Oct  9 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.17-1
e75128
- Update to 2.0.0.17
e75128
e75128
* Wed Jul 23 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.16-1
e75128
- Update to 2.0.0.16
e75128
e75128
* Thu May  1 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.14-1
e75128
- Update to 2.0.0.14
e75128
- Use the system dictionaries
e75128
e75128
* Fri Apr 18 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.12-6
e75128
- Icon belongs in _datadir/pixmaps
e75128
e75128
* Fri Apr 18 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.12-5
e75128
- rebuilt
e75128
e75128
* Mon Apr  7 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.12-4
e75128
- Add %%lang attributes to langpacks
e75128
e75128
* Sat Mar 15 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.12-3
e75128
- Avoid conflict between gecko debuginfos
e75128
e75128
* Mon Mar 03 2008 Martin Stransky <stransky@redhat.com> 2.0.0.12-2
e75128
- Updated starting script (#426331)
e75128
e75128
* Tue Feb 26 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.12-1
e75128
- Update to 2.0.0.12
e75128
- Fix up icon location and some scriptlets
e75128
e75128
* Sun Dec  9 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.9-2
e75128
- Fix some rpmlint warnings
e75128
- Drop some old patches and obsoletes
e75128
e75128
* Thu Nov 15 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.9-1
e75128
- Update to 2.0.0.9
e75128
e75128
* Wed Sep 26 2007 Martin Stransky <stransky@redhat.com> 2.0.0.6-6
e75128
- Fixed #242657 - firefox -g doesn't work
e75128
e75128
* Tue Sep 25 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-5
e75128
- Removed hardcoded MAX_PATH, PATH_MAX and MAXPATHLEN macros
e75128
e75128
* Tue Sep 11 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-4
e75128
- Fix crashes when using GTK+ themes containing a gtkrc which specify 
e75128
  GtkOptionMenu::indicator_size and GtkOptionMenu::indicator_spacing
e75128
e75128
* Mon Sep 10 2007 Martin Stransky <stransky@redhat.com> 2.0.0.6-3
e75128
- added fix for #246248 - firefox crashes when searching for word "do"
e75128
e75128
* Mon Aug 13 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-2
e75128
- Update the license tag
e75128
e75128
* Wed Aug  8 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-1
e75128
- Update to 2.0.0.6
e75128
- Own the application directory (#244901)
e75128
e75128
* Tue Jul 31 2007 Martin Stransky <stransky@redhat.com> 2.0.0.0-3
e75128
- added pango ligature fix
e75128
e75128
* Thu Apr 19 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-1
e75128
- Update to 2.0.0.0 Final
e75128
e75128
* Fri Apr 13 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-0.5.rc1
e75128
- Fix the desktop file
e75128
- Clean up the files list
e75128
- Remove the default client stuff from the pref window
e75128
e75128
* Thu Apr 12 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-0.4.rc1
e75128
- Rebuild into Fedora
e75128
e75128
* Wed Apr 11 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-0.3.rc1
e75128
- Update langpacks
e75128
e75128
* Thu Apr  5 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-0.2.rc1
e75128
- Build option tweaks
e75128
- Bring the install section to parity with Firefox's
e75128
e75128
* Thu Apr  5 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-0.1.rc1
e75128
- Update to 2.0.0.0 RC1
e75128
e75128
* Sun Mar 25 2007 Christopher Aillon <caillon@redhat.com> 1.5.0.11-1
e75128
- Update to 1.5.0.11
e75128
e75128
* Fri Mar 2 2007 Martin Stransky <stransky@redhat.com> 1.5.0.10-1
e75128
- Update to 1.5.0.10
e75128
e75128
* Mon Feb 12 2007 Martin Stransky <stransky@redhat.com> 1.5.0.9-8
e75128
- added fix for #227406: garbage characters on some websites
e75128
  (when pango is disabled)
e75128
  
e75128
* Tue Jan 30 2007 Christopher Aillon <caillon@redhat.com> 1.5.0.9-7
e75128
- Updated cursor position patch from tagoh to fix issue with "jumping"
e75128
  cursor when in a textfield with tabs.
e75128
e75128
* Tue Jan 30 2007 Christopher Aillon <caillon@redhat.com> 1.5.0.9-6
e75128
- Fix the DND implementation to not grab, so it works with new GTK+.
e75128
e75128
* Thu Dec 21 2006 Behdad Esfahbod <besfahbo@redhat.com> 1.5.0.9-5
e75128
- Added firefox-1.5-pango-underline.patch
e75128
e75128
* Wed Dec 20 2006 Behdad Esfahbod <besfahbo@redhat.com> 1.5.0.9-4
e75128
- Added firefox-1.5-pango-justified-range.patch
e75128
e75128
* Tue Dec 19 2006 Behdad Esfahbod <besfahbo@redhat.com> 1.5.0.9-3
e75128
- Added firefox-1.5-pango-cursor-position-more.patch
e75128
e75128
* Tue Dec 19 2006 Matthias Clasen <mclasen@redhat.com> 1.5.0.9-2
e75128
- Add a Requires: launchmail  (#219884)
e75128
e75128
* Tue Dec 19 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.9-1
e75128
- Update to 1.5.0.9
e75128
- Take firefox's pango fixes
e75128
- Don't offer to import...nothing.
e75128
e75128
* Tue Nov  7 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.8-1
e75128
- Update to 1.5.0.8
e75128
- Allow choosing of download directory
e75128
- Take the user to the correct directory from the Download Manager.
e75128
- Patch to add support for printing via pango from Behdad.
e75128
e75128
* Sun Oct  8 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.7-4
e75128
- Default to use of system colors
e75128
e75128
* Wed Oct  4 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.7-3
e75128
- Bring the invisible character to parity with GTK+
e75128
e75128
* Wed Sep 27 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.7-2
e75128
- Fix crash when changing gtk key theme
e75128
- Prevent UI freezes while changing GNOME theme
e75128
- Remove verbiage about pango; no longer required by upstream.
e75128
e75128
* Wed Sep 13 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.7-1
e75128
- Update to 1.5.0.7
e75128
e75128
* Thu Sep  7 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-8
e75128
- Shuffle order of the install phase around
e75128
e75128
* Thu Sep  7 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-7
e75128
- Let there be art for Alt+Tab again
e75128
- s/tbdir/mozappdir/g
e75128
e75128
* Wed Sep  6 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-6
e75128
- Fix for cursor position in editor widgets by tagoh and behdad (#198759)
e75128
e75128
* Tue Sep  5 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-5
e75128
- Update nopangoxft.patch
e75128
- Fix rendering of MathML thanks to Behdad Esfahbod.
e75128
- Update start page text to reflect the MathML fixes.
e75128
- Enable pango by default on all locales
e75128
- Build using -rpath
e75128
- Re-enable GCC visibility
e75128
e75128
* Thu Aug  3 2006 Kai Engert <kengert@redhat.com> - 1.5.0.5-4
e75128
- Fix a build failure in mailnews mime code.
e75128
e75128
* Tue Aug  1 2006 Matthias Clasen <mclasen@redhat.com> - 1.5.0.5-3
e75128
- Rebuild
e75128
e75128
* Thu Jul 27 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-2
e75128
- Update to 1.5.0.5
e75128
e75128
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.5.0.4-2.1
e75128
- rebuild
e75128
e75128
* Mon Jun 12 2006 Kai Engert <kengert@redhat.com> - 1.5.0.4-2
e75128
- Update to 1.5.0.4
e75128
- Fix desktop-file-utils requires
e75128
e75128
* Wed Apr 19 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.2-2
e75128
- Update to 1.5.0.2
e75128
e75128
* Thu Mar 16 2006 Christopher Aillon <caillon@redhat.com> - 1.5-7
e75128
- Bring the other arches back
e75128
e75128
* Mon Mar 13 2006 Christopher Aillon <caillon@redhat.com> - 1.5.6
e75128
- Temporarily disable other arches that we don't ship FC5 with, for time
e75128
e75128
* Mon Mar 13 2006 Christopher Aillon <caillon@redhat.com> - 1.5-5
e75128
- Add a notice to the mail start page denoting this is a pango enabled build.
e75128
e75128
* Fri Feb 10 2006 Christopher Aillon <caillon@redhat.com> - 1.5-3
e75128
- Add dumpstack.patch
e75128
- Improve the langpack install stuff
e75128
e75128
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.5-2.1
e75128
- rebuilt for new gcc4.1 snapshot and glibc changes
e75128
e75128
* Fri Jan 27 2006 Christopher Aillon <caillon@redhat.com> - 1.5-2
e75128
- Add some langpacks back in
e75128
- Stop providing MozillaThunderbird
e75128
e75128
* Thu Jan 12 2006 Christopher Aillon <caillon@redhat.com> - 1.5-1
e75128
- Official 1.5 release is out
e75128
e75128
* Wed Jan 11 2006 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.6.rc1
e75128
- Fix crash when deleting highlighted text while composing mail within
e75128
  plaintext editor with spellcheck enabled.
e75128
e75128
* Tue Jan  3 2006 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.5.rc1
e75128
- Looks like we can build on ppc64 again.
e75128
e75128
* Fri Dec 16 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.4.rc1
e75128
- Rebuild
e75128
e75128
* Fri Dec 16 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.3.rc1
e75128
- Once again, disable ppc64 because of a new issue.
e75128
  See https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=175944
e75128
e75128
- Use the system NSS libraries
e75128
- Build on ppc64
e75128
e75128
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
e75128
- rebuilt
e75128
e75128
* Mon Nov 28 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.1.rc1
e75128
- Fix issue with popup dialogs and other actions causing lockups
e75128
e75128
* Sat Nov  5 2005 Christopher Aillon <caillon@redhat.com> 1.5-0.5.0.rc1
e75128
- Update to 1.5 rc1
e75128
e75128
* Sat Oct  8 2005 Christopher Aillon <caillon@redhat.com> 1.5-0.5.0.beta2
e75128
- Update to 1.5 beta2
e75128
e75128
* Wed Sep 28 2005 Christopher Aillon <caillon@redhat.com> 1.5-0.5.0.beta1
e75128
- Update to 1.5 beta1
e75128
- Bring the install phase of the spec file up to speed
e75128
e75128
* Sun Aug 14 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-4
e75128
- Rebuild
e75128
e75128
* Sat Aug  6 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-3
e75128
- Add patch to make file chooser dialog modal
e75128
e75128
* Fri Jul 22 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-2
e75128
- Update to 1.0.6
e75128
e75128
* Mon Jul 18 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-0.1.fc5
e75128
- 1.0.6 Release Candidate
e75128
e75128
* Fri Jul 15 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-8
e75128
- Use system NSPR
e75128
- Fix crash on 64bit platforms (#160330)
e75128
e75128
* Thu Jun 23 2005 Kristian Høgsberg <krh@redhat.com>  1.0.2-7
e75128
- Add firefox-1.0-pango-cairo.patch to get rid of the last few Xft
e75128
  references, fixing the "no fonts" problem.
e75128
e75128
* Fri May 13 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-6
e75128
- Change the Exec line in the desktop file to `thunderbird`
e75128
e75128
* Fri May 13 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-5
e75128
- Update pango patche, MOZ_DISABLE_PANGO now works as advertised.
e75128
e75128
* Mon May  9 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-4
e75128
- Add temporary workaround to not create files in the user's $HOME (#149664)
e75128
e75128
* Wed May  4 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-3
e75128
- Don't have downloads "disappear" when downloading to desktop (#139015)
e75128
- Fix for some more cursor issues in textareas (149991, 150002, 152089)
e75128
- Add upstream patch to fix bidi justification of pango
e75128
- Add patch to fix launching of helper applications
e75128
- Add patch to properly link against libgfxshared_s.a
e75128
- Fix multilib conflicts
e75128
e75128
* Wed Apr 27 2005 Warren Togami <wtogami@redhat.com>
e75128
- correct confusing PANGO vars in startup script
e75128
e75128
* Wed Mar 23 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-1
e75128
- Thunderbird 1.0.2
e75128
e75128
* Tue Mar  8 2005 Christopher Aillon <caillon@redhat.com> 1.0-5
e75128
- Add patch to compile against new fortified glibc macros
e75128
e75128
* Sat Mar  5 2005 Christopher Aillon <caillon@redhat.com> 1.0-4
e75128
- Rebuild against GCC 4.0
e75128
- Add execshield patches
e75128
- Minor specfile cleanup
e75128
e75128
* Mon Dec 20 2004 Christopher Aillon <caillon@redhat.com> 1.0-3
e75128
- Rebuild
e75128
e75128
* Thu Dec 16 2004 Christopher Aillon <caillon@redhat.com> 1.0-2
e75128
- Add RPM version to useragent
e75128
e75128
* Thu Dec 16 2004 Christopher Blizzard <blizzard@redhat.com>
e75128
- Port over pango patches from firefox
e75128
e75128
* Wed Dec  8 2004 Christopher Aillon <caillon@redhat.com> 1.0-1
e75128
- Thunderbird 1.0
e75128
e75128
* Mon Dec  6 2004 Christopher Aillon <caillon@redhat.com> 1.0-0.rc1.1
e75128
- Fix advanced prefs
e75128
e75128
* Fri Dec  3 2004 Christopher Aillon <caillon@redhat.com>
e75128
- Make this run on s390(x) now for real
e75128
e75128
* Wed Dec  1 2004 Christopher Aillon <caillon@redhat.com> 1.0-0.rc1.0
e75128
- Update to 1.0 rc1
e75128
e75128
* Fri Nov 19 2004 Christopher Aillon <caillon@redhat.com>
e75128
- Add patches to build and run on s390(x)
e75128
e75128
* Thu Nov 11 2004 Christopher Aillon <caillon@redhat.com> 0.9.0-2
e75128
- Rebuild to fix file chooser
e75128
e75128
* Fri Nov  5 2004 Christopher Aillon <caillon@redhat.com> 0.9.0-1
e75128
- Update to 0.9
e75128
e75128
* Fri Oct 22 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-10
e75128
- Prevent inlining of stack direction detection (#135255)
e75128
e75128
* Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-9
e75128
- More file chooser fixes (same as in firefox)
e75128
- Fix for upstream 28327.
e75128
e75128
* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0.8.0-8
e75128
- Update the pango patch
e75128
e75128
* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0.8.0-8
e75128
- Pull over patches from firefox build:
e75128
  - disable default application dialog
e75128
  - don't include software update since it doesn't work
e75128
  - make external app support work
e75128
e75128
* Thu Oct 14 2004 Christopher Blizzard <blizzard@redhat.com> 0.8.0-7
e75128
- Use pango for rendering
e75128
e75128
* Tue Oct 12 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-6
e75128
- Fix for 64 bit crash at startup (b.m.o #256603)
e75128
e75128
* Sat Oct  9 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-5
e75128
- Add patches to fix xremote (#135036)
e75128
e75128
* Fri Oct  8 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-4
e75128
- Add patch to fix button focus issues (#133507)
e75128
- Add patch for fix IMAP race issues (bmo #246439)
e75128
e75128
* Fri Oct  1 2004 Bill Nottingham <notting@redhat.com> 0.8.0-3
e75128
- filter out library Provides: and internal Requires:
e75128
e75128
* Tue Sep 28 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-2
e75128
- Backport the GTK+ File Chooser.
e75128
- Add fix for JS math on x86_64 systems
e75128
- Add pkgconfig patch
e75128
e75128
* Thu Sep 16 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-1
e75128
- Update to 0.8.0
e75128
- Remove enigmail
e75128
- Update BuildRequires
e75128
- Remove gcc34 and extension manager patches -- they are upstreamed.
e75128
- Fix for gnome-vfs2 error at component registration
e75128
e75128
* Fri Sep 03 2004 Christopher Aillon <caillon@redhat.com> 0.7.3-5
e75128
- Build with --disable-xprint
e75128
e75128
* Wed Sep 01 2004 David Hill <djh[at]ii.net> 0.7.3-4
e75128
- remove all Xvfb-related hacks
e75128
e75128
* Wed Sep 01 2004 Warren Togami <wtogami@redhat.com> 
e75128
- actually apply psfonts
e75128
- add mozilla gnome-uriloader patch to prevent build failure
e75128
e75128
* Tue Aug 31 2004 Warren Togami <wtogami@redhat.com> 0.7.3-3
e75128
- rawhide import
e75128
- apply NetBSD's freetype 2.1.8 patch
e75128
- apply psfonts patch
e75128
- remove BR on /usr/bin/ex, breaks beehive
e75128
e75128
* Tue Aug 31 2004 David Hill <djh[at]ii.net> 0.7.3-0.fdr.2
e75128
- oops, fix %%install
e75128
e75128
* Thu Aug 26 2004 David Hill <djh[at]ii.net> 0.7.3-0.fdr.1
e75128
- update to Thunderbird 0.7.3 and Enigmail 0.85.0
e75128
- remove XUL.mfasl on startup, add Debian enigmail patches
e75128
- add Xvfb hack for -install-global-extension
e75128
e75128
* Wed Jul 14 2004 David Hill <djh[at]ii.net> 0.7.2-0.fdr.0
e75128
- update to 0.7.2, just because it's there
e75128
- update gcc-3.4 patch (Kaj Niemi)
e75128
- add EM registration patch and remove instdir hack
e75128
e75128
* Sun Jul 04 2004 David Hill <djh[at]ii.net> 0.7.1-0.fdr.1
e75128
- re-add Enigmime 1.0.7, omit Enigmail until the Mozilla EM problems are fixed
e75128
e75128
* Wed Jun 30 2004 David Hill <djh[at]ii.net> 0.7.1-0.fdr.0
e75128
- update to 0.7.1
e75128
- remove Enigmail
e75128
e75128
* Mon Jun 28 2004 David Hill <djh[at]ii.net> 0.7-0.fdr.1
e75128
- re-enable Enigmail 0.84.1
e75128
- add gcc-3.4 patch (Kaj Niemi)
e75128
- use official branding (with permission)
e75128
e75128
* Fri Jun 18 2004 David Hill <djh[at]ii.net> 0.7-0.fdr.0
e75128
- update to 0.7
e75128
- temporarily disable Enigmail 0.84.1, make ftp links work (#1634)
e75128
- specify libdir, change BR for apt (V. Skyttä, #1617)
e75128
e75128
* Tue May 18 2004 Warren Togami <wtogami@redhat.com> 0.6-0.fdr.5
e75128
- temporary workaround for enigmail skin "modern" bug
e75128
e75128
* Mon May 10 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.4
e75128
- update to Enigmail 0.84.0 
e75128
- update launch script
e75128
e75128
* Mon May 10 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.3
e75128
- installation directory now versioned
e75128
- allow root to run the program (for installing extensions)
e75128
- remove unnecessary %%pre and %%post
e75128
- remove separators, update mozconfig and launch script (M. Schwendt, #1460)
e75128
e75128
* Wed May 05 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.2
e75128
- include Enigmail, re-add release notes
e75128
- delete %%{_libdir}/thunderbird in %%pre
e75128
e75128
* Mon May 03 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.1
e75128
- update to Thunderbird 0.6
e75128
e75128
* Fri Apr 30 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.0.rc1
e75128
- update to Thunderbird 0.6 RC1
e75128
- add new icon, remove release notes
e75128
e75128
* Thu Apr 15 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.0.20040415
e75128
- update to latest CVS, update mozconfig and %%build accordingly
e75128
- update to Enigmail 0.83.6
e75128
- remove x-remote and x86_64 patches
e75128
- build with -Os
e75128
e75128
* Thu Apr 15 2004 David Hill <djh[at]ii.net> 0.5-0.fdr.12
e75128
- update x-remote patch
e75128
- more startup script fixes
e75128
e75128
* Tue Apr 06 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.11
e75128
- startup script fixes, and a minor cleanup
e75128
e75128
* Sun Apr 04 2004 Warren Togami <wtogami@redhat.com> 0:0.5-0.fdr.10
e75128
- Minor cleanups
e75128
e75128
* Sun Apr 04 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.8
e75128
- minor improvements to open-browser.sh and startup script
e75128
- update to latest version of Blizzard's x-remote patch
e75128
e75128
* Thu Mar 25 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.7
e75128
- update open-browser.sh, startup script, and BuildRequires
e75128
e75128
* Sun Mar 14 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.6
e75128
- update open-browser script, modify BuildRequires (Warren)
e75128
- add Blizzard's x-remote patch
e75128
- initial attempt at x-remote-enabled startup script
e75128
e75128
* Sun Mar 07 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.5
e75128
- refuse to run with excessive privileges
e75128
e75128
* Fri Feb 27 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.4
e75128
- add Mozilla x86_64 patch (Oliver Sontag)
e75128
- Enigmail source filenames now include the version
e75128
- modify BuildRoot
e75128
e75128
* Thu Feb 26 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.3
e75128
- use the updated official tarball
e75128
e75128
* Wed Feb 18 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.2
e75128
- fix %%prep script
e75128
e75128
* Mon Feb 16 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.1
e75128
- update Enigmail to 0.83.3
e75128
- use official source tarball (after removing the CRLFs)
e75128
- package renamed to thunderbird
e75128
e75128
* Mon Feb 09 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.0
e75128
- update to 0.5
e75128
- check for lockfile before launching
e75128
e75128
* Fri Feb 06 2004 David Hill <djh[at]ii.net>
e75128
- update to latest cvs
e75128
- update to Enigmail 0.83.2
e75128
e75128
* Thu Jan 29 2004 David Hill <djh[at]ii.net> 0:0.4-0.fdr.5
e75128
- update to Enigmail 0.83.1
e75128
- removed Mozilla/Firebird script patching
e75128
e75128
* Sat Jan 03 2004 David Hill <djh[at]ii.net> 0:0.4-0.fdr.4
e75128
- add startup notification to .desktop file
e75128
e75128
* Thu Dec 25 2003 Warren Togami <warren@togami.com> 0:0.4-0.fdr.3
e75128
- open-browser.sh release 3
e75128
- patch broken /usr/bin/mozilla script during install
e75128
- dir ownership
e75128
- XXX: Source fails build on x86_64... fix later
e75128
e75128
* Tue Dec 23 2003 David Hill <djh[at]ii.net> 0:0.4-0.fdr.2
e75128
- update to Enigmail 0.82.5
e75128
- add Warren's open-browser.sh (#1113)
e75128
e75128
* Tue Dec 09 2003 David Hill <djh[at]ii.net> 0:0.4-0.fdr.1
e75128
- use Thunderbird's mozilla-xremote-client to launch browser
e75128
e75128
* Sun Dec 07 2003 David Hill <djh[at]ii.net> 0:0.4-0.fdr.0
e75128
- update to 0.4
e75128
- make hyperlinks work (with recent versions of Firebird/Mozilla)
e75128
e75128
* Thu Dec 04 2003 David Hill <djh[at]ii.net>
e75128
- update to 0.4rc2
e75128
e75128
* Wed Dec 03 2003 David Hill <djh[at]ii.net>
e75128
- update to 0.4rc1 and Enigmail 0.82.4
e75128
e75128
* Thu Nov 27 2003 David Hill <djh[at]ii.net>
e75128
- update to latest CVS and Enigmail 0.82.3
e75128
e75128
* Sun Nov 16 2003 David Hill <djh[at]ii.net>
e75128
- update to latest CVS (0.4a)
e75128
- update Enigmail to 0.82.2
e75128
- alter mozconfig for new build requirements
e75128
- add missing BuildReq (#987)
e75128
e75128
* Thu Oct 16 2003 David Hill <djh[at]ii.net> 0:0.3-0.fdr.0
e75128
- update to 0.3
e75128
e75128
* Sun Oct 12 2003 David Hill <djh[at]ii.net> 0:0.3rc3-0.fdr.0
e75128
- update to 0.3rc3
e75128
- update Enigmail to 0.81.7
e75128
e75128
* Thu Oct 02 2003 David Hill <djh[at]ii.net> 0:0.3rc2-0.fdr.0
e75128
- update to 0.3rc2
e75128
e75128
* Wed Sep 17 2003 David Hill <djh[at]ii.net> 0:0.2-0.fdr.2
e75128
- simplify startup script
e75128
e75128
* Wed Sep 10 2003 David Hill <djh[at]ii.net> 0:0.2-0.fdr.1
e75128
- add GPG support (Enigmail 0.81.6)
e75128
- specfile fixes (#679)
e75128
e75128
* Thu Sep 04 2003 David Hill <djh[at]ii.net> 0:0.2-0.fdr.0
e75128
- update to 0.2
e75128
e75128
* Mon Sep 01 2003 David Hill <djh[at]ii.net>
e75128
- initial RPM
e75128
  (based on the fedora MozillaFirebird-0.6.1 specfile)