f1b26c
# Set for local builds only
f1b26c
%global disable_toolsets  0
f1b26c
8a9c29
%ifarch %{ix86}
8a9c29
  # no debug package for the i686 because oom on i686 with debuginfos
8a9c29
  #FIXME revise if still necessary
8a9c29
  %global debug_package %{nil}
f1b26c
%endif
f1b26c
c691a2
%{lua:
c691a2
function dist_to_rhel_minor(str, start)
c691a2
  match = string.match(str, ".module%+el8.%d+")
c691a2
  if match then
c691a2
     return string.sub(match, 13)
c691a2
  end
c691a2
  match = string.match(str, ".el8_%d+")
c691a2
  if match then
c691a2
     return string.sub(match, 6)
c691a2
  end
c691a2
  match = string.match(str, ".el8")
c691a2
  if match then
356140
     return 7
c691a2
  end
c691a2
  return -1
c691a2
end}
c691a2
c691a2
%global rhel_minor_version %{lua:print(dist_to_rhel_minor(rpm.expand("%dist")))}
8a9c29
%global build_with_clang  0
f1b26c
f1b26c
%global system_nss        1
f1b26c
%global bundle_nss        0
f1b26c
92e660
%if 0%{?rhel} == 8
8a9c29
  %if %{rhel_minor_version} < 3
8a9c29
    %global bundle_nss        1
8a9c29
    %global system_nss        1
f1b26c
  %endif
92e660
%endif
f1b26c
f1b26c
%define use_bundled_ffi   0
f1b26c
f1b26c
# Don't use system hunspell for now
f1b26c
%global system_hunspell   0
025a5f
%global use_llvmts        0
8a9c29
%global use_nodejsts      0
8a9c29
%if 0%{?rhel} < 8
025a5f
%global use_llvmts        1
8a9c29
%global use_nodejsts      1
025a5f
%endif
969f7f
8a9c29
%global nodejs_rb         nodejs
8a9c29
%global llvm_version      7.0
8a9c29
8a9c29
%if 0%{?rhel} == 8
8a9c29
%global llvm_version      6.0
f1b26c
%endif
8a9c29
8a9c29
%if 0%{?rhel} == 7
8a9c29
  %global use_dts         1
8a9c29
  %global nodejs_rb       rh-nodejs10-nodejs
8a9c29
  %global llvm_version    11.0
969f7f
%endif
969f7f
969f7f
%global use_rustts        1
8a9c29
%if 0%{?rhel} >= 9
8a9c29
  %global use_rustts      0
969f7f
%endif
025a5f
8a9c29
%global dts_version       10
8a9c29
%global rust_version      1.52
8a9c29
025a5f
%if 0%{?disable_toolsets}
025a5f
%global use_rustts        0
025a5f
%global use_dts           0
025a5f
%global use_llvmts        0
025a5f
%endif
025a5f
969f7f
# Big endian platforms
969f7f
%ifarch ppc64 s390x
969f7f
# Javascript Intl API is not supported on big endian platforms right now:
969f7f
# https://bugzilla.mozilla.org/show_bug.cgi?id=1322212
f1b26c
%global big_endian        1
969f7f
%endif
969f7f
f1b26c
# Hardened build?
f1b26c
%global hardened_build    1
f1b26c
f1b26c
%ifarch %{ix86} x86_64
f1b26c
%global run_tests         0
f1b26c
%else
f1b26c
%global run_tests         0
f1b26c
%endif
969f7f
f1b26c
# Build as a debug package?
f1b26c
%global debug_build       0
969f7f
969f7f
%define thunderbird_app_id      \{3550f703-e582-4d05-9a08-453d09bdfdc6\}
f1b26c
# Minimal required versions
969f7f
f1b26c
%if 0%{?system_nss}
8a9c29
%global nspr_version 4.32
f1b26c
# NSS/NSPR quite often ends in build override, so as requirement the version
f1b26c
# we're building against could bring us some broken dependencies from time to time.
8a9c29
#%global nspr_build_version %(pkg-config --silence-errors --modversion nspr 2>/dev/null || echo 65536)
f1b26c
%global nspr_build_version %{nspr_version}
f1b26c
%global nss_version 3.53.1
8a9c29
#%global nss_build_version %(pkg-config --silence-errors --modversion nss 2>/dev/null || echo 65536)
f1b26c
%global nss_build_version %{nss_version}
969f7f
%endif
969f7f
f1b26c
# GTK3 bundling
f1b26c
%define avoid_bundled_rebuild   0
f1b26c
8a9c29
%define bundled_install_path %{mozappdir}/bundled
969f7f
969f7f
# We could use %%include, but in %%files, %%post and other sections, but in these
969f7f
# sections it could lead to syntax errors about unclosed %%if. Work around it by
969f7f
# using the following macro
969f7f
%define include_file() %{expand:%(cat '%1')}
969f7f
f1b26c
%global mozappdir     %{_libdir}/%{name}
f1b26c
%global mozappdirdev  %{_libdir}/%{name}-devel-%{version}
8a9c29
%global langpackdir   %{mozappdir}/extensions
f1b26c
%global tarballdir    %{name}-%{version}
f1b26c
#global pre_tag       alpha
969f7f
f1b26c
%global official_branding       1
f1b26c
%global build_langpacks         1
969f7f
Summary:        Mozilla Thunderbird mail/newsgroup client
969f7f
Name:           thunderbird
356140
Version:        91.9.0
356140
Release:        3%{?dist}
969f7f
URL:            http://www.mozilla.org/projects/thunderbird/
969f7f
License:        MPLv1.1 or GPLv2+ or LGPLv2+
969f7f
Group:          Applications/Internet
969f7f
8a9c29
%if 0%{?rhel} == 9
8a9c29
ExcludeArch:    %{ix86}
8a9c29
%endif
8a9c29
%if 0%{?rhel} == 8
234792
  %if %{rhel_minor_version} == 1
234792
ExcludeArch:    %{ix86} aarch64 s390x
234792
  %else
8a9c29
ExcludeArch:    %{ix86}
234792
  %endif
8a9c29
%endif
969f7f
%if 0%{?rhel} == 7
234792
ExcludeArch:    aarch64 s390 ppc
969f7f
%endif
969f7f
8a9c29
# We can't use the official tarball as it contains some test files that use
8a9c29
# licenses that are rejected by Red Hat Legal.
8a9c29
# The official tarball has to be always processed by the process-official-tarball
8a9c29
# script.
13bb52
# Link to official tarball: https://archive.mozilla.org/pub/thunderbird/releases/%%{version}%%{?pre_version}/source/thunderbird-%%{version}%%{?pre_version}.source.tar.xz
8a9c29
Source0:        thunderbird-%{version}%{?pre_version}.processed-source.tar.xz
969f7f
%if %{build_langpacks}
356140
Source1:        thunderbird-langpacks-%{version}%{?ext_version}-20220503.tar.xz
969f7f
%endif
8a9c29
Source2:        cbindgen-vendor.tar.xz
969f7f
Source3:        get-calendar-langpacks.sh
8a9c29
Source4:        process-official-tarball
969f7f
969f7f
Source10:       thunderbird-mozconfig
969f7f
Source20:       thunderbird.desktop
969f7f
Source21:       thunderbird.sh.in
969f7f
Source24:       mozilla-api-key
969f7f
Source27:       google-api-key
025a5f
Source28:       node-stdout-nonblocking-wrapper
356140
Source701:      thunderbird-redhat-default-prefs.js.rhel7
8a9c29
436ed5
Source403:      nss-3.67.0-7.el8_1.src.rpm
f1b26c
Source401:      nss-setup-flags-env.inc
8a9c29
Source402:      nspr-4.32.0-1.el8_1.src.rpm
8a9c29
969f7f
# Build patches
025a5f
# workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1699374
025a5f
Patch1001:      build-ppc64le-inline.patch
025a5f
Patch1003:      python-missing-utimensat.patch
8a9c29
Patch1008:        build-rhel7-nasm-dwarf.patch
8a9c29
Patch1009:        build-debuginfo-fix.patch
025a5f
# workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1699374
969f7f
Patch4:         build-mozconfig-fix.patch
969f7f
Patch6:         build-nss-version.patch
969f7f
969f7f
# Fedora/RHEL specific patches
969f7f
Patch215:        firefox-enable-addons.patch
969f7f
Patch219:        rhbz-1173156.patch
969f7f
Patch224:        mozilla-1170092.patch
c95b84
Patch237:        disable-openpgp-in-thunderbird.patch
969f7f
969f7f
# Upstream patches
969f7f
f1b26c
Patch503:        mozilla-s390-context.patch
f1b26c
Patch505:        mozilla-bmo1005535.patch
f1b26c
Patch506:        mozilla-bmo1504834-part1.patch
f1b26c
Patch507:        mozilla-bmo1504834-part2.patch
f1b26c
Patch508:        mozilla-bmo1504834-part3.patch
f1b26c
Patch509:        mozilla-bmo1504834-part4.patch
f1b26c
Patch510:        mozilla-bmo1554971.patch
f1b26c
Patch511:        mozilla-bmo1602730.patch
f1b26c
Patch512:        mozilla-bmo849632.patch
f1b26c
Patch513:        mozilla-bmo998749.patch
f1b26c
Patch514:        mozilla-s390x-skia-gradient.patch
f1b26c
Patch515:        mozilla-bmo1626236.patch
71fa08
Patch516:        expat-CVE-2022-25235.patch
71fa08
Patch517:        expat-CVE-2022-25236.patch
71fa08
Patch518:        expat-CVE-2022-25315.patch
969f7f
f1b26c
%if %{?system_nss}
f1b26c
%if !0%{?bundle_nss}
f1b26c
BuildRequires:  pkgconfig(nspr) >= %{nspr_version}
f1b26c
BuildRequires:  pkgconfig(nss) >= %{nss_version}
f1b26c
BuildRequires:  nss-static >= %{nss_version}
f1b26c
%endif
f1b26c
%endif
969f7f
BuildRequires:  pkgconfig(libpng)
969f7f
BuildRequires:  xz
f1b26c
BuildRequires:  libXt-devel
f1b26c
BuildRequires:  mesa-libGL-devel
969f7f
Requires:       liberation-fonts-common
969f7f
Requires:       liberation-sans-fonts
969f7f
BuildRequires:  libjpeg-devel
f1b26c
BuildRequires:  zip
f1b26c
BuildRequires:  bzip2-devel
f1b26c
BuildRequires:  pkgconfig(zlib)
f1b26c
BuildRequires:  pkgconfig(gtk+-2.0)
f1b26c
BuildRequires:  krb5-devel
f1b26c
BuildRequires:  pkgconfig(pango)
8a9c29
BuildRequires:  pkgconfig(freetype2) >= 2.1.9
f1b26c
BuildRequires:  pkgconfig(xt)
f1b26c
BuildRequires:  pkgconfig(xrender)
f1b26c
%if %{?system_hunspell}
f1b26c
BuildRequires:  hunspell-devel
969f7f
%endif
f1b26c
BuildRequires:  pkgconfig(libstartup-notification-1.0)
f1b26c
BuildRequires:  pkgconfig(libnotify)
f1b26c
BuildRequires:  pkgconfig(dri)
f1b26c
BuildRequires:  pkgconfig(libcurl)
f1b26c
BuildRequires:  dbus-glib-devel
8a9c29
BuildRequires:  m4
8a9c29
f1b26c
BuildRequires:  pkgconfig(libpulse)
969f7f
969f7f
%if 0%{?use_dts}
969f7f
BuildRequires:  devtoolset-%{dts_version}-gcc-c++
969f7f
BuildRequires:  devtoolset-%{dts_version}-gcc
969f7f
BuildRequires:  devtoolset-%{dts_version}-libatomic-devel
969f7f
%endif
8a9c29
%if 0%{?rhel} == 9
8a9c29
BuildRequires:  gcc
8a9c29
BuildRequires:  gcc-c++
8a9c29
BuildRequires:  cargo
8a9c29
BuildRequires:  rust
8a9c29
BuildRequires:  clang clang-libs llvm
969f7f
%endif
f1b26c
025a5f
BuildRequires:  scl-utils
f1b26c
BuildRequires:  findutils
f1b26c
8a9c29
BuildRequires:  %{nodejs_rb} >= 10.21
8a9c29
BuildRequires:  python3
f1b26c
969f7f
%if 0%{?rhel} == 8
969f7f
BuildRequires:  cargo
025a5f
BuildRequires:  rust >= %{rust_version}
969f7f
BuildRequires:  llvm >= %{llvm_version}
969f7f
BuildRequires:  llvm-devel >= %{llvm_version}
969f7f
BuildRequires:  clang >= %{llvm_version}
024a14
BuildRequires:  clang-devel >= %{llvm_version}
f1b26c
BuildRequires:  rustfmt >= %{rust_version}
025a5f
%else
025a5f
%if 0%{?use_rustts}
8a9c29
BuildRequires:  rust-toolset-%{rust_version}
f1b26c
%endif
025a5f
%if 0%{?use_llvmts}
025a5f
BuildRequires:  llvm-toolset-%{llvm_version}
025a5f
BuildRequires:  llvm-toolset-%{llvm_version}-llvm-devel
8a9c29
BuildRequires:  llvm-toolset-%{llvm_version}-clang
8a9c29
BuildRequires:  llvm-toolset-%{llvm_version}-clang-devel
025a5f
%endif
025a5f
%endif
025a5f
8a9c29
BuildRequires:  nasm
8a9c29
%if %{build_with_clang}
8a9c29
BuildRequires:  lld
f1b26c
%endif
f1b26c
f1b26c
%if 0%{?rhel} == 8
c691a2
  %if %{rhel_minor_version} >= 3
f1b26c
BuildRequires:  pkgconfig(libpipewire-0.3)
f1b26c
  %else
f1b26c
BuildRequires:  pipewire-devel
f1b26c
  %endif
969f7f
%endif
969f7f
969f7f
BuildRequires:        gtk3-devel
969f7f
BuildRequires:        glib2-devel
8a9c29
BuildRequires:        perl-interpreter
f1b26c
f1b26c
# Bundled nss/nspr requirement
f1b26c
%if 0%{?bundle_nss}
f1b26c
BuildRequires:    nss-softokn
f1b26c
BuildRequires:    sqlite-devel
f1b26c
BuildRequires:    zlib-devel
f1b26c
BuildRequires:    pkgconfig
f1b26c
BuildRequires:    gawk
f1b26c
BuildRequires:    psmisc
f1b26c
BuildRequires:    gcc-c++
f1b26c
BuildRequires:    xmlto
f1b26c
%endif
f1b26c
8a9c29
f1b26c
Requires:       mozilla-filesystem
f1b26c
Requires:       p11-kit-trust
969f7f
%if %{?system_nss}
f1b26c
%if !0%{?bundle_nss}
f1b26c
Requires:       nspr >= %{nspr_build_version}
f1b26c
Requires:       nss >= %{nss_build_version}
f1b26c
%endif
969f7f
%endif
969f7f
f1b26c
BuildRequires:  desktop-file-utils
f1b26c
BuildRequires:  system-bookmarks
f1b26c
Requires:       redhat-indexhtml
f1b26c
f1b26c
%if %{?run_tests}
f1b26c
BuildRequires:  xorg-x11-server-Xvfb
969f7f
%endif
f1b26c
969f7f
BuildRequires:  pkgconfig(libffi)
44d8f9
44d8f9
%if 0%{?big_endian}
44d8f9
  %if 0%{?flatpak}
44d8f9
BuildRequires:  icu
44d8f9
  %endif
