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