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