44d8f9
%endif
44d8f9
969f7f
Obsoletes:      thunderbird-lightning
969f7f
# ==================================================================================
969f7f
8a9c29
# Bundled libraries
8a9c29
Provides: bundled(angle)
8a9c29
Provides: bundled(cairo)
8a9c29
Provides: bundled(graphite2)
8a9c29
Provides: bundled(harfbuzz)
8a9c29
Provides: bundled(ots)
8a9c29
Provides: bundled(sfntly)
8a9c29
Provides: bundled(skia)
8a9c29
Provides: bundled(thebes)
8a9c29
Provides: bundled(WebRender)
8a9c29
Provides: bundled(audioipc-2)
8a9c29
Provides: bundled(ffvpx)
8a9c29
Provides: bundled(kissfft)
8a9c29
Provides: bundled(libaom)
8a9c29
Provides: bundled(libcubeb)
8a9c29
Provides: bundled(libdav1d)
8a9c29
Provides: bundled(libjpeg)
8a9c29
Provides: bundled(libmkv)
8a9c29
Provides: bundled(libnestegg)
8a9c29
Provides: bundled(libogg)
8a9c29
Provides: bundled(libopus)
8a9c29
Provides: bundled(libpng)
8a9c29
Provides: bundled(libsoundtouch)
8a9c29
Provides: bundled(libspeex_resampler)
8a9c29
Provides: bundled(libtheora)
8a9c29
Provides: bundled(libtremor)
8a9c29
Provides: bundled(libvorbis)
8a9c29
Provides: bundled(libvpx)
8a9c29
Provides: bundled(libwebp)
8a9c29
Provides: bundled(libyuv)
8a9c29
Provides: bundled(mp4parse-rust)
8a9c29
Provides: bundled(mtransport)
8a9c29
Provides: bundled(openmax_dl)
8a9c29
Provides: bundled(double-conversion)
8a9c29
Provides: bundled(brotli)
8a9c29
Provides: bundled(fdlibm)
8a9c29
Provides: bundled(freetype2)
8a9c29
Provides: bundled(libmar)
8a9c29
Provides: bundled(woff2)
8a9c29
Provides: bundled(xz-embedded)
8a9c29
Provides: bundled(zlib)
8a9c29
Provides: bundled(expat)
8a9c29
Provides: bundled(msgpack-c)
8a9c29
Provides: bundled(libprio)
8a9c29
Provides: bundled(rlbox_sandboxing_api)
8a9c29
Provides: bundled(sqlite3)
8a9c29
8a9c29
%if 0%{?bundle_nss}
8a9c29
Provides: bundled(nss) = 3.67.0
8a9c29
Provides: bundled(nspr) = 4.32.0
8a9c29
%endif
969f7f
%description
969f7f
Mozilla Thunderbird is a standalone mail and newsgroup client.
969f7f
969f7f
969f7f
%prep
f1b26c
echo "Build environment"
f1b26c
echo "dist                  %{?dist}"
c691a2
echo "RHEL 8 minor version: %{rhel_minor_version}"
f1b26c
echo "use_bundled_ffi       %{?use_bundled_ffi}"
f1b26c
echo "bundle_nss            %{?bundle_nss}"
f1b26c
echo "system_nss            %{?system_nss}"
f1b26c
echo "use_rustts            %{?use_rustts}"
f1b26c
f1b26c
969f7f
%setup -q -n %{tarballdir}
969f7f
# Firefox patches
969f7f
969f7f
%patch4  -p1 -b .build-mozconfig-fix
8a9c29
%patch6  -p1 -b .nss-version
969f7f
969f7f
# Fedora patches
969f7f
%patch215 -p1 -b .addons
969f7f
%patch219 -p1 -b .rhbz-1173156
fb5326
%patch224 -p1 -b .1170092
c691a2
969f7f
# Patch for big endian platforms only
969f7f
%if 0%{?big_endian}
969f7f
%endif
969f7f
969f7f
# Thunderbird patches
f1b26c
%patch503 -p1 -b .mozilla-s390-context
f1b26c
%patch505 -p1 -b .mozilla-bmo1005535
f1b26c
%patch506 -p1 -b .mozilla-bmo1504834-part1
f1b26c
%patch507 -p1 -b .mozilla-bmo1504834-part2
f1b26c
%patch508 -p1 -b .mozilla-bmo1504834-part3
f1b26c
%patch509 -p1 -b .mozilla-bmo1504834-part4
f1b26c
%patch510 -p1 -b .mozilla-bmo1554971
f1b26c
%patch511 -p1 -b .mozilla-bmo1602730
f1b26c
%patch512 -p1 -b .mozilla-bmo849632
f1b26c
%patch513 -p1 -b .mozilla-bmo998749
f1b26c
%patch514 -p1 -b .mozilla-s390x-skia-gradient
f1b26c
%patch515 -p1 -b .mozilla-bmo1626236
71fa08
%patch516 -p1 -b .expat-CVE-2022-25235
71fa08
%patch517 -p1 -b .expat-CVE-2022-25236
71fa08
%patch518 -p1 -b .expat-CVE-2022-25315
8a9c29
%patch237 -p1 -b .disable-openpgp-in-thunderbird
f1b26c
f1b26c
025a5f
%patch1001 -p1 -b .ppc64le-inline
8a9c29
%if 0%{?rhel} == 7
8a9c29
# fix the /usr/lib/rpm/debugedit: canonicalization unexpectedly shrank by one character
8a9c29
%patch1009 -p1 -b .build-debuginfo-fix
8a9c29
  %ifarch %{ix86}
8a9c29
# -F dwarf not available in RHEL7's nasm
8a9c29
%patch1008 -p1 -b .build-rhel7-nasm-dwarf
8a9c29
  %endif
92e660
%endif
92e660
969f7f
%{__rm} -f .mozconfig
969f7f
%{__cp} %{SOURCE10} .mozconfig
969f7f
# Modify mozconfig file
969f7f
%if %{official_branding}
8a9c29
echo "ac_add_options --enable-official-branding" >> .mozconfig
969f7f
%endif
969f7f
%{__cp} %{SOURCE24} mozilla-api-key
969f7f
%{__cp} %{SOURCE27} google-api-key
969f7f
969f7f
%if %{?system_nss}
8a9c29
echo "ac_add_options --with-system-nspr" >> .mozconfig
8a9c29
echo "ac_add_options --with-system-nss" >> .mozconfig
969f7f
%else
8a9c29
echo "ac_add_options --without-system-nspr" >> .mozconfig
8a9c29
echo "ac_add_options --without-system-nss" >> .mozconfig
969f7f
%endif
969f7f
8a9c29
%ifarch %{ix86} x86_64
8a9c29
echo "ac_add_options --disable-elf-hack" >> .mozconfig
969f7f
%endif
969f7f
f1b26c
%if %{?system_hunspell}
f1b26c
echo "ac_add_options --enable-system-hunspell" >> .mozconfig
f1b26c
%endif
f1b26c
969f7f
%if %{?debug_build}
8a9c29
echo "ac_add_options --enable-debug" >> .mozconfig
8a9c29
echo "ac_add_options --disable-optimize" >> .mozconfig
969f7f
%else
969f7f
%global optimize_flags "-g -O2"
8a9c29
%ifarch s390x
f1b26c
%global optimize_flags "-g -O1"
969f7f
%endif
969f7f
%ifarch ppc64le aarch64
969f7f
%global optimize_flags "-g -O2"
969f7f
%endif
969f7f
%if %{optimize_flags} != "none"
969f7f
echo 'ac_add_options --enable-optimize=%{?optimize_flags}' >> .mozconfig
969f7f
%else
969f7f
echo 'ac_add_options --enable-optimize' >> .mozconfig
969f7f
%endif
969f7f
echo "ac_add_options --disable-debug" >> .mozconfig
969f7f
%endif
969f7f
969f7f
# Second arches fail to start with jemalloc enabled
969f7f
%ifnarch %{ix86} x86_64
969f7f
echo "ac_add_options --disable-jemalloc" >> .mozconfig
969f7f
%endif
969f7f
969f7f
%ifnarch %{ix86} x86_64
969f7f
echo "ac_add_options --disable-webrtc" >> .mozconfig
969f7f
%endif
969f7f
8a9c29
%ifarch s390x
f1b26c
echo "ac_add_options --disable-jit" >> .mozconfig
f1b26c
%endif
f1b26c
f1b26c
%ifnarch %{ix86}
f1b26c
%if !0%{?debug_build}
f1b26c
echo "ac_add_options --disable-debug-symbols" >> .mozconfig
f1b26c
%endif
969f7f
%endif
969f7f
8a9c29
# AV1 requires newer nasm that was rebased in 8.4
13bb52
%if 0%{?rhel} == 7 || (0%{?rhel} == 8 && 0%{rhel_minor_version} < 4)
8a9c29
echo "ac_add_options --disable-av1" >> .mozconfig
8a9c29
%endif
8a9c29
025a5f
echo 'export NODEJS="%{_buildrootdir}/bin/node-stdout-nonblocking-wrapper"' >> .mozconfig
969f7f
8a9c29
cat .mozconfig
8a9c29
969f7f
# Remove executable bit to make brp-mangle-shebangs happy.
969f7f
chmod -x third_party/rust/itertools/src/lib.rs
f1b26c
chmod a-x third_party/rust/gfx-backend-vulkan/src/*.rs
f1b26c
chmod a-x third_party/rust/gfx-hal/src/*.rs
f1b26c
chmod a-x third_party/rust/ash/src/extensions/ext/*.rs
f1b26c
chmod a-x third_party/rust/ash/src/extensions/khr/*.rs
f1b26c
chmod a-x third_party/rust/ash/src/extensions/mvk/*.rs
f1b26c
chmod a-x third_party/rust/ash/src/extensions/nv/*.rs
969f7f
8a9c29
#---------------------------------------------------------------------
969f7f
969f7f
%build
8a9c29
# Disable LTO to work around rhbz#1883904
8a9c29
%define _lto_cflags %{nil}
f1b26c
ulimit -a
f1b26c
free
f1b26c
#set -e
025a5f
# Hack for missing shell when building in brew on RHEL6
969f7f
969f7f
%if ! 0%{?avoid_bundled_rebuild}
969f7f
    rm -rf %{_buildrootdir}/*
969f7f
%endif
969f7f
export PATH="%{_buildrootdir}/bin:$PATH"
969f7f
969f7f
function install_rpms_to_current_dir() {
969f7f
    PACKAGE_RPM=$(eval echo $1)
969f7f
    PACKAGE_DIR=%{_rpmdir}
969f7f
969f7f
    if [ ! -f $PACKAGE_DIR/$PACKAGE_RPM ]; then
969f7f
        # Hack for tps tests
969f7f
        ARCH_STR=%{_arch}
8a9c29
        %ifarch %{ix86}
969f7f
            ARCH_STR="i?86"
969f7f
        %endif
8a9c29
        PACKAGE_DIR="$PACKAGE_DIR/$ARCH_STR"
969f7f
     fi
969f7f
969f7f
     for package in $(ls $PACKAGE_DIR/$PACKAGE_RPM)
969f7f
     do
969f7f
         echo "$package"
969f7f
         rpm2cpio "$package" | cpio -idu
969f7f
     done
969f7f
}
969f7f
969f7f
function build_bundled_package() {
969f7f
  PACKAGE_RPM=$1
969f7f
  PACKAGE_FILES=$2
969f7f
  PACKAGE_SOURCE=$3
f1b26c
  PACKAGE_BUILD_OPTIONS=$4
025a5f
  export PACKAGE_DIR="%{_topdir}/RPMS"
969f7f
969f7f
  PACKAGE_ALREADY_BUILD=0
969f7f
  %if %{?avoid_bundled_rebuild}
969f7f
    if ls $PACKAGE_DIR/$PACKAGE_RPM; then
969f7f
      PACKAGE_ALREADY_BUILD=1
969f7f
    fi
969f7f
    if ls $PACKAGE_DIR/%{_arch}/$PACKAGE_RPM; then
969f7f
      PACKAGE_ALREADY_BUILD=1
969f7f
    fi
969f7f
  %endif
969f7f
  if [ $PACKAGE_ALREADY_BUILD == 0 ]; then
969f7f
    echo "Rebuilding $PACKAGE_RPM from $PACKAGE_SOURCE"; echo "==============================="
f1b26c
    rpmbuild --nodeps $PACKAGE_BUILD_OPTIONS --rebuild $PACKAGE_SOURCE
f1b26c
    cat /var/tmp/rpm-tmp*
969f7f
  fi
969f7f
f1b26c
  find $PACKAGE_DIR
969f7f
  if [ ! -f $PACKAGE_DIR/$PACKAGE_RPM ]; then
969f7f
    # Hack for tps tests
969f7f
    ARCH_STR=%{_arch}
8a9c29
    %ifarch %{ix86}
969f7f
    ARCH_STR="i?86"
969f7f
    %endif
8a9c29
    export PACKAGE_DIR="$PACKAGE_DIR/$ARCH_STR"
969f7f
  fi
969f7f
  pushd $PACKAGE_DIR
025a5f
969f7f
  echo "Installing $PACKAGE_DIR/$PACKAGE_RPM"; echo "==============================="
f1b26c
  pwd
025a5f
  PACKAGE_LIST=$(echo $PACKAGE_DIR/$PACKAGE_RPM | tr " " "\n")
025a5f
  for PACKAGE in $PACKAGE_LIST
025a5f
  do
025a5f
      rpm2cpio $PACKAGE | cpio -iduv
025a5f
  done
025a5f
025a5f
  PATH=$PACKAGE_DIR/usr/bin:$PATH
025a5f
  export PATH
025a5f
  LD_LIBRARY_PATH=$PACKAGE_DIR/usr/%{_lib}:$LD_LIBRARY_PATH
025a5f
  export LD_LIBRARY_PATH
025a5f
969f7f
  # Clean rpms to avoid including them to package
969f7f
  %if ! 0%{?avoid_bundled_rebuild}
969f7f
    rm -f $PACKAGE_FILES
969f7f
  %endif
969f7f
969f7f
  popd
969f7f
}
969f7f
f1b26c
%if 0%{?bundle_nss}
8a9c29
  rpm -ivh %{SOURCE402}
8a9c29
  #rpmbuild --nodeps --define '_prefix %{bundled_install_path}' --without=tests -ba %{_specdir}/nspr.spec
8a9c29
  rpmbuild --nodeps --define '_prefix %{bundled_install_path}' --without=tests -ba %{_specdir}/nspr.spec
8a9c29
  pushd %{_buildrootdir}
8a9c29
  install_rpms_to_current_dir nspr-4*.rpm
8a9c29
  install_rpms_to_current_dir nspr-devel*.rpm
8a9c29
  popd
8a9c29
  echo "Setting nspr flags"
8a9c29
  # nss-setup-flags-env.inc
8a9c29
  sed -i 's@%{bundled_install_path}@%{_buildrootdir}%{bundled_install_path}@g' %{_buildrootdir}%{bundled_install_path}/%{_lib}/pkgconfig/nspr*.pc
f1b26c
8a9c29
  export LDFLAGS="-L%{_buildrootdir}%{bundled_install_path}/%{_lib} $LDFLAGS"
8a9c29
  export LDFLAGS="-Wl,-rpath,%{bundled_install_path}/%{_lib} $LDFLAGS"
8a9c29
  export LDFLAGS="-Wl,-rpath-link,%{_buildrootdir}%{bundled_install_path}/%{_lib} $LDFLAGS"
8a9c29
  export PKG_CONFIG_PATH=%{_buildrootdir}%{bundled_install_path}/%{_lib}/pkgconfig
8a9c29
  export PATH="{_buildrootdir}%{bundled_install_path}/bin:$PATH"
8a9c29
8a9c29
  export PATH=%{_buildrootdir}/%{bundled_install_path}/bin:$PATH
8a9c29
  echo $PKG_CONFIG_PATH
8a9c29
8a9c29
  rpm -ivh %{SOURCE403}
234792
  rpmbuild --nodeps --define '_prefix %{bundled_install_path}' --without=tests -ba %{_specdir}/nss.spec
8a9c29
  pushd %{_buildrootdir}
8a9c29
  #cleanup
8a9c29
  #rm -rf {_buildrootdir}/usr/lib/debug/*
8a9c29
  #rm -rf {_buildrootdir}/usr/lib/.build-id
8a9c29
  install_rpms_to_current_dir nss-3*.rpm
8a9c29
  install_rpms_to_current_dir nss-devel*.rpm
8a9c29
  install_rpms_to_current_dir nss-pkcs11-devel*.rpm
8a9c29
  install_rpms_to_current_dir nss-softokn-3*.rpm
8a9c29
  install_rpms_to_current_dir nss-softokn-devel*.rpm
8a9c29
  install_rpms_to_current_dir nss-softokn-freebl-3*.rpm
8a9c29
  install_rpms_to_current_dir nss-softokn-freebl-devel*.rpm
8a9c29
  install_rpms_to_current_dir nss-util-3*.rpm
8a9c29
  install_rpms_to_current_dir nss-util-devel*.rpm
8a9c29
  popd
8a9c29
  %filter_provides_in %{bundled_install_path}/%{_lib}
8a9c29
  %filter_requires_in %{bundled_install_path}/%{_lib}
659ae9
  %filter_from_requires /libnss3.so.*/d
659ae9
  %filter_from_requires /libsmime3.so.*/d
659ae9
  %filter_from_requires /libssl3.so.*/d
659ae9
  %filter_from_requires /libnssutil3.so.*/d
659ae9
  %filter_from_requires /libnspr4.so.*/d
8a9c29
  find %{_buildrootdir}
969f7f
%endif
969f7f
969f7f
%if 0%{use_bundled_ffi}
969f7f
  # Install libraries to the predefined location to later add them to the Firefox libraries
969f7f
  rpm -ivh %{SOURCE303}
8a9c29
  rpmbuild --nodeps --define '_prefix %{bundled_install_path}' -ba %{_specdir}/libffi.spec
969f7f
  pushd %{_buildrootdir}
969f7f
  install_rpms_to_current_dir 'libffi*.rpm'
969f7f
  popd
969f7f
  %filter_from_requires /libffi.so.6/d
969f7f
%endif
969f7f
%filter_setup
969f7f
025a5f
function replace_prefix() {
025a5f
  FILE_NAME=$1
025a5f
  PKG_CONFIG_PREFIX=$2
025a5f
025a5f
  cat $FILE_NAME | tail -n +2 > tmp.txt
025a5f
  echo "$PKG_CONFIG_PREFIX" > $FILE_NAME
025a5f
  cat tmp.txt >> $FILE_NAME
025a5f
  rm -rf tmp.txt
025a5f
}
025a5f
969f7f
# We need to disable exit on error temporarily for the following scripts:
969f7f
set +e
969f7f
%if 0%{?use_dts}
969f7f
source scl_source enable devtoolset-%{dts_version}
969f7f
%endif
969f7f
%if 0%{?use_rustts}
8a9c29
source scl_source enable rust-toolset-%{rust_version}
8a9c29
%endif
8a9c29
%if 0%{?use_nodejsts}
8a9c29
source scl_source enable rh-nodejs10
969f7f
%endif
969f7f
f1b26c
env
f1b26c
which gcc
f1b26c
which c++
f1b26c
which g++
f1b26c
which ld
8a9c29
which nasm
025a5f
# Build and install local node if needed
025a5f
# ======================================
8a9c29
export MOZ_NODEJS=`which node`
969f7f
025a5f
mkdir -p my_rust_vendor
025a5f
cd my_rust_vendor
f1b26c
%{__tar} xf %{SOURCE2}
025a5f
cd -
025a5f
mkdir -p .cargo
025a5f
cat > .cargo/config <
025a5f
[source.crates-io]
025a5f
replace-with = "vendored-sources"
025a5f
025a5f
[source.vendored-sources]
025a5f
directory = "`pwd`/my_rust_vendor"
025a5f
EOL
025a5f
025a5f
export CARGO_HOME=.cargo
025a5f
cargo install cbindgen
025a5f
export PATH=`pwd`/.cargo/bin:$PATH
025a5f
export CBINDGEN=`pwd`/.cargo/bin/cbindgen
025a5f
f1b26c
# debug missing sqlite3 python module
8a9c29
export MACH_USE_SYSTEM_PYTHON=1
f1b26c
./mach python -c "import sys;print(sys.path)"
5a363f
025a5f
mkdir %{_buildrootdir}/bin || :
025a5f
cp %{SOURCE28} %{_buildrootdir}/bin || :
f1b26c
chmod +x %{_buildrootdir}/bin/node-stdout-nonblocking-wrapper
025a5f
969f7f
# Update the various config.guess to upstream release for aarch64 support
969f7f
find ./ -name config.guess -exec cp /usr/lib/rpm/config.guess {} ';'
969f7f
969f7f
# -fpermissive is needed to build with gcc 4.6+ which has become stricter
969f7f
#
969f7f
# Mozilla builds with -Wall with exception of a few warnings which show up
969f7f
# everywhere in the code; so, don't override that.
969f7f
#
969f7f
# Disable C++ exceptions since Mozilla code is not exception-safe
969f7f
#
969f7f
MOZ_OPT_FLAGS=$(echo "%{optflags}" | %{__sed} -e 's/-Wall//')
969f7f
#rhbz#1037063
969f7f
# -Werror=format-security causes build failures when -Wno-format is explicitly given
969f7f
# for some sources
969f7f
# Explicitly force the hardening flags for Firefox so it passes the checksec test;
969f7f
# See also https://fedoraproject.org/wiki/Changes/Harden_All_Packages
969f7f
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -Wformat-security -Wformat -Werror=format-security"
8a9c29
969f7f
%if %{?hardened_build}
8a9c29
  MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -fPIC -Wl,-z,relro -Wl,-z,now"
8a9c29
  %endif
969f7f
%if %{?debug_build}
8a9c29
  MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-O2//')
969f7f
%endif
f1b26c
f1b26c
# We don't wantfirefox to use CK_GCM_PARAMS_V3 in nss
f1b26c
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -DNSS_PKCS11_3_0_STRICT"
f1b26c
8a9c29
%if !%{build_with_clang}
8a9c29
  %ifarch aarch64 %{ix86} x86_64 s390x
8a9c29
    MOZ_LINK_FLAGS="-Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
8a9c29
  %endif
8a9c29
  %ifarch %{ix86}
8a9c29
    MOZ_LINK_FLAGS="-Wl,--no-keep-memory -Wl,--strip-debug"
8a9c29
    echo "ac_add_options --enable-linker=gold" >> .mozconfig
8a9c29
  %endif
969f7f
%endif
8a9c29
8a9c29
%if 0%{?bundle_nss}
8a9c29
  mkdir -p %{_buildrootdir}%{bundled_install_path}/%{_lib}
8a9c29
  MOZ_LINK_FLAGS="-L%{_buildrootdir}%{bundled_install_path}/%{_lib} $MOZ_LINK_FLAGS"
8a9c29
  MOZ_LINK_FLAGS="-Wl,-rpath,%{bundled_install_path}/%{_lib} $MOZ_LINK_FLAGS"
8a9c29
  MOZ_LINK_FLAGS="-Wl,-rpath-link,%{_buildrootdir}%{bundled_install_path}/%{_lib} $MOZ_LINK_FLAGS"
92e660
%endif
d0bb16
8a9c29
%ifarch %{ix86}
8a9c29
  export RUSTFLAGS="-Cdebuginfo=0"
8a9c29
  echo 'export RUSTFLAGS="-Cdebuginfo=0"' >> .mozconfig
f1b26c
%endif
969f7f
969f7f
export PREFIX='%{_prefix}'
969f7f
export LIBDIR='%{_libdir}'
025a5f
export CC=gcc
025a5f
export CXX=g++
8a9c29
echo "export CFLAGS=\"$MOZ_OPT_FLAGS\"" >> .mozconfig
8a9c29
echo "export CXXFLAGS=\"$MOZ_OPT_FLAGS\"" >> .mozconfig
8a9c29
echo "export LDFLAGS=\"$MOZ_LINK_FLAGS\"" >> .mozconfig
8a9c29
8a9c29
%if %{build_with_clang}
8a9c29
  echo "export LLVM_PROFDATA=\"llvm-profdata\"" >> .mozconfig
8a9c29
  echo "export AR=\"llvm-ar\"" >> .mozconfig
8a9c29
  echo "export NM=\"llvm-nm\"" >> .mozconfig
8a9c29
  echo "export RANLIB=\"llvm-ranlib\"" >> .mozconfig
8a9c29
  echo "ac_add_options --enable-linker=lld" >> .mozconfig
8a9c29
%else
8a9c29
  echo "export CC=gcc" >> .mozconfig
8a9c29
  echo "export CXX=g++" >> .mozconfig
8a9c29
  echo "export AR=\"gcc-ar\"" >> .mozconfig
8a9c29
  echo "export NM=\"gcc-nm\"" >> .mozconfig
8a9c29
  echo "export RANLIB=\"gcc-ranlib\"" >> .mozconfig
8a9c29
%endif
969f7f
969f7f
MOZ_SMP_FLAGS=-j1
025a5f
# More than two build tasks can lead to OOM gcc crash.
025a5f
%if 0%{?rhel} < 8
8a9c29
  [ -z "$RPM_BUILD_NCPUS" ] && \
8a9c29
       RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
8a9c29
  [ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
025a5f
%else
8a9c29
  %ifarch %{ix86} x86_64 ppc64 ppc64le aarch64
8a9c29
  [ -z "$RPM_BUILD_NCPUS" ] && \
8a9c29
       RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
8a9c29
    [ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
8a9c29
    [ "$RPM_BUILD_NCPUS" -ge 4 ] && MOZ_SMP_FLAGS=-j3
8a9c29
    [ "$RPM_BUILD_NCPUS" -ge 8 ] && MOZ_SMP_FLAGS=-j3
8a9c29
  %endif
025a5f
%endif
969f7f
f1b26c
cat /proc/meminfo
f1b26c
# Free memory in kB
f1b26c
8a9c29
# Free memory in kB
8a9c29
if grep -q MemAvailable /proc/meminfo; then
8a9c29
    MEM_AVAILABLE=$(grep MemAvailable /proc/meminfo | awk '{ print $2 }')
8a9c29
else
8a9c29
    MEM_AVAILABLE=$(grep MemFree /proc/meminfo | awk '{ print $2 }')
8a9c29
fi
f1b26c
f1b26c
# Usually the compiler processes can take 2 GB of memory at peaks
f1b26c
TASK_SIZE=4000000
f1b26c
MEM_CONSTRAINED_JOBS=$(( MEM_AVAILABLE / TASK_SIZE ))
8a9c29
8a9c29
if [ $MEM_CONSTRAINED_JOBS -le 0 ]; then
8a9c29
  MEM_CONSTRAINED_JOBS=1
8a9c29
fi
8a9c29
f1b26c
CPU_AVAILABLE=$(/usr/bin/getconf _NPROCESSORS_ONLN)
f1b26c
# Pick the minimum from available CPUs or memory constrained number of jobs
8a9c29
MOZ_SMP_FLAGS=-j$([ "$CPU_AVAILABLE" -le "$MEM_CONSTRAINED_JOBS" ] && echo "$CPU_AVAILABLE" || echo "$MEM_CONSTRAINED_JOBS")
f1b26c
8a9c29
# override smp flags to the rpmbuild defaults ATM
8a9c29
%ifnarch ppc64le
8a9c29
MOZ_SMP_FLAGS=%{_smp_mflags}
969f7f
%endif
f1b26c
8a9c29
%ifarch s390x
8a9c29
MOZ_SMP_FLAGS=-j2
8a9c29
%endif
d10cfe
f1b26c
%if 0%{?bundle_nss}
8a9c29
  echo "Setting nss flags"
8a9c29
  # nss-setup-flags-env.inc
8a9c29
  %include_file %{SOURCE401}
8a9c29
  export PATH=%{_buildrootdir}/%{bundled_install_path}/bin:$PATH
8a9c29
  echo $PKG_CONFIG_PATH
f1b26c
%endif
969f7f
969f7f
export MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS"
969f7f
#export MOZ_SERVICES_SYNC="1"
f1b26c
# we need to strip the sources on i686 because to we don't use rpm to generate debugsymbols because of oom
8a9c29
%ifnarch %{ix86}
8a9c29
  export STRIP=/bin/true
f1b26c
%endif
f1b26c
which node
f1b26c
echo 'export NODEJS="%{_buildrootdir}/bin/node-stdout-nonblocking-wrapper"'
f1b26c
env
f1b26c
ls %{_buildrootdir}
f1b26c
8a9c29
export MACH_USE_SYSTEM_PYTHON=1
f1b26c
%if 0%{?use_llvmts}
8a9c29
  #scl enable llvm-toolset-%{llvm_version} './mach build -v'
71fa08
  ./mach build -v || exit 1
f1b26c
%else
71fa08
  ./mach build -v || exit 1
f1b26c
%endif
8a9c29
# Look for the reason we get: /usr/lib/rpm/debugedit: canonicalization unexpectedly shrank by one character
8a9c29
readelf -wl objdir/dist/bin/libxul.so | grep "/"
969f7f
969f7f
#---------------------------------------------------------------------
969f7f
969f7f
%install
8a9c29
export MACH_USE_SYSTEM_PYTHON=1
969f7f
function install_rpms_to_current_dir() {
969f7f
    PACKAGE_RPM=$(eval echo $1)
969f7f
    PACKAGE_DIR=%{_rpmdir}
969f7f
969f7f
    if [ ! -f $PACKAGE_DIR/$PACKAGE_RPM ]; then
969f7f
        # Hack for tps tests
969f7f
        ARCH_STR=%{_arch}
8a9c29
        %ifarch %{ix86}
969f7f
            ARCH_STR="i?86"
969f7f
        %endif
8a9c29
        PACKAGE_DIR="$PACKAGE_DIR/$ARCH_STR"
969f7f
     fi
969f7f
969f7f
     for package in $(ls $PACKAGE_DIR/$PACKAGE_RPM)
969f7f
     do
969f7f
         echo "$package"
969f7f
         rpm2cpio "$package" | cpio -idu
969f7f
     done
969f7f
}
969f7f
f1b26c
%if 0%{?bundle_nss}
f1b26c
  pushd %{buildroot}
f1b26c
  #install_rpms_to_current_dir nss-*.rpm
f1b26c
  install_rpms_to_current_dir nspr-4*.rpm
f1b26c
  install_rpms_to_current_dir nss-3*.rpm
f1b26c
  install_rpms_to_current_dir nss-softokn-3*.rpm
f1b26c
  install_rpms_to_current_dir nss-softokn-freebl-3*.rpm
f1b26c
  install_rpms_to_current_dir nss-util-3*.rpm
8a9c29
f1b26c
  # cleanup unecessary nss files
8a9c29
  #rm -rf %{_buildrootdir}/%{bundled_install_path}/bin
8a9c29
  #rm -rf %{_buildrootdir}/%{bundled_install_path}/include
8a9c29
  rm -rf %{buildroot}/%{bundled_install_path}/lib/dracut
8a9c29
  rm -rf %{buildroot}/%{bundled_install_path}/%{_lib}/nss
8a9c29
  #rm -rf %{_buildrootdir}/%{bundled_install_path}/%{_lib}/pkgconfig
8a9c29
  rm -rf %{buildroot}/%{bundled_install_path}/%{_lib}/share
8a9c29
  rm -rf %{buildroot}/%{bundled_install_path}/share
f1b26c
  rm -rf %{buildroot}/etc/pki
f1b26c
  rm -rf %{buildroot}/usr/lib/.build-id
f1b26c
  rm -rf %{buildroot}/etc/crypto-policies
f1b26c
  popd
f1b26c
%endif
f1b26c
969f7f
# Install bundled libffi
969f7f
%if %{use_bundled_ffi}
969f7f
  pushd %{buildroot}
969f7f
  install_rpms_to_current_dir libffi-3*.rpm
969f7f
  popd
969f7f
%endif
969f7f
969f7f
DESTDIR=%{buildroot} make -C objdir install
969f7f
969f7f
%{__mkdir_p} %{buildroot}{%{_libdir},%{_bindir},%{_datadir}/applications}
969f7f
969f7f
desktop-file-install --dir %{buildroot}%{_datadir}/applications %{SOURCE20}
969f7f
969f7f
# set up the thunderbird start script
969f7f
rm -rf %{buildroot}%{_bindir}/thunderbird
969f7f
%{__rm} -rf %{buildroot}%{_bindir}/thunderbird
969f7f
%{__cat} %{SOURCE21} > %{buildroot}%{_bindir}/thunderbird
c691a2
sed -i -e 's|%PREFIX%|%{_prefix}|' %{buildroot}%{_bindir}/thunderbird
969f7f
sed -i -e 's|%RHEL_ENV_VARS%||' %{buildroot}%{_bindir}/thunderbird
969f7f
%{__chmod} 755 %{buildroot}%{_bindir}/thunderbird
969f7f
8a9c29
%{__cat} %{SOURCE701} | %{__sed} -e 's,THUNDERBIRD_RPM_VR,%{version}-%{release},g' > \
969f7f
        %{buildroot}/rh-default-prefs
969f7f
%{__install} -D %{buildroot}/rh-default-prefs %{buildroot}/%{mozappdir}/greprefs/all-redhat.js
969f7f
%{__install} -D %{buildroot}/rh-default-prefs %{buildroot}/%{mozappdir}/defaults/pref/all-redhat.js
969f7f
%{__rm} %{buildroot}/rh-default-prefs
969f7f
969f7f
# install icons
969f7f
for s in 16 22 24 32 48 256; do
969f7f
    %{__mkdir_p} %{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps
969f7f
    %{__cp} -p comm/mail/branding/%{name}/default${s}.png \
969f7f
               %{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps/thunderbird.png
969f7f
done
969f7f
969f7f
%{__rm} -f %{buildroot}%{_bindir}/thunderbird-config
969f7f
969f7f
# own mozilla plugin dir (#135050)
969f7f
%{__mkdir_p} %{buildroot}%{_libdir}/mozilla/plugins
969f7f
969f7f
# own extension directories
969f7f
%{__mkdir_p} %{buildroot}%{_datadir}/mozilla/extensions/%{thunderbird_app_id}
969f7f
%{__mkdir_p} %{buildroot}%{_libdir}/mozilla/extensions/%{thunderbird_app_id}
969f7f
969f7f
# Install langpacks
969f7f
echo > %{name}.lang
969f7f
%if %{build_langpacks}
969f7f
# Extract langpacks, make any mods needed, repack the langpack, and install it.
969f7f
%{__mkdir_p} %{buildroot}%{langpackdir}
969f7f
%{__tar} xf %{SOURCE1}
969f7f
for langpack in `ls thunderbird-langpacks/*.xpi`; do
969f7f
  language=`basename $langpack .xpi`
969f7f
  extensionID=langpack-$language@thunderbird.mozilla.org
969f7f
  %{__mkdir_p} $extensionID
8a9c29
  unzip -qq $langpack -d $extensionID
969f7f
  find $extensionID -type f | xargs chmod 644
969f7f
969f7f
  cd $extensionID
8a9c29
  zip -qq -r9mX ../${extensionID}.xpi *
969f7f
  cd -
969f7f
969f7f
  %{__install} -m 644 ${extensionID}.xpi %{buildroot}%{langpackdir}
969f7f
  language=`echo $language | sed -e 's/-/_/g'`
969f7f
  echo "%%lang($language) %{langpackdir}/${extensionID}.xpi" >> %{name}.lang
969f7f
done
969f7f
%{__rm} -rf thunderbird-langpacks
969f7f
f1b26c
echo "Adding following langpacks:"
f1b26c
cat %{name}.lang
f1b26c
%endif
969f7f
969f7f
# Get rid of devel package and its debugsymbols
969f7f
%{__rm} -rf %{buildroot}%{_libdir}/%{name}-devel-%{version}
969f7f
969f7f
# Copy over the LICENSE
969f7f
%{__install} -p -c -m 644 LICENSE %{buildroot}/%{mozappdir}
969f7f
969f7f
# Use the system hunspell dictionaries
969f7f
%{__rm} -rf %{buildroot}%{mozappdir}/dictionaries
969f7f
ln -s %{_datadir}/myspell %{buildroot}%{mozappdir}/dictionaries
969f7f
969f7f
# ghost files
969f7f
%{__mkdir_p} %{buildroot}%{mozappdir}/components
969f7f
touch %{buildroot}%{mozappdir}/components/compreg.dat
969f7f
touch %{buildroot}%{mozappdir}/components/xpti.dat
969f7f
969f7f
# Clean thunderbird-devel debuginfo
969f7f
rm -rf %{_prefix}/lib/debug/lib/%{name}-devel-*
969f7f
rm -rf %{_prefix}/lib/debug/lib64/%{name}-devel-*
969f7f
f1b26c
f1b26c
# Removing librnp.so - we cannot deliver that in RHELs
f1b26c
%{__rm} -rf %{buildroot}%{mozappdir}/librnp.so
f1b26c
c691a2
# Register as an application to be visible in the software center
c691a2
#
c691a2
# NOTE: It would be *awesome* if this file was maintained by the upstream
c691a2
# project, translated and installed into the right place during `make install`.
c691a2
#
c691a2
# See http://www.freedesktop.org/software/appstream/docs/ for more details.
c691a2
#
e8ee34
e8ee34
# Register as an application to be visible in the software center
e8ee34
mkdir -p $RPM_BUILD_ROOT%{_datadir}/appdata
e8ee34
%{__cp} -p comm/mail/branding/%{name}/net.thunderbird.Thunderbird.appdata.xml $RPM_BUILD_ROOT%{_datadir}/appdata/thunderbird.appdata.xml
c691a2
969f7f
#---------------------------------------------------------------------
969f7f
969f7f
%clean
969f7f
rm -rf %{_srcrpmdir}/libffi*.src.rpm
969f7f
find %{_rpmdir} -name "libffi*.rpm" -delete
025a5f
rm -rf %{_srcrpmdir}/openssl*.src.rpm
025a5f
find %{_rpmdir} -name "openssl*.rpm" -delete
f1b26c
rm -rf %{_srcrpmdir}/nss*.src.rpm
f1b26c
find %{_rpmdir} -name "nss*.rpm" -delete
f1b26c
rm -rf %{_srcrpmdir}/nspr*.src.rpm
f1b26c
find %{_rpmdir} -name "nspr*.rpm" -delete
969f7f
969f7f
%post
969f7f
update-desktop-database &> /dev/null || :
969f7f
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
969f7f
969f7f
%postun
8a9c29
update-desktop-database &> /dev/null || :
969f7f
if [ $1 -eq 0 ] ; then
969f7f
    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
969f7f
    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
969f7f
fi
969f7f
969f7f
%posttrans
969f7f
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
969f7f
969f7f
#===============================================================================
8a9c29
%files -f %{name}.lang
969f7f
%defattr(-,root,root,-)
969f7f
%attr(755,root,root) %{_bindir}/thunderbird
c691a2
%{_datadir}/appdata/*.appdata.xml
969f7f
%attr(644,root,root) %{_datadir}/applications/thunderbird.desktop
969f7f
%dir %{_datadir}/mozilla/extensions/%{thunderbird_app_id}
969f7f
%dir %{_libdir}/mozilla/extensions/%{thunderbird_app_id}
969f7f
%dir %{mozappdir}
969f7f
%doc %{mozappdir}/LICENSE
969f7f
%{mozappdir}/chrome
969f7f
%dir %{mozappdir}/components
969f7f
%ghost %{mozappdir}/components/compreg.dat
969f7f
%ghost %{mozappdir}/components/xpti.dat
8a9c29
%if %{build_langpacks}
8a9c29
%dir %{langpackdir}
8a9c29
%endif
8a9c29
969f7f
%{mozappdir}/omni.ja
969f7f
%{mozappdir}/plugin-container
969f7f
%{mozappdir}/defaults
969f7f
%{mozappdir}/dictionaries
969f7f
%{mozappdir}/greprefs
969f7f
%{mozappdir}/isp
969f7f
%{mozappdir}/thunderbird-bin
969f7f
%{mozappdir}/thunderbird
969f7f
%{mozappdir}/*.so
969f7f
%{mozappdir}/platform.ini
969f7f
%{mozappdir}/application.ini
969f7f
%exclude %{mozappdir}/removed-files
969f7f
%{_datadir}/icons/hicolor/16x16/apps/thunderbird.png
969f7f
%{_datadir}/icons/hicolor/22x22/apps/thunderbird.png
969f7f
%{_datadir}/icons/hicolor/24x24/apps/thunderbird.png
969f7f
%{_datadir}/icons/hicolor/256x256/apps/thunderbird.png
969f7f
%{_datadir}/icons/hicolor/32x32/apps/thunderbird.png
969f7f
%{_datadir}/icons/hicolor/48x48/apps/thunderbird.png
969f7f
%{mozappdir}/pingsender
969f7f
%{mozappdir}/dependentlibs.list
025a5f
%{mozappdir}/fonts/TwemojiMozilla.ttf
025a5f
969f7f
%if !%{?system_nss}
969f7f
%exclude %{mozappdir}/libnssckbi.so
969f7f
%endif
969f7f
%if 0%{use_bundled_ffi}
969f7f
%{mozappdir}/bundled/%{_lib}/libffi.so*
969f7f
%exclude %{_datadir}/doc/libffi*
969f7f
%endif
969f7f
f1b26c
%if 0%{?bundle_nss}
f1b26c
%{mozappdir}/bundled/%{_lib}/libfreebl*
f1b26c
%{mozappdir}/bundled/%{_lib}/libnss3*
f1b26c
%{mozappdir}/bundled/%{_lib}/libnssdbm3*
f1b26c
%{mozappdir}/bundled/%{_lib}/libnssutil3*
f1b26c
%{mozappdir}/bundled/%{_lib}/libsmime3*
f1b26c
%{mozappdir}/bundled/%{_lib}/libsoftokn*
f1b26c
%{mozappdir}/bundled/%{_lib}/libssl3*
f1b26c
%{mozappdir}/bundled/%{_lib}/libnspr4.so
f1b26c
%{mozappdir}/bundled/%{_lib}/libplc4.so
f1b26c
%{mozappdir}/bundled/%{_lib}/libplds4.so
f1b26c
%endif
969f7f
969f7f
#===============================================================================
969f7f
969f7f
%changelog
356140
* Tue May 03 2022 Eike Rathke <erack@redhat.com> - 91.9.0-3
356140
- Update to 91.9.0 build3
356140
356140
* Mon May 02 2022 Eike Rathke <erack@redhat.com> - 91.9.0-2
356140
- Update to 91.9.0 build2
356140
356140
* Thu Apr 28 2022 Eike Rathke <erack@redhat.com> - 91.9.0-1
356140
- Update to 91.9.0
7b5e7f
70fefb
* Tue Apr 05 2022 Eike Rathke <erack@redhat.com> - 91.8.0-1
70fefb
- Update to 91.8.0
af26eb
71fa08
* Tue Mar 08 2022 Eike Rathke <erack@redhat.com> - 91.7.0-2
71fa08
- Update to 91.7.0 build2
71fa08
71fa08
* Thu Mar 03 2022 Eike Rathke <erack@redhat.com> - 91.7.0-1
71fa08
- Update to 91.7.0 build1
eaff3e
e8ee34
* Mon Feb 07 2022 Eike Rathke <erack@redhat.com> - 91.6.0-1
e8ee34
- Update to 91.6.0 build1
ef378b
234792
* Fri Jan 07 2022 Eike Rathke <erack@redhat.com> - 91.5.0-1
234792
- Update to 91.5.0 build1
e401d2
436ed5
* Mon Dec 06 2021 Eike Rathke <erack@redhat.com> - 91.4.0-2
436ed5
- Update to 91.4.0 build2
436ed5
436ed5
* Wed Dec 01 2021 Eike Rathke <erack@redhat.com> - 91.4.0-1
436ed5
- Update to 91.4.0 build1
83a4d0
13bb52
* Tue Nov 02 2021 Eike Rathke <erack@redhat.com> - 91.3.0-2
436ed5
- Update to 91.3.0 build2
13bb52
13bb52
* Mon Nov 01 2021 Eike Rathke <erack@redhat.com> - 91.3.0-1
13bb52
- Update to 91.3.0 build1
383082
8a9c29
* Mon Oct 04 2021 Eike Rathke <erack@redhat.com> - 91.2.0-1
8a9c29
- Update to 91.2.0 build1
8a9c29
8a9c29
* Wed Sep 29 2021 Jan Horak <jhorak@redhat.com> - 91.1.2-1
8a9c29
- Update to 91.1.2 build1
8a9c29
8a9c29
* Tue Sep 07 2021 Jan Horak <jhorak@redhat.com> - 91.1.0-1
8a9c29
- Update to 91.1.0 build2
0e5e08
a1c128
* Thu Sep 02 2021 Eike Rathke <erack@redhat.com> - 78.14.0-1
a1c128
- Update to 78.14.0 build1
a1c128
a1c128
* Mon Aug 16 2021 Jan Horak <jhorak@redhat.com> - 78.13.0-2
a1c128
- Use the right name for the appstream file
52805c
71c8ad
* Wed Aug 04 2021 Eike Rathke <erack@redhat.com> - 78.13.0-1
71c8ad
- Update to 78.13.0 build1
dc555c
c691a2
* Fri Jul 16 2021 Jan Horak <jhorak@redhat.com> - 78.12.0-3
c691a2
- Rebuild to pickup older nss
c691a2
c691a2
* Mon Jul 12 2021 Eike Rathke <erack@redhat.com> - 78.12.0-2
c691a2
- Update to 78.12.0 build2
c691a2
c691a2
* Thu Jul 08 2021 Eike Rathke <erack@redhat.com> - 78.12.0-1
c691a2
- Update to 78.12.0 build1
b160cd
6af0e0
* Mon May 31 2021 Eike Rathke <erack@redhat.com> - 78.11.0-1
6af0e0
- Update to 78.11.0 build1
0c9603
a34db4
* Wed Apr 21 2021 Eike Rathke <erack@redhat.com> - 78.10.0-1
a34db4
- Update to 78.10.0
8e9a92
e33395
* Mon Apr 12 2021 Eike Rathke <erack@redhat.com> - 78.9.1-1
e33395
- Update to 78.9.1
34535b
a05f16
* Tue Mar 23 2021 Eike Rathke <erack@redhat.com> - 78.9.0-3
a05f16
- Update to 78.9.0 build2, updated langpacks
a05f16
a05f16
* Mon Mar 22 2021 Eike Rathke <erack@redhat.com> - 78.9.0-2
a05f16
- Update to 78.9.0 build2
a05f16
a05f16
* Mon Mar 22 2021 Eike Rathke <erack@redhat.com> - 78.9.0-1
a05f16
- Update to 78.9.0 build1
47ebe0
ddac2c
* Fri Feb 19 2021 Eike Rathke <erack@redhat.com> - 78.8.0-1
ddac2c
- Update to 78.8.0 build1
7c5ffc
ca327a
* Tue Jan 26 2021 Eike Rathke <erack@redhat.com> - 78.7.0-1
ca327a
- Update to 78.7.0
219c29
44d8f9
* Tue Jan 12 2021 Eike Rathke <erack@redhat.com> - 78.6.1-1
44d8f9
- Update to 78.6.1
4077b5
81487c
* Tue Dec 15 2020 Eike Rathke <erack@redhat.com> - 78.6.0-1
81487c
- Update to 78.6.0
558e7e
c95b84
* Fri Dec 04 2020 Jan Horak <jhorak@redhat.com> - 78.5.1-1
c95b84
- Update to 78.5.1 build1
4c865a
263dc0
* Wed Nov 18 2020 Eike Rathke <erack@redhat.com> - 78.5.0-1
263dc0
- Update to 78.5.0 build3
79d8ef
659ae9
* Thu Nov 12 2020 Eike Rathke <erack@redhat.com> - 78.4.3-1
659ae9
- Update to 78.4.3
4fb299
d10cfe
* Wed Oct 21 2020 Eike Rathke <erack@redhat.com> - 78.4.0-1
d10cfe
- Update to 78.4.0 build1
d10cfe
- Disabled telemetry
d10cfe
d10cfe
* Tue Sep 29 2020 Jan Horak <jhorak@redhat.com> - 78.3.1-1
d10cfe
- Update to 78.3.1 build1
c38704
f1b26c
* Sat Sep 19 2020 Jan Horak <jhorak@redhat.com> - 78.3.0-3
f1b26c
- Update to 78.3.0 build1
f1b26c
- Remove librdp.so as long as we cannot ship it in RHEL
f1b26c
f1b26c
* Tue Sep 08 2020 Jan Horak <jhorak@redhat.com> - 78.2.1-1
f1b26c
- Update to 78.2.1 build1
da9ada
6abda1
* Wed Sep 02 2020 Jan Horak <jhorak@redhat.com> - 68.12.0-1
6abda1
- Update to 68.12.0 build1
060290
089654
* Tue Aug 04 2020 Jan Horak <jhorak@redhat.com> - 68.11.0-1
089654
- Update to 68.11.0 build1
e4b39d
e5fcac
* Wed Jul 08 2020 Jan Horak <jhorak@redhat.com> - 68.10.0-1
e5fcac
- Update to 68.10.0 build1
3dc594
8d37c8
* Fri Jun 05 2020 Jan Horak <jhorak@redhat.com> - 68.9.0-1
8d37c8
- Update to 68.9.0 build1
8d37c8
ca36d0
* Tue May 05 2020 Jan Horak <jhorak@redhat.com> - 68.8.0-1
ca36d0
- Update to 68.8.0 build2
ca36d0
ccc184
* Tue Apr 14 2020 Jan Horak <jhorak@redhat.com> - 68.7.0-1
ccc184
- Update to 68.7.0 build1
ccc184
fb5326
* Fri Mar 13 2020 Jan Horak <jhorak@redhat.com> - 68.6.0-1
fb5326
- Update to 68.6.0 build2
fb5326
6ca1be
* Thu Feb 13 2020 Jan Horak <jhorak@redhat.com> - 68.5.0-1
6ca1be
- Update to 68.5.0 build1
6ca1be
d0bb16
* Mon Jan 13 2020 Jan Horak <jhorak@redhat.com> - 68.4.1-2
d0bb16
- Update to 68.4.1 build1
d0bb16
024a14
* Mon Dec 02 2019 Jan Horak <jhorak@redhat.com> - 68.3.0-2
024a14
- Update to 68.3.0 build2
024a14
024a14
* Fri Oct 25 2019 Jan Horak <jhorak@redhat.com> - 68.2.0-2
024a14
- Added patch for TLS 1.3 support.
024a14
025a5f
* Tue Oct 22 2019 Jan Horak <jhorak@redhat.com> - 68.2.0-1
025a5f
- Update to 68.2.0
025a5f
025a5f
* Thu Oct  3 2019 Jan Horak <jhorak@redhat.com> - 68.1.1-2
025a5f
- Update to 68.1.1
025a5f
5a363f
* Wed Sep  4 2019 Jan Horak <jhorak@redhat.com> - 60.9.0-2
5a363f
- Update to 60.9.0
5a363f
1539bb
* Thu Jul 4 2019 Martin Stransky <stransky@redhat.com> - 60.8.0-1
1539bb
- Updated to 60.8.0
1539bb
1539bb
* Wed Jul 3 2019 Martin Stransky <stransky@redhat.com> - 60.7.2-3
1539bb
- Rebuild to fix rhbz#1725919 - Thunderbird fails to authenticate
1539bb
  with gmail with ssl/tls and OAuth2.
78462a
a24009
* Fri Jun 21 2019 Jan Horak <jhorak@redhat.com> - 60.7.2-2
a24009
- Update to 60.7.2 build2
a24009
a24009
* Thu Jun 20 2019 Jan Horak <jhorak@redhat.com> - 60.7.2-1
a24009
- Update to 60.7.2
a24009
a24009
* Tue Jun 18 2019 Jan Horak <jhorak@redhat.com> - 60.7.1-1
a24009
- Update to 60.7.1
a24009
8a71f6
* Mon May 27 2019 Martin Stransky <stransky@redhat.com> - 60.7.0-1
8a71f6
- Update to 60.7.0
384c06
09cbe3
* Mon Mar 25 2019 Martin Stransky <stransky@redhat.com> - 60.6.1-1
09cbe3
- Update to 60.6.1
09cbe3
09cbe3
* Tue Mar 19 2019 Martin Stransky <stransky@redhat.com> - 60.6.0-1
09cbe3
- Update to 60.6.0
09cbe3
969f7f
* Tue Jan 29 2019 Martin Stransky <stransky@redhat.com> - 60.5.0-1
969f7f
- Update to 60.5.0
969f7f
969f7f
* Thu Jan  3 2019 Jan Horak <jhorak@redhat.com> - 60.4.0-1
969f7f
- Update to 60.4.0
969f7f
969f7f
* Wed Oct 31 2018 Jan Horak <jhorak@redhat.com> - 60.3.0-1
969f7f
- Update to 60.3.0
969f7f
969f7f
* Wed Oct 31 2018 Jan Horak <jhorak@redhat.com> - 60.2.1-6
969f7f
- Fixed missing calendar langpacks
969f7f
969f7f
* Tue Oct 16 2018 Jan Horak <jhorak@redhat.com> - 60.2.1-5
969f7f
- Fixing minor issues
969f7f
969f7f
* Wed Oct 10 2018 Jan Horak <jhorak@redhat.com> - 60.2.1-3
969f7f
- Reverting deleting of key3db
969f7f
969f7f
* Wed Oct  3 2018 Jan Horak <jhorak@redhat.com> - 60.2.1-2
969f7f
- Update to 60.2.1
969f7f
- Added fix for rhbz#1546988
969f7f
969f7f
* Fri Sep 14 2018 Jan Horak <jhorak@redhat.com> - 60.0-1
969f7f
- Rebase to version 60
969f7f
969f7f
* Tue Jul 10 2018 Jan Horak <jhorak@redhat.com> - 52.9.1-1
969f7f
- Update to 52.9.1
969f7f
969f7f
* Thu May 17 2018 Jan Horak <jhorak@redhat.com> - 52.8.0-2
969f7f
- Update to 52.8.0
969f7f
969f7f
* Mon Mar 26 2018 Jan Horak <jhorak@redhat.com> - 52.7.0-1
969f7f
- Update to 52.7.0
969f7f
969f7f
* Fri Jan 26 2018 Jan Horak <jhorak@redhat.com> - 52.6.0-1
969f7f
- Update to 52.6.0
969f7f
969f7f
* Tue Jan  2 2018 Jan Horak <jhorak@redhat.com> - 52.5.2-1
969f7f
- Update to 52.5.2
969f7f
969f7f
* Mon Nov 27 2017 Jan Horak <jhorak@redhat.com> - 52.5.0-1
969f7f
- Update to 52.5.0
969f7f
969f7f
* Wed Oct  4 2017 Jan Horak <jhorak@redhat.com> - 52.4.0-2
969f7f
- Update to 52.4.0 (b2)
969f7f
969f7f
* Mon Aug 21 2017 Jan Horak <jhorak@redhat.com> - 52.3.0-1
969f7f
- Update to 52.3.0
969f7f
969f7f
* Thu Jun 29 2017 Jan Horak <jhorak@redhat.com> - 52.2.1-1
969f7f
- Update to 52.2.1
969f7f
969f7f
* Thu Jun 15 2017 Jan Horak <jhorak@redhat.com> - 52.2.0-1
969f7f
- Update to 52.2.0
969f7f
969f7f
* Tue May  2 2017 Jan Horak <jhorak@redhat.com> - 52.1.0-1
969f7f
- Update to 52.1.0
969f7f
969f7f
* Thu Apr 13 2017 Jan Horak <jhorak@redhat.com> - 52.0.1-1
969f7f
- Update to 52.0.1
969f7f
969f7f
* Tue Mar  7 2017 Jan Horak <jhorak@redhat.com> - 45.8.0-1
969f7f
- Update to 45.8.0
969f7f
969f7f
* Thu Jan 26 2017 Jan Horak <jhorak@redhat.com> - 45.7.0-1
969f7f
- Update to 45.7.0
969f7f
969f7f
* Fri Dec 16 2016 Martin Stransky <stransky@redhat.com> - 45.6.0-1
969f7f
- Update to the latest upstream (45.6.0)
969f7f
969f7f
* Thu Dec  1 2016 Jan Horak <jhorak@redhat.com> - 45.5.1-1
969f7f
- Update to 45.5.1
969f7f
969f7f
* Fri Nov 18 2016 Jan Horak <jhorak@redhat.com> - 45.5.0-1
969f7f
- Update to 45.5.0
969f7f
969f7f
* Thu Sep 29 2016 Jan Horak <jhorak@redhat.com> - 45.4.0-1
969f7f
- Update to 45.4.0
969f7f
969f7f
* Fri Aug 26 2016 Jan Horak <jhorak@redhat.com> - 45.3.0-1
969f7f
- Update to 45.3.0
969f7f
969f7f
* Wed Jun 29 2016 Jan Horak <jhorak@redhat.com> - 45.2-1
969f7f
- Update to 45.2
969f7f
969f7f
* Mon Jun  6 2016 Jan Horak <jhorak@redhat.com> - 45.1.1-1
969f7f
- Update to 45.1.1
969f7f
969f7f
* Mon Jun 06 2016 Jan Horak <jhorak@redhat.com> - 45.1.0-5
969f7f
- Do not add symlinks to some langpacks
969f7f
969f7f
* Tue May 17 2016 Jan Horak <jhorak@redhat.com> - 45.1.0-4
969f7f
- Update to 45.1.0
969f7f
969f7f
* Tue Apr 26 2016 Jan Horak <jhorak@redhat.com> - 45.0-5
969f7f
- Update to 45.0
969f7f
969f7f
* Tue Sep 29 2015 Jan Horak <jhorak@redhat.com> - 38.3.0-1
969f7f
- Update to 38.3.0
969f7f
969f7f
* Fri Aug 14 2015 Jan Horak <jhorak@redhat.com> - 38.2.0-1
969f7f
- Update to 38.2.0
969f7f
969f7f
* Wed Jul 15 2015 Jan Horak <jhorak@redhat.com> - 38.1.0-2
969f7f
- Rebase to 38.1.0
969f7f
969f7f
* Wed Jul 15 2015 Jan Horak <jhorak@redhat.com> - 31.8.0-1
969f7f
- Update to 31.8.0
969f7f
969f7f
* Sun May 10 2015 Jan Horak <jhorak@redhat.com> - 31.7.0-1
969f7f
- Update to 31.7.0
969f7f
969f7f
* Tue Mar 31 2015 Jan Horak <jhorak@redhat.com> - 31.6.0-1
969f7f
- Update to 31.6.0
969f7f
969f7f
* Mon Feb 23 2015 Jan Horak <jhorak@redhat.com> - 31.5.0-2
969f7f
- Update to 31.5.0
969f7f
969f7f
* Sat Jan 10 2015 Jan Horak <jhorak@redhat.com> - 31.4.0-1
969f7f
- Update to 31.4.0
969f7f
969f7f
* Mon Dec 22 2014 Jan Horak <jhorak@redhat.com> - 31.3.0-2
969f7f
- Fixed problems with dictionaries (mozbz#1097550)
969f7f
969f7f
* Fri Nov 28 2014 Jan Horak <jhorak@redhat.com> - 31.3.0-1
969f7f
- Update to 31.3.0
969f7f
969f7f
* Thu Oct 30 2014 Jan Horak <jhorak@redhat.com> - 31.2.0-2
969f7f
- Update to 31.2.0
969f7f
969f7f
* Wed Oct 1 2014 Martin Stransky <stransky@redhat.com> - 31.1.1-5
969f7f
- Sync preferences with Firefox
969f7f
969f7f
* Thu Sep 18 2014 Yaakov Selkowitz <yselkowi@redhat.com> - 31.1.1-4
969f7f
- Fix dependency generation for internal libraries (#1140471)
969f7f
969f7f
* Fri Sep 12 2014 Jan Horak <jhorak@redhat.com> - 31.1.1-3
969f7f
- Update to 31.1.1
969f7f
969f7f
* Tue Sep  9 2014 Jan Horak <jhorak@redhat.com> - 31.1.0-4
969f7f
- Use  system libffi
969f7f
969f7f
* Wed Sep  3 2014 Jan Horak <jhorak@redhat.com> - 31.1.0-2
969f7f
- Added fix for ppc64le
969f7f
969f7f
* Mon Sep  1 2014 Jan Horak <jhorak@redhat.com> - 31.1.0-1
969f7f
- Update to 31.1.0
969f7f
969f7f
* Wed Jul 30 2014 Martin Stransky <stransky@redhat.com> - 31.0-2
969f7f
- Added patch for mozbz#858919
969f7f
969f7f
* Tue Jul 29 2014 Martin Stransky <stransky@redhat.com> - 31.0-1
969f7f
- Update to 31.0
969f7f
969f7f
* Tue Jul 22 2014 Jan Horak <jhorak@redhat.com> - 24.7.0-1
969f7f
- Update to 24.7.0
969f7f
969f7f
* Mon Jun  9 2014 Jan Horak <jhorak@redhat.com> - 24.6.0-1
969f7f
- Update to 24.6.0
969f7f
969f7f
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 24.5.0-6
969f7f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
969f7f
969f7f
* Fri May 23 2014 Brent Baude <baude@us.ibm.com> - 24.5.0-5
969f7f
- Moving the ppc64 conditional up before the cd so it will
969f7f
- apply cleanly
969f7f
969f7f
* Fri May 23 2014 Martin Stransky <stransky@redhat.com> - 24.5.0-4
969f7f
- Added a build fix for ppc64 - rhbz#1100495
969f7f
969f7f
* Mon May  5 2014 Jan Horak <jhorak@redhat.com> - 24.5.0-3
969f7f
- Fixed find requires
969f7f
969f7f
* Mon Apr 28 2014 Jan Horak <jhorak@redhat.com> - 24.5.0-1
969f7f
- Update to 24.5.0
969f7f
969f7f
* Tue Apr 22 2014 Jan Horak <jhorak@redhat.com> - 24.4.0-2
969f7f
- Added support for ppc64le
969f7f
969f7f
* Tue Mar 18 2014 Jan Horak <jhorak@redhat.com> - 24.4.0-1
969f7f
- Update to 24.4.0
969f7f
969f7f
* Mon Feb  3 2014 Jan Horak <jhorak@redhat.com> - 24.3.0-1
969f7f
- Update to 24.3.0
969f7f
969f7f
* Mon Dec 16 2013 Martin Stransky <stransky@redhat.com> - 24.2.0-4
969f7f
- Fixed rhbz#1024232 - thunderbird: squiggly lines used
969f7f
  for spelling correction disappear randomly
969f7f
969f7f
* Fri Dec 13 2013 Martin Stransky <stransky@redhat.com> - 24.2.0-3
969f7f
- Build with -Werror=format-security (rhbz#1037353)
969f7f
969f7f
* Wed Dec 11 2013 Martin Stransky <stransky@redhat.com> - 24.2.0-2
969f7f
- rhbz#1001998 - added a workaround for system notifications
969f7f
969f7f
* Mon Dec  9 2013 Jan Horak <jhorak@redhat.com> - 24.2.0-1
969f7f
- Update to 24.2.0
969f7f
969f7f
* Sat Nov 02 2013 Dennis Gilmore <dennis@ausil.us> - 24.1.0-2
969f7f
- remove ExcludeArch: armv7hl
969f7f
969f7f
* Wed Oct 30 2013 Jan Horak <jhorak@redhat.com> - 24.1.0-1
969f7f
- Update to 24.1.0
969f7f
969f7f
* Thu Oct 17 2013 Martin Stransky <stransky@redhat.com> - 24.0-4
969f7f
- Fixed rhbz#1005611 - BEAST workaround not enabled in Firefox
969f7f
969f7f
* Wed Sep 25 2013 Jan Horak <jhorak@redhat.com> - 24.0-3
969f7f
- Update to 24.0
969f7f
969f7f
* Mon Sep 23 2013 Jan Horak <jhorak@redhat.com> - 17.0.9-1
969f7f
- Update to 17.0.9 ESR
969f7f
969f7f
* Mon Aug  5 2013 Jan Horak <jhorak@redhat.com> - 17.0.8-1
969f7f
- Update to 17.0.8
969f7f
969f7f
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 17.0.7-2
969f7f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
969f7f
969f7f
* Tue Jun 25 2013 Jan Horak <jhorak@redhat.com> - 17.0.7-1
969f7f
- Update to 17.0.7
969f7f
969f7f
* Wed Jun 12 2013 Jan Horak <jhorak@redhat.com> - 17.0.6-2
969f7f
- Fixed rhbz#973371 - unable to install addons
969f7f
969f7f
* Tue May 14 2013 Jan Horak <jhorak@redhat.com> - 17.0.6-1
969f7f
- Update to 17.0.6
969f7f
969f7f
* Tue Apr  2 2013 Jan Horak <jhorak@redhat.com> - 17.0.5-1
969f7f
- Update to 17.0.5
969f7f
969f7f
* Mon Mar 11 2013 Jan Horak <jhorak@redhat.com> - 17.0.4-1
969f7f
- Update to 17.0.4
969f7f
969f7f
* Tue Feb 19 2013 Jan Horak <jhorak@redhat.com> - 17.0.3-1
969f7f
- Update to 17.0.3
969f7f
969f7f
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 17.0.2-4
969f7f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
969f7f
969f7f
* Tue Jan 15 2013 Martin Stransky <stransky@redhat.com> - 17.0.2-3
969f7f
- Added fix for NM regression (mozbz#791626)
969f7f
969f7f
* Tue Jan 15 2013 Jan Horak <jhorak@redhat.com> - 17.0.2-2
969f7f
- Added mozilla-746112 patch to fix crash on ppc(64)
969f7f
969f7f
* Thu Jan 10 2013 Jan Horak <jhorak@redhat.com> - 17.0.2-1
969f7f
- Update to 17.0.2
969f7f
969f7f
* Mon Nov 19 2012 Jan Horak <jhorak@redhat.com> - 17.0-1
969f7f
- Update to 17.0
969f7f
969f7f
* Mon Oct 29 2012 Jan Horak <jhorak@redhat.com> - 16.0.2-1
969f7f
- Update to 16.0.2
969f7f
969f7f
* Tue Oct 16 2012 Jan Horak <jhorak@redhat.com> - 16.0.1-2
969f7f
- Fixed nss and nspr versions
969f7f
969f7f
* Thu Oct 11 2012 Jan Horak <jhorak@redhat.com> - 16.0.1-1
969f7f
- Update to 16.0.1
969f7f
969f7f
* Tue Oct  9 2012 Jan Horak <jhorak@redhat.com> - 16.0-1
969f7f
- Update to 16.0
969f7f
969f7f
* Tue Sep 18 2012 Dan Horák <dan[at]danny.cz> - 15.0.1-3
969f7f
- Added fix for rhbz#855923 - TB freezes on Fedora 18 for PPC64
969f7f
969f7f
* Fri Sep 14 2012 Martin Stransky <stransky@redhat.com> - 15.0.1-2
969f7f
- Added build flags for second arches
969f7f
969f7f
* Tue Sep 11 2012 Jan Horak <jhorak@redhat.com> - 15.0.1-1
969f7f
- Update to 15.0.1
969f7f
969f7f
* Fri Sep  7 2012 Jan Horak <jhorak@redhat.com> - 15.0-2
969f7f
- Added workaround fix for PPC (rbhz#852698)
969f7f
969f7f
* Mon Aug 27 2012 Jan Horak <jhorak@redhat.com> - 15.0-1
969f7f
- Update to 15.0
969f7f
969f7f
* Wed Aug 1 2012 Martin Stransky <stransky@redhat.com> - 14.0-4
969f7f
- Removed StartupWMClass (rhbz#844863)
969f7f
- Fixed -g parameter
969f7f
- Removed thunderbird-devel before packing to avoid debugsymbols duplicities (rhbz#823940)
969f7f
969f7f
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 14.0-2
969f7f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
969f7f
969f7f
* Tue Jul 17 2012 Jan Horak <jhorak@redhat.com> - 14.0-1
969f7f
- Update to 14.0
969f7f
969f7f
* Fri Jun 15 2012 Jan Horak <jhorak@redhat.com> - 13.0.1-1
969f7f
- Update to 13.0.1
969f7f
969f7f
* Tue Jun  5 2012 Jan Horak <jhorak@redhat.com> - 13.0-1
969f7f
- Update to 13.0
969f7f
969f7f
* Mon May 7 2012 Martin Stransky <stransky@redhat.com> - 12.0.1-2
969f7f
- Fixed #717245 - adhere Static Library Packaging Guidelines
969f7f
969f7f
* Mon Apr 30 2012 Jan Horak <jhorak@redhat.com> - 12.0.1-1
969f7f
- Update to 12.0.1
969f7f
969f7f
* Tue Apr 24 2012 Jan Horak <jhorak@redhat.com> - 12.0-1
969f7f
- Update to 12.0
969f7f
969f7f
* Mon Apr 16 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 11.0.1-2
969f7f
- Add upstream patch to fix FTBFS on ARM
969f7f
969f7f
* Thu Mar 29 2012 Jan Horak <jhorak@redhat.com> - 11.0.1-1
969f7f
- Update to 11.0.1
969f7f
969f7f
* Thu Mar 22 2012 Jan Horak <jhorak@redhat.com> - 11.0-6
969f7f
- Added translations to thunderbird.desktop file
969f7f
969f7f
* Fri Mar 16 2012 Martin Stransky <stransky@redhat.com> - 11.0-5
969f7f
- gcc 4.7 build fixes
969f7f
969f7f
* Wed Mar 14 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 11.0-4
969f7f
- Add ARM configuration options
969f7f
969f7f
* Wed Mar 14 2012 Martin Stransky <stransky@redhat.com> - 11.0-3
969f7f
- Build with system libvpx
969f7f
969f7f
* Tue Mar 13 2012 Martin Stransky <stransky@redhat.com> - 11.0-1
969f7f
- Update to 11.0
969f7f
969f7f
* Thu Feb 23 2012 Jan Horak <jhorak@redhat.com> - 10.0.1-3
969f7f
- Added fix for proxy settings mozbz#682832
969f7f
969f7f
* Thu Feb 16 2012 Martin Stransky <stransky@redhat.com> - 10.0.1-2
969f7f
- Added fix for mozbz#727401
969f7f
969f7f
* Thu Feb  9 2012 Jan Horak <jhorak@redhat.com> - 10.0.1-1
969f7f
- Update to 10.0.1
969f7f
969f7f
* Mon Feb 6 2012 Martin Stransky <stransky@redhat.com> - 10.0-2
969f7f
- gcc 4.7 build fixes
969f7f
969f7f
* Tue Jan 31 2012 Jan Horak <jhorak@redhat.com> - 10.0-1
969f7f
- Update to 10.0
969f7f
969f7f
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.0-7
969f7f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
969f7f
969f7f
* Thu Jan 05 2012 Dan Horák <dan[at]danny.cz> - 9.0-6
969f7f
- disable jemalloc on s390(x) (taken from xulrunner)
969f7f
969f7f
* Wed Jan 04 2012 Dan Horák <dan[at]danny.cz> - 9.0-5
969f7f
- fix build on secondary arches (cherry-picked from 13afcd4c097c)
969f7f
969f7f
* Thu Dec 22 2011 Jan Horak <jhorak@redhat.com> - 9.0-4
969f7f
- Update to 9.0
969f7f
969f7f
* Fri Dec 9 2011 Martin Stransky <stransky@redhat.com> - 8.0-4
969f7f
- enabled gio support (#760644)
969f7f
969f7f
* Tue Nov 29 2011 Jan Horak <jhorak@redhat.com> - 8.0-3
969f7f
- Fixed s390x issues
969f7f
969f7f
* Thu Nov 10 2011 Jan Horak <jhorak@redhat.com> - 8.0-2
969f7f
- Enable Mozilla's crash reporter again for all archs
969f7f
- Temporary workaround for langpacks
969f7f
- Disabled addon check UI (#753551)
969f7f
969f7f
* Tue Nov  8 2011 Jan Horak <jhorak@redhat.com> - 8.0-1
969f7f
- Update to 8.0
969f7f
969f7f
* Tue Oct 18 2011 Martin Stransky <stransky@redhat.com> - 7.0.1-3
969f7f
- Added NM patches (mozbz#627672, mozbz#639959)
969f7f
969f7f
* Wed Oct 12 2011 Dan Horák <dan[at]danny.cz> - 7.0.1-2
969f7f
- fix build on secondary arches (copied from xulrunner)
969f7f
969f7f
* Fri Sep 30 2011 Jan Horak <jhorak@redhat.com> - 7.0.1-1
969f7f
- Update to 7.0.1
969f7f
969f7f
* Tue Sep 27 2011 Jan Horak <jhorak@redhat.com> - 7.0-1
969f7f
- Update to 7.0
969f7f
969f7f
* Tue Sep  6 2011 Jan Horak <jhorak@redhat.com> - 6.0.2-1
969f7f
- Update to 6.0.2
969f7f
969f7f
* Wed Aug 31 2011 Jan Horak <jhorak@redhat.com> - 6.0-3
969f7f
- Distrust a specific Certificate Authority
969f7f
969f7f
* Wed Aug 31 2011 Dan Horák <dan[at]danny.cz> - 6.0-2
969f7f
- add secondary-ipc patch from xulrunner
969f7f
969f7f
* Tue Aug 16 2011 Jan Horak <jhorak@redhat.com> - 6.0-1
969f7f
- Update to 6.0
969f7f
969f7f
* Tue Aug 16 2011 Remi Collet <remi@fedoraproject.org> 5.0-4
969f7f
- Don't unzip the langpacks
969f7f
969f7f
* Mon Aug 15 2011 Jan Horak <jhorak@redhat.com> - 5.0-3
969f7f
- Rebuild due to rhbz#728707
969f7f
969f7f
* Wed Jul 20 2011 Dan Horák <dan[at]danny.cz> - 5.0-2
969f7f
- add xulrunner patches for secondary arches
969f7f
969f7f
* Tue Jun 28 2011 Jan Horak <jhorak@redhat.com> - 5.0-1
969f7f
- Update to 5.0
969f7f
969f7f
* Tue Jun 21 2011 Jan Horak <jhorak@redhat.com> - 3.1.11-1
969f7f
- Update to 3.1.11
969f7f
969f7f
* Wed May 25 2011 Caolán McNamara <caolanm@redhat.com> - 3.1.10-2
969f7f
- rebuild for new hunspell
969f7f
969f7f
* Thu Apr 28 2011 Jan Horak <jhorak@redhat.com> - 3.1.10-1
969f7f
- Update to 3.1.10
969f7f
969f7f
* Thu Apr 21 2011 Christopher Aillon <caillon@redhat.com> - 3.1.9-7
969f7f
- Make gvfs-open launch a compose window (salimma)
969f7f
- Spec file cleanups (salimma, caillon)
969f7f
- Split out mozilla crashreporter symbols to its own debuginfo package (caillon)
969f7f
969f7f
* Sat Apr  2 2011 Christopher Aillon <caillon@redhat.com> - 3.1.9-6
969f7f
- Drop gio support: the code hooks don't exist yet for TB 3.1.x
969f7f
969f7f
* Fri Apr  1 2011 Orion Poplawski <orion@cora.nwra.com> - 3.1.9-5
969f7f
- Enable startup notification
969f7f
969f7f
* Sun Mar 20 2011 Dan Horák <dan[at]danny.cz> - 3.1.9-4
969f7f
- updated the s390 build patch
969f7f
969f7f
* Fri Mar 18 2011 Jan Horak <jhorak@redhat.com> - 3.1.9-3
969f7f
- Removed gnome-vfs2, libgnomeui and libgnome from build requires
969f7f
969f7f
* Wed Mar  9 2011 Jan Horak <jhorak@redhat.com> - 3.1.9-2
969f7f
- Disabled gnomevfs, enabled gio
969f7f
969f7f
* Mon Mar  7 2011 Jan Horak <jhorak@redhat.com> - 3.1.9-1
969f7f
- Update to 3.1.9
969f7f
969f7f
* Tue Mar  1 2011 Jan Horak <jhorak@redhat.com> - 3.1.8-3
969f7f
- Update to 3.1.8
969f7f
969f7f
* Wed Feb  9 2011 Christopher Aillon <caillon@redhat.com> - 3.1.7-6
969f7f
- Drop the -lightning subpackage, it needs to be in its own SRPM
969f7f
969f7f
* Mon Feb  7 2011 Christopher Aillon <caillon@redhat.com> - 3.1.7-5
969f7f
- Bring back the default mailer check but fix up the directory
969f7f
969f7f
* Wed Dec 15 2010 Jan Horak <jhorak@redhat.com> - 3.1.7-4
969f7f
- Mozilla crash reporter enabled
969f7f
969f7f
* Thu Dec  9 2010 Jan Horak <jhorak@redhat.com> - 3.1.7-2
969f7f
- Fixed useragent
969f7f
969f7f
* Thu Dec  9 2010 Jan Horak <jhorak@redhat.com> - 3.1.7-1
969f7f
- Update to 3.1.7
969f7f
969f7f
* Sat Nov 27 2010 Remi Collet <fedora@famillecollet.com> - 3.1.6-8
969f7f
- fix cairo + nspr required version
969f7f
- lightning: fix thunderbird version required
969f7f
- lightning: fix release (b3pre)
969f7f
- lightning: clean install
969f7f
969f7f
* Mon Nov 22 2010 Jan Horak <jhorak@redhat.com> - 3.1.6-7
969f7f
- Added x-scheme-handler/mailto to thunderbird.desktop file
969f7f
969f7f
* Mon Nov  8 2010 Jan Horak <jhorak@redhat.com> - 3.1.6-4
969f7f
- Added libnotify patch
969f7f
- Removed dependency on static libraries
969f7f
969f7f
* Fri Oct 29 2010 Jan Horak <jhorak@redhat.com> - 3.1.6-2
969f7f
- Move thunderbird-lightning extension from Sunbird package to Thunderbird
969f7f
969f7f
* Wed Oct 27 2010 Jan Horak <jhorak@redhat.com> - 3.1.6-1
969f7f
- Update to 3.1.6
969f7f
969f7f
* Tue Oct 19 2010 Jan Horak <jhorak@redhat.com> - 3.1.5-1
969f7f
- Update to 3.1.5
969f7f
969f7f
* Thu Sep 16 2010 Dan Horák <dan[at]danny.cz> - 3.1.3-2
969f7f
- fix build on s390
969f7f
969f7f
* Tue Sep  7 2010 Jan Horak <jhorak@redhat.com> - 3.1.3-1
969f7f
- Update to 3.1.3
969f7f
969f7f
* Fri Aug  6 2010 Jan Horak <jhorak@redhat.com> - 3.1.2-1
969f7f
- Update to 3.1.2
969f7f
- Disable updater
969f7f
969f7f
* Tue Jul 20 2010 Jan Horak <jhorak@redhat.com> - 3.1.1-1
969f7f
- Update to 3.1.1
969f7f
969f7f
* Thu Jun 24 2010 Jan Horak <jhorak@redhat.com> - 3.1-1
969f7f
- Thunderbird 3.1
969f7f
969f7f
* Fri Jun 11 2010 Jan Horak <jhorak@redhat.com> - 3.1-0.3.rc2
969f7f
- TryExec added to desktop file
969f7f
969f7f
* Wed Jun  9 2010 Christopher Aillon <caillon@redhat.com> 3.1-0.2.rc2
969f7f
- Thunderbird 3.1 RC2
969f7f
969f7f
* Tue May 25 2010 Christopher Aillon <caillon@redhat.com> 3.1-0.1.rc1
969f7f
- Thunderbird 3.1 RC1
969f7f
969f7f
* Fri Apr 30 2010 Jan Horak <jhorak@redhat.com> - 3.0.4-3
969f7f
- Fix for mozbz#550455
969f7f
969f7f
* Tue Apr 13 2010 Martin Stransky <stransky@redhat.com> - 3.0.4-2
969f7f
- Fixed langpacks (#580444)
969f7f
969f7f
* Tue Mar 30 2010 Jan Horak <jhorak@redhat.com> - 3.0.4-1
969f7f
- Update to 3.0.4
969f7f
969f7f
* Sat Mar 06 2010 Kalev Lember <kalev@smartlink.ee> - 3.0.3-2
969f7f
- Own extension directories (#532132)
969f7f
969f7f
* Mon Mar  1 2010 Jan Horak <jhorak@redhat.com> - 3.0.3-1
969f7f
- Update to 3.0.3
969f7f
969f7f
* Thu Feb 25 2010 Jan Horak <jhorak@redhat.com> - 3.0.2-1
969f7f
- Update to 3.0.2
969f7f
969f7f
* Wed Jan 20 2010 Martin Stransky <stransky@redhat.com> - 3.0.1-1
969f7f
- Update to 3.0.1
969f7f
969f7f
* Mon Jan 18 2010 Martin Stransky <stransky@redhat.com> - 3.0-5
969f7f
- Added fix for #480603 - thunderbird takes
969f7f
  unacceptably long time to start
969f7f
969f7f
* Wed Dec  9 2009 Jan Horak <jhorak@redhat.com> - 3.0-4
969f7f
- Update to 3.0
969f7f
969f7f
* Thu Dec  3 2009 Jan Horak <jhorak@redhat.com> - 3.0-3.13.rc2
969f7f
- Update to RC2
969f7f
969f7f
* Wed Nov 25 2009 Jan Horak <jhorak@redhat.com> - 3.0-3.12.rc1
969f7f
- Sync with Mozilla latest RC1 build
969f7f
969f7f
* Thu Nov 19 2009 Jan Horak <jhorak@redhat.com> - 3.0-3.11.rc1
969f7f
- Update to RC1
969f7f
969f7f
* Thu Sep 17 2009 Christopher Aillon <caillon@redhat.com> - 3.0-3.9.b4
969f7f
- Update to 3.0 b4
969f7f
969f7f
* Thu Aug  6 2009 Martin Stransky <stransky@redhat.com> - 3.0-3.8.beta3
969f7f
- Added fix for #437596
969f7f
- Removed unused patches
969f7f
969f7f
* Thu Aug  6 2009 Jan Horak <jhorak@redhat.com> - 3.0-3.7.beta3
969f7f
- Removed unused build requirements
969f7f
969f7f
* Mon Aug  3 2009 Jan Horak <jhorak@redhat.com> - 3.0-3.6.beta3
969f7f
- Build with system hunspell
969f7f
969f7f
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-3.5.b3
969f7f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
969f7f
969f7f
* Fri Jul 24 2009 Jan Horak <jhorak@redhat.com> - 3.0-2.5.beta3
969f7f
- Use system hunspell
969f7f
969f7f
* Tue Jul 21 2009 Jan Horak <jhorak@redhat.com> - 3.0-2.4.beta3
969f7f
- Update to 3.0 beta3
969f7f
969f7f
* Mon Mar 30 2009 Jan Horak <jhorak@redhat.com> - 3.0-2.2.beta2
969f7f
- Fixed open-browser.sh to use xdg-open instead of gnome-open
969f7f
969f7f
* Mon Mar 23 2009 Christopher Aillon <caillon@redhat.com> - 3.0-2.1.beta2
969f7f
- Disable the default app nag dialog
969f7f
969f7f
* Tue Mar 17 2009 Jan Horak <jhorak@redhat.com> - 3.0-2.beta2
969f7f
- Fixed clicked link does not open in browser (#489120)
969f7f
- Fixed missing help in thunderbird (#488885)
969f7f
969f7f
* Mon Mar  2 2009 Jan Horak <jhorak@redhat.com> - 3.0-1.beta2
969f7f
- Update to 3.0 beta2
969f7f
- Added Patch2 to build correctly when building with --enable-shared option
969f7f
969f7f
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0.18-3
969f7f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
969f7f
969f7f
* Wed Jan 07 2009 Christopher Aillon <caillon@redhat.com> - 2.0.0.18-2
969f7f
- Disable the crash dialog
969f7f
969f7f
* Wed Nov 19 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.18-1
969f7f
- Update to 2.0.0.18
969f7f
969f7f
* Thu Oct  9 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.17-1
969f7f
- Update to 2.0.0.17
969f7f
969f7f
* Wed Jul 23 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.16-1
969f7f
- Update to 2.0.0.16
969f7f
969f7f
* Thu May  1 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.14-1
969f7f
- Update to 2.0.0.14
969f7f
- Use the system dictionaries
969f7f
969f7f
* Fri Apr 18 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.12-6
969f7f
- Icon belongs in _datadir/pixmaps
969f7f
969f7f
* Fri Apr 18 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.12-5
969f7f
- rebuilt
969f7f
969f7f
* Mon Apr  7 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.12-4
969f7f
- Add %%lang attributes to langpacks
969f7f
969f7f
* Sat Mar 15 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.12-3
969f7f
- Avoid conflict between gecko debuginfos
969f7f
969f7f
* Mon Mar 03 2008 Martin Stransky <stransky@redhat.com> 2.0.0.12-2
969f7f
- Updated starting script (#426331)
969f7f
969f7f
* Tue Feb 26 2008 Christopher Aillon <caillon@redhat.com> 2.0.0.12-1
969f7f
- Update to 2.0.0.12
969f7f
- Fix up icon location and some scriptlets
969f7f
969f7f
* Sun Dec  9 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.9-2
969f7f
- Fix some rpmlint warnings
969f7f
- Drop some old patches and obsoletes
969f7f
969f7f
* Thu Nov 15 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.9-1
969f7f
- Update to 2.0.0.9
969f7f
969f7f
* Wed Sep 26 2007 Martin Stransky <stransky@redhat.com> 2.0.0.6-6
969f7f
- Fixed #242657 - firefox -g doesn't work
969f7f
969f7f
* Tue Sep 25 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-5
969f7f
- Removed hardcoded MAX_PATH, PATH_MAX and MAXPATHLEN macros
969f7f
969f7f
* Tue Sep 11 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-4
969f7f
- Fix crashes when using GTK+ themes containing a gtkrc which specify
969f7f
  GtkOptionMenu::indicator_size and GtkOptionMenu::indicator_spacing
969f7f
969f7f
* Mon Sep 10 2007 Martin Stransky <stransky@redhat.com> 2.0.0.6-3
969f7f
- added fix for #246248 - firefox crashes when searching for word "do"
969f7f
969f7f
* Mon Aug 13 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-2
969f7f
- Update the license tag
969f7f
969f7f
* Wed Aug  8 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-1
969f7f
- Update to 2.0.0.6
969f7f
- Own the application directory (#244901)
969f7f
969f7f
* Tue Jul 31 2007 Martin Stransky <stransky@redhat.com> 2.0.0.0-3
969f7f
- added pango ligature fix
969f7f
969f7f
* Thu Apr 19 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-1
969f7f
- Update to 2.0.0.0 Final
969f7f
969f7f
* Fri Apr 13 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-0.5.rc1
969f7f
- Fix the desktop file
969f7f
- Clean up the files list
969f7f
- Remove the default client stuff from the pref window
969f7f
969f7f
* Thu Apr 12 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-0.4.rc1
969f7f
- Rebuild into Fedora
969f7f
969f7f
* Wed Apr 11 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-0.3.rc1
969f7f
- Update langpacks
969f7f
969f7f
* Thu Apr  5 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-0.2.rc1
969f7f
- Build option tweaks
969f7f
- Bring the install section to parity with Firefox's
969f7f
969f7f
* Thu Apr  5 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.0-0.1.rc1
969f7f
- Update to 2.0.0.0 RC1
969f7f
969f7f
* Sun Mar 25 2007 Christopher Aillon <caillon@redhat.com> 1.5.0.11-1
969f7f
- Update to 1.5.0.11
969f7f
969f7f
* Fri Mar 2 2007 Martin Stransky <stransky@redhat.com> 1.5.0.10-1
969f7f
- Update to 1.5.0.10
969f7f
969f7f
* Mon Feb 12 2007 Martin Stransky <stransky@redhat.com> 1.5.0.9-8
969f7f
- added fix for #227406: garbage characters on some websites
969f7f
  (when pango is disabled)
969f7f
969f7f
* Tue Jan 30 2007 Christopher Aillon <caillon@redhat.com> 1.5.0.9-7
969f7f
- Updated cursor position patch from tagoh to fix issue with "jumping"
969f7f
  cursor when in a textfield with tabs.
969f7f
969f7f
* Tue Jan 30 2007 Christopher Aillon <caillon@redhat.com> 1.5.0.9-6
969f7f
- Fix the DND implementation to not grab, so it works with new GTK+.
969f7f
969f7f
* Thu Dec 21 2006 Behdad Esfahbod <besfahbo@redhat.com> 1.5.0.9-5
969f7f
- Added firefox-1.5-pango-underline.patch
969f7f
969f7f
* Wed Dec 20 2006 Behdad Esfahbod <besfahbo@redhat.com> 1.5.0.9-4
969f7f
- Added firefox-1.5-pango-justified-range.patch
969f7f
969f7f
* Tue Dec 19 2006 Behdad Esfahbod <besfahbo@redhat.com> 1.5.0.9-3
969f7f
- Added firefox-1.5-pango-cursor-position-more.patch
969f7f
969f7f
* Tue Dec 19 2006 Matthias Clasen <mclasen@redhat.com> 1.5.0.9-2
969f7f
- Add a Requires: launchmail  (#219884)
969f7f
969f7f
* Tue Dec 19 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.9-1
969f7f
- Update to 1.5.0.9
969f7f
- Take firefox's pango fixes
969f7f
- Don't offer to import...nothing.
969f7f
969f7f
* Tue Nov  7 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.8-1
969f7f
- Update to 1.5.0.8
969f7f
- Allow choosing of download directory
969f7f
- Take the user to the correct directory from the Download Manager.
969f7f
- Patch to add support for printing via pango from Behdad.
969f7f
969f7f
* Sun Oct  8 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.7-4
969f7f
- Default to use of system colors
969f7f
969f7f
* Wed Oct  4 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.7-3
969f7f
- Bring the invisible character to parity with GTK+
969f7f
969f7f
* Wed Sep 27 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.7-2
969f7f
- Fix crash when changing gtk key theme
969f7f
- Prevent UI freezes while changing GNOME theme
969f7f
- Remove verbiage about pango; no longer required by upstream.
969f7f
969f7f
* Wed Sep 13 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.7-1
969f7f
- Update to 1.5.0.7
969f7f
969f7f
* Thu Sep  7 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-8
969f7f
- Shuffle order of the install phase around
969f7f
969f7f
* Thu Sep  7 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-7
969f7f
- Let there be art for Alt+Tab again
969f7f
- s/tbdir/mozappdir/g
969f7f
969f7f
* Wed Sep  6 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-6
969f7f
- Fix for cursor position in editor widgets by tagoh and behdad (#198759)
969f7f
969f7f
* Tue Sep  5 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-5
969f7f
- Update nopangoxft.patch
969f7f
- Fix rendering of MathML thanks to Behdad Esfahbod.
969f7f
- Update start page text to reflect the MathML fixes.
969f7f
- Enable pango by default on all locales
969f7f
- Build using -rpath
969f7f
- Re-enable GCC visibility
969f7f
969f7f
* Thu Aug  3 2006 Kai Engert <kengert@redhat.com> - 1.5.0.5-4
969f7f
- Fix a build failure in mailnews mime code.
969f7f
969f7f
* Tue Aug  1 2006 Matthias Clasen <mclasen@redhat.com> - 1.5.0.5-3
969f7f
- Rebuild
969f7f
969f7f
* Thu Jul 27 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-2
969f7f
- Update to 1.5.0.5
969f7f
969f7f
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.5.0.4-2.1
969f7f
- rebuild
969f7f
969f7f
* Mon Jun 12 2006 Kai Engert <kengert@redhat.com> - 1.5.0.4-2
969f7f
- Update to 1.5.0.4
969f7f
- Fix desktop-file-utils requires
969f7f
969f7f
* Wed Apr 19 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.2-2
969f7f
- Update to 1.5.0.2
969f7f
969f7f
* Thu Mar 16 2006 Christopher Aillon <caillon@redhat.com> - 1.5-7
969f7f
- Bring the other arches back
969f7f
969f7f
* Mon Mar 13 2006 Christopher Aillon <caillon@redhat.com> - 1.5.6
969f7f
- Temporarily disable other arches that we don't ship FC5 with, for time
969f7f
969f7f
* Mon Mar 13 2006 Christopher Aillon <caillon@redhat.com> - 1.5-5
969f7f
- Add a notice to the mail start page denoting this is a pango enabled build.
969f7f
969f7f
* Fri Feb 10 2006 Christopher Aillon <caillon@redhat.com> - 1.5-3
969f7f
- Add dumpstack.patch
969f7f
- Improve the langpack install stuff
969f7f
969f7f
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.5-2.1
969f7f
- rebuilt for new gcc4.1 snapshot and glibc changes
969f7f
969f7f
* Fri Jan 27 2006 Christopher Aillon <caillon@redhat.com> - 1.5-2
969f7f
- Add some langpacks back in
969f7f
- Stop providing MozillaThunderbird
969f7f
969f7f
* Thu Jan 12 2006 Christopher Aillon <caillon@redhat.com> - 1.5-1
969f7f
- Official 1.5 release is out
969f7f
969f7f
* Wed Jan 11 2006 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.6.rc1
969f7f
- Fix crash when deleting highlighted text while composing mail within
969f7f
  plaintext editor with spellcheck enabled.
969f7f
969f7f
* Tue Jan  3 2006 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.5.rc1
969f7f
- Looks like we can build on ppc64 again.
969f7f
969f7f
* Fri Dec 16 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.4.rc1
969f7f
- Rebuild
969f7f
969f7f
* Fri Dec 16 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.3.rc1
969f7f
- Once again, disable ppc64 because of a new issue.
969f7f
  See https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=175944
969f7f
969f7f
- Use the system NSS libraries
969f7f
- Build on ppc64
969f7f
969f7f
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
969f7f
- rebuilt
969f7f
969f7f
* Mon Nov 28 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.1.rc1
969f7f
- Fix issue with popup dialogs and other actions causing lockups
969f7f
969f7f
* Sat Nov  5 2005 Christopher Aillon <caillon@redhat.com> 1.5-0.5.0.rc1
969f7f
- Update to 1.5 rc1
969f7f
969f7f
* Sat Oct  8 2005 Christopher Aillon <caillon@redhat.com> 1.5-0.5.0.beta2
969f7f
- Update to 1.5 beta2
969f7f
969f7f
* Wed Sep 28 2005 Christopher Aillon <caillon@redhat.com> 1.5-0.5.0.beta1
969f7f
- Update to 1.5 beta1
969f7f
- Bring the install phase of the spec file up to speed
969f7f
969f7f
* Sun Aug 14 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-4
969f7f
- Rebuild
969f7f
969f7f
* Sat Aug  6 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-3
969f7f
- Add patch to make file chooser dialog modal
969f7f
969f7f
* Fri Jul 22 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-2
969f7f
- Update to 1.0.6
969f7f
969f7f
* Mon Jul 18 2005 Christopher Aillon <caillon@redhat.com> 1.0.6-0.1.fc5
969f7f
- 1.0.6 Release Candidate
969f7f
969f7f
* Fri Jul 15 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-8
969f7f
- Use system NSPR
969f7f
- Fix crash on 64bit platforms (#160330)
969f7f
969f7f
* Thu Jun 23 2005 Kristian Høgsberg <krh@redhat.com>  1.0.2-7
969f7f
- Add firefox-1.0-pango-cairo.patch to get rid of the last few Xft
969f7f
  references, fixing the "no fonts" problem.
969f7f
969f7f
* Fri May 13 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-6
969f7f
- Change the Exec line in the desktop file to `thunderbird`
969f7f
969f7f
* Fri May 13 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-5
969f7f
- Update pango patche, MOZ_DISABLE_PANGO now works as advertised.
969f7f
969f7f
* Mon May  9 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-4
969f7f
- Add temporary workaround to not create files in the user's $HOME (#149664)
969f7f
969f7f
* Wed May  4 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-3
969f7f
- Don't have downloads "disappear" when downloading to desktop (#139015)
969f7f
- Fix for some more cursor issues in textareas (149991, 150002, 152089)
969f7f
- Add upstream patch to fix bidi justification of pango
969f7f
- Add patch to fix launching of helper applications
969f7f
- Add patch to properly link against libgfxshared_s.a
969f7f
- Fix multilib conflicts
969f7f
969f7f
* Wed Apr 27 2005 Warren Togami <wtogami@redhat.com>
969f7f
- correct confusing PANGO vars in startup script
969f7f
969f7f
* Wed Mar 23 2005 Christopher Aillon <caillon@redhat.com> 1.0.2-1
969f7f
- Thunderbird 1.0.2
969f7f
969f7f
* Tue Mar  8 2005 Christopher Aillon <caillon@redhat.com> 1.0-5
969f7f
- Add patch to compile against new fortified glibc macros
969f7f
969f7f
* Sat Mar  5 2005 Christopher Aillon <caillon@redhat.com> 1.0-4
969f7f
- Rebuild against GCC 4.0
969f7f
- Add execshield patches
969f7f
- Minor specfile cleanup
969f7f
969f7f
* Mon Dec 20 2004 Christopher Aillon <caillon@redhat.com> 1.0-3
969f7f
- Rebuild
969f7f
969f7f
* Thu Dec 16 2004 Christopher Aillon <caillon@redhat.com> 1.0-2
969f7f
- Add RPM version to useragent
969f7f
969f7f
* Thu Dec 16 2004 Christopher Blizzard <blizzard@redhat.com>
969f7f
- Port over pango patches from firefox
969f7f
969f7f
* Wed Dec  8 2004 Christopher Aillon <caillon@redhat.com> 1.0-1
969f7f
- Thunderbird 1.0
969f7f
969f7f
* Mon Dec  6 2004 Christopher Aillon <caillon@redhat.com> 1.0-0.rc1.1
969f7f
- Fix advanced prefs
969f7f
969f7f
* Fri Dec  3 2004 Christopher Aillon <caillon@redhat.com>
969f7f
- Make this run on s390(x) now for real
969f7f
969f7f
* Wed Dec  1 2004 Christopher Aillon <caillon@redhat.com> 1.0-0.rc1.0
969f7f
- Update to 1.0 rc1
969f7f
969f7f
* Fri Nov 19 2004 Christopher Aillon <caillon@redhat.com>
969f7f
- Add patches to build and run on s390(x)
969f7f
969f7f
* Thu Nov 11 2004 Christopher Aillon <caillon@redhat.com> 0.9.0-2
969f7f
- Rebuild to fix file chooser
969f7f
969f7f
* Fri Nov  5 2004 Christopher Aillon <caillon@redhat.com> 0.9.0-1
969f7f
- Update to 0.9
969f7f
969f7f
* Fri Oct 22 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-10
969f7f
- Prevent inlining of stack direction detection (#135255)
969f7f
969f7f
* Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-9
969f7f
- More file chooser fixes (same as in firefox)
969f7f
- Fix for upstream 28327.
969f7f
969f7f
* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0.8.0-8
969f7f
- Update the pango patch
969f7f
969f7f
* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0.8.0-8
969f7f
- Pull over patches from firefox build:
969f7f
  - disable default application dialog
969f7f
  - don't include software update since it doesn't work
969f7f
  - make external app support work
969f7f
969f7f
* Thu Oct 14 2004 Christopher Blizzard <blizzard@redhat.com> 0.8.0-7
969f7f
- Use pango for rendering
969f7f
969f7f
* Tue Oct 12 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-6
969f7f
- Fix for 64 bit crash at startup (b.m.o #256603)
969f7f
969f7f
* Sat Oct  9 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-5
969f7f
- Add patches to fix xremote (#135036)
969f7f
969f7f
* Fri Oct  8 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-4
969f7f
- Add patch to fix button focus issues (#133507)
969f7f
- Add patch for fix IMAP race issues (bmo #246439)
969f7f
969f7f
* Fri Oct  1 2004 Bill Nottingham <notting@redhat.com> 0.8.0-3
969f7f
- filter out library Provides: and internal Requires:
969f7f
969f7f
* Tue Sep 28 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-2
969f7f
- Backport the GTK+ File Chooser.
969f7f
- Add fix for JS math on x86_64 systems
969f7f
- Add pkgconfig patch
969f7f
969f7f
* Thu Sep 16 2004 Christopher Aillon <caillon@redhat.com> 0.8.0-1
969f7f
- Update to 0.8.0
969f7f
- Remove enigmail
969f7f
- Update BuildRequires
969f7f
- Remove gcc34 and extension manager patches -- they are upstreamed.
969f7f
- Fix for gnome-vfs2 error at component registration
969f7f
969f7f
* Fri Sep 03 2004 Christopher Aillon <caillon@redhat.com> 0.7.3-5
969f7f
- Build with --disable-xprint
969f7f
969f7f
* Wed Sep 01 2004 David Hill <djh[at]ii.net> 0.7.3-4
969f7f
- remove all Xvfb-related hacks
969f7f
969f7f
* Wed Sep 01 2004 Warren Togami <wtogami@redhat.com>
969f7f
- actually apply psfonts
969f7f
- add mozilla gnome-uriloader patch to prevent build failure
969f7f
969f7f
* Tue Aug 31 2004 Warren Togami <wtogami@redhat.com> 0.7.3-3
969f7f
- rawhide import
969f7f
- apply NetBSD's freetype 2.1.8 patch
969f7f
- apply psfonts patch
969f7f
- remove BR on /usr/bin/ex, breaks beehive
969f7f
969f7f
* Tue Aug 31 2004 David Hill <djh[at]ii.net> 0.7.3-0.fdr.2
969f7f
- oops, fix %%install
969f7f
969f7f
* Thu Aug 26 2004 David Hill <djh[at]ii.net> 0.7.3-0.fdr.1
969f7f
- update to Thunderbird 0.7.3 and Enigmail 0.85.0
969f7f
- remove XUL.mfasl on startup, add Debian enigmail patches
969f7f
- add Xvfb hack for -install-global-extension
969f7f
969f7f
* Wed Jul 14 2004 David Hill <djh[at]ii.net> 0.7.2-0.fdr.0
969f7f
- update to 0.7.2, just because it's there
969f7f
- update gcc-3.4 patch (Kaj Niemi)
969f7f
- add EM registration patch and remove instdir hack
969f7f
969f7f
* Sun Jul 04 2004 David Hill <djh[at]ii.net> 0.7.1-0.fdr.1
969f7f
- re-add Enigmime 1.0.7, omit Enigmail until the Mozilla EM problems are fixed
969f7f
969f7f
* Wed Jun 30 2004 David Hill <djh[at]ii.net> 0.7.1-0.fdr.0
969f7f
- update to 0.7.1
969f7f
- remove Enigmail
969f7f
969f7f
* Mon Jun 28 2004 David Hill <djh[at]ii.net> 0.7-0.fdr.1
969f7f
- re-enable Enigmail 0.84.1
969f7f
- add gcc-3.4 patch (Kaj Niemi)
969f7f
- use official branding (with permission)
969f7f
969f7f
* Fri Jun 18 2004 David Hill <djh[at]ii.net> 0.7-0.fdr.0
969f7f
- update to 0.7
969f7f
- temporarily disable Enigmail 0.84.1, make ftp links work (#1634)
969f7f
- specify libdir, change BR for apt (V. Skyttä, #1617)
969f7f
969f7f
* Tue May 18 2004 Warren Togami <wtogami@redhat.com> 0.6-0.fdr.5
969f7f
- temporary workaround for enigmail skin "modern" bug
969f7f
969f7f
* Mon May 10 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.4
969f7f
- update to Enigmail 0.84.0
969f7f
- update launch script
969f7f
969f7f
* Mon May 10 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.3
969f7f
- installation directory now versioned
969f7f
- allow root to run the program (for installing extensions)
969f7f
- remove unnecessary %%pre and %%post
969f7f
- remove separators, update mozconfig and launch script (M. Schwendt, #1460)
969f7f
969f7f
* Wed May 05 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.2
969f7f
- include Enigmail, re-add release notes
969f7f
- delete %%{_libdir}/thunderbird in %%pre
969f7f
969f7f
* Mon May 03 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.1
969f7f
- update to Thunderbird 0.6
969f7f
969f7f
* Fri Apr 30 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.0.rc1
969f7f
- update to Thunderbird 0.6 RC1
969f7f
- add new icon, remove release notes
969f7f
969f7f
* Thu Apr 15 2004 David Hill <djh[at]ii.net> 0.6-0.fdr.0.20040415
969f7f
- update to latest CVS, update mozconfig and %%build accordingly
969f7f
- update to Enigmail 0.83.6
969f7f
- remove x-remote and x86_64 patches
969f7f
- build with -Os
969f7f
969f7f
* Thu Apr 15 2004 David Hill <djh[at]ii.net> 0.5-0.fdr.12
969f7f
- update x-remote patch
969f7f
- more startup script fixes
969f7f
969f7f
* Tue Apr 06 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.11
969f7f
- startup script fixes, and a minor cleanup
969f7f
969f7f
* Sun Apr 04 2004 Warren Togami <wtogami@redhat.com> 0:0.5-0.fdr.10
969f7f
- Minor cleanups
969f7f
969f7f
* Sun Apr 04 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.8
969f7f
- minor improvements to open-browser.sh and startup script
969f7f
- update to latest version of Blizzard's x-remote patch
969f7f
969f7f
* Thu Mar 25 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.7
969f7f
- update open-browser.sh, startup script, and BuildRequires
969f7f
969f7f
* Sun Mar 14 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.6
969f7f
- update open-browser script, modify BuildRequires (Warren)
969f7f
- add Blizzard's x-remote patch
969f7f
- initial attempt at x-remote-enabled startup script
969f7f
969f7f
* Sun Mar 07 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.5
969f7f
- refuse to run with excessive privileges
969f7f
969f7f
* Fri Feb 27 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.4
969f7f
- add Mozilla x86_64 patch (Oliver Sontag)
969f7f
- Enigmail source filenames now include the version
969f7f
- modify BuildRoot
969f7f
969f7f
* Thu Feb 26 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.3
969f7f
- use the updated official tarball
969f7f
969f7f
* Wed Feb 18 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.2
969f7f
- fix %%prep script
969f7f
969f7f
* Mon Feb 16 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.1
969f7f
- update Enigmail to 0.83.3
969f7f
- use official source tarball (after removing the CRLFs)
969f7f
- package renamed to thunderbird
969f7f
969f7f
* Mon Feb 09 2004 David Hill <djh[at]ii.net> 0:0.5-0.fdr.0
969f7f
- update to 0.5
969f7f
- check for lockfile before launching
969f7f
969f7f
* Fri Feb 06 2004 David Hill <djh[at]ii.net>
969f7f
- update to latest cvs
969f7f
- update to Enigmail 0.83.2
969f7f
969f7f
* Thu Jan 29 2004 David Hill <djh[at]ii.net> 0:0.4-0.fdr.5
969f7f
- update to Enigmail 0.83.1
969f7f
- removed Mozilla/Firebird script patching
969f7f
969f7f
* Sat Jan 03 2004 David Hill <djh[at]ii.net> 0:0.4-0.fdr.4
969f7f
- add startup notification to .desktop file
969f7f
969f7f
* Thu Dec 25 2003 Warren Togami <warren@togami.com> 0:0.4-0.fdr.3
969f7f
- open-browser.sh release 3
969f7f
- patch broken /usr/bin/mozilla script during install
969f7f
- dir ownership
969f7f
- XXX: Source fails build on x86_64... fix later
969f7f
969f7f
* Tue Dec 23 2003 David Hill <djh[at]ii.net> 0:0.4-0.fdr.2
969f7f
- update to Enigmail 0.82.5
969f7f
- add Warren's open-browser.sh (#1113)
969f7f
969f7f
* Tue Dec 09 2003 David Hill <djh[at]ii.net> 0:0.4-0.fdr.1
969f7f
- use Thunderbird's mozilla-xremote-client to launch browser
969f7f
969f7f
* Sun Dec 07 2003 David Hill <djh[at]ii.net> 0:0.4-0.fdr.0
969f7f
- update to 0.4
969f7f
- make hyperlinks work (with recent versions of Firebird/Mozilla)
969f7f
969f7f
* Thu Dec 04 2003 David Hill <djh[at]ii.net>
969f7f
- update to 0.4rc2
969f7f
969f7f
* Wed Dec 03 2003 David Hill <djh[at]ii.net>
969f7f
- update to 0.4rc1 and Enigmail 0.82.4
969f7f
969f7f
* Thu Nov 27 2003 David Hill <djh[at]ii.net>
969f7f
- update to latest CVS and Enigmail 0.82.3
969f7f
969f7f
* Sun Nov 16 2003 David Hill <djh[at]ii.net>
969f7f
- update to latest CVS (0.4a)
969f7f
- update Enigmail to 0.82.2
969f7f
- alter mozconfig for new build requirements
969f7f
- add missing BuildReq (#987)
969f7f
969f7f
* Thu Oct 16 2003 David Hill <djh[at]ii.net> 0:0.3-0.fdr.0
969f7f
- update to 0.3
969f7f
969f7f
* Sun Oct 12 2003 David Hill <djh[at]ii.net> 0:0.3rc3-0.fdr.0
969f7f
- update to 0.3rc3
969f7f
- update Enigmail to 0.81.7
969f7f
969f7f
* Thu Oct 02 2003 David Hill <djh[at]ii.net> 0:0.3rc2-0.fdr.0
969f7f
- update to 0.3rc2
969f7f
969f7f
* Wed Sep 17 2003 David Hill <djh[at]ii.net> 0:0.2-0.fdr.2
969f7f
- simplify startup script
969f7f
969f7f
* Wed Sep 10 2003 David Hill <djh[at]ii.net> 0:0.2-0.fdr.1
969f7f
- add GPG support (Enigmail 0.81.6)
969f7f
- specfile fixes (#679)
969f7f
969f7f
* Thu Sep 04 2003 David Hill <djh[at]ii.net> 0:0.2-0.fdr.0
969f7f
- update to 0.2
969f7f
969f7f
* Mon Sep 01 2003 David Hill <djh[at]ii.net>
969f7f
- initial RPM
969f7f
  (based on the fedora MozillaFirebird-0.6.1 specfile)