|
|
4133dc |
# OVERRIDE RHEL VERSION HERE, RHEL BUILDSYSTEM DOESN'T HAVE DIST TAG
|
|
|
4133dc |
#%%global rhel 4
|
|
|
4133dc |
|
|
|
4133dc |
# Define Variables that must exist
|
|
|
4133dc |
%{?!rhel:%global rhel 0}
|
|
|
4133dc |
%{?!fedora:%global fedora 0}
|
|
|
4133dc |
|
|
|
4133dc |
# Map RHEL to Fedora version
|
|
|
4133dc |
%if 0%{?rhel} == 6
|
|
|
4133dc |
%global fedora 12
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if 0%{?rhel} == 7
|
|
|
4133dc |
%global fedora 19
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
# Define variables to use in conditionals
|
|
|
4133dc |
%global force_sound_aplay 0
|
|
|
4133dc |
%global dbus_integration 0
|
|
|
4133dc |
%global gstreamer_integration 0
|
|
|
4133dc |
%global nm_integration 0
|
|
|
4133dc |
%global modular_x 0
|
|
|
4133dc |
%global dbus_glib_splt 0
|
|
|
4133dc |
%global bonjour_support 0
|
|
|
4133dc |
%global meanwhile_integration 0
|
|
|
4133dc |
%global use_gnome_open 0
|
|
|
4133dc |
%global perl_devel_separated 0
|
|
|
4133dc |
%global perl_embed_separated 0
|
|
|
4133dc |
%global api_docs 0
|
|
|
4133dc |
%global krb4_removed 0
|
|
|
4133dc |
%global nss_md2_disabled 0
|
|
|
4133dc |
%global vv_support 0
|
|
|
4133dc |
%global libidn_support 0
|
|
|
4133dc |
%global disable_silc 0
|
|
|
4133dc |
%global disable_evolution 0
|
|
|
4133dc |
%global split_evolution 0
|
|
|
4133dc |
%global use_system_certs 0
|
|
|
4133dc |
%global use_system_libgadu 0
|
|
|
4133dc |
%global build_only_libs 0
|
|
|
4133dc |
|
|
|
4133dc |
# RHEL4: Use ALSA aplay to output sounds because it lacks gstreamer
|
|
|
4133dc |
%if 0%{?fedora} < 5
|
|
|
4133dc |
%global force_sound_aplay 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# RHEL4+ and FC5+: dbus, gstreamer, NetworkManager, modular X
|
|
|
4133dc |
%if 0%{?fedora} >= 5
|
|
|
4133dc |
%global dbus_integration 1
|
|
|
4133dc |
%global gstreamer_integration 1
|
|
|
4133dc |
%global nm_integration 1
|
|
|
4133dc |
%global modular_x 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# RHEL4+ and FC6+: dbus-glib split, bonjour, meanwhile
|
|
|
4133dc |
%if 0%{?fedora} >= 6
|
|
|
4133dc |
%global dbus_glib_splt 1
|
|
|
4133dc |
%global bonjour_support 1
|
|
|
4133dc |
%global meanwhile_integration 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# RHEL4 and RHEL5: Use gnome-open instead of xdg-open (RHEL4 and RHEL5)
|
|
|
4133dc |
%if 0%{?fedora} <= 6
|
|
|
4133dc |
%global use_gnome_open 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# F7+: Perl devel separated out
|
|
|
4133dc |
%if 0%{?fedora} >= 7
|
|
|
4133dc |
%global perl_devel_separated 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# F8+: Perl embed separated out, generate pidgin API documentation
|
|
|
4133dc |
%if 0%{?fedora} >= 8
|
|
|
4133dc |
%global perl_embed_separated 1
|
|
|
4133dc |
%global api_docs 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# F10+: New NSS (3.12.3) disables weaker MD2 algorithm
|
|
|
4133dc |
%if 0%{?fedora} >= 10
|
|
|
4133dc |
%global nss_md2_disabled 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# F11+: libidn for punycode domain support, voice and video support,
|
|
|
4133dc |
# use system SSL certificates
|
|
|
4133dc |
%if 0%{?fedora} >= 11
|
|
|
4133dc |
%global vv_support 1
|
|
|
4133dc |
%global libidn_support 1
|
|
|
4133dc |
%global use_system_certs 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# F12+: krb4 removed
|
|
|
4133dc |
%if 0%{?fedora} >= 12
|
|
|
4133dc |
%global krb4_removed 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# EL6: Disable SILC protocol
|
|
|
4133dc |
# (get rid of extra crypto lib for perpetually broken protocol that nobody uses)
|
|
|
4133dc |
# (the above comment is not necessarily the view held by all maintaners of this package)
|
|
|
4133dc |
%if 0%{?rhel} >= 6
|
|
|
4133dc |
%global disable_silc 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# F13+ Split Evolution plugin to separate package (#581144)
|
|
|
4133dc |
%if 0%{?fedora} >= 13
|
|
|
4133dc |
%global split_evolution 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# F16+ Use system libgadu (#713888)
|
|
|
4133dc |
%if 0%{?fedora} >= 16
|
|
|
4133dc |
%global use_system_libgadu 1
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# RHEL does not have libgadu
|
|
|
4133dc |
%if 0%{?rhel}
|
|
|
4133dc |
%global use_system_libgadu 0
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if 0%{?rhel} >= 7
|
|
|
4133dc |
%global build_only_libs 1
|
|
|
4133dc |
%global api_docs 0
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# F18+ Disable evolution integration (temporarily?)
|
|
|
4133dc |
# due to evolution-data-server 3.6 API changes
|
|
|
4133dc |
%if 0%{?fedora} >= 18
|
|
|
4133dc |
%global disable_evolution 1
|
|
|
4133dc |
%global split_evolution 0
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
Name: pidgin
|
|
|
4133dc |
Version: 2.10.7
|
|
|
4133dc |
Release: 23%{?dist}
|
|
|
4133dc |
License: GPLv2+ and GPLv2 and MIT
|
|
|
4133dc |
# GPLv2+ - libpurple, gnt, finch, pidgin, most prpls
|
|
|
4133dc |
# GPLv2 - silc & novell prpls
|
|
|
4133dc |
# MIT - Zephyr prpl
|
|
|
4133dc |
Group: Applications/Internet
|
|
|
4133dc |
URL: http://pidgin.im/
|
|
|
4133dc |
Source0: http://downloads.sourceforge.net/pidgin/pidgin-%{version}.tar.bz2
|
|
|
4133dc |
Obsoletes: gaim < 999:1
|
|
|
4133dc |
Provides: gaim = 999:1
|
|
|
4133dc |
|
|
|
4133dc |
%if %{split_evolution}
|
|
|
4133dc |
Obsoletes: pidgin <= 2.7.1-1%{?dist}
|
|
|
4133dc |
%else %if %{disable_evolution}
|
|
|
4133dc |
Obsoletes: pidgin-evolution <= 2.10.6%{?dist}
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
## Fedora pidgin defaults
|
|
|
4133dc |
# Only needs regenerating if Pidgin breaks backwards compatibility with prefs.xml
|
|
|
4133dc |
# 1) uninstall any non-default pidgin or libpurple plugins
|
|
|
4133dc |
# 2) run pidgin as new user 3) edit preferences 4) close 5) copy .purple/prefs.xml
|
|
|
4133dc |
# OR 1) edit manually
|
|
|
4133dc |
# - enable ExtPlacement plugin
|
|
|
4133dc |
# - enable History plugin
|
|
|
4133dc |
# - enable Message Notification plugin
|
|
|
4133dc |
# Insert count of new messages into window title
|
|
|
4133dc |
# Set window manager "URGENT" hint
|
|
|
4133dc |
# - disable buddy icon in buddy list
|
|
|
4133dc |
# - enable Logging (in HTML)
|
|
|
4133dc |
# - Browser "GNOME Default"
|
|
|
4133dc |
# - Smiley Theme "Default"
|
|
|
4133dc |
Source1: purple-fedora-prefs.xml
|
|
|
4133dc |
|
|
|
4133dc |
## Patches 0-99: Fedora specific or upstream wont accept
|
|
|
4133dc |
Patch0: pidgin-NOT-UPSTREAM-2.5.2-rhel4-sound-migration.patch
|
|
|
4133dc |
Patch1: pidgin-2.10.7-drop-gadu-gadu.patch
|
|
|
4133dc |
|
|
|
4133dc |
## Patches 100+: To be Included in Future Upstream
|
|
|
4133dc |
Patch100: pidgin-2.10.1-fix-msn-ft-crashes.patch
|
|
|
4133dc |
Patch101: pidgin-2.10.7-link-libirc-to-libsasl2.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2012-6152
|
|
|
4133dc |
Patch102: pidgin-2.10.7-CVE-2012-6152.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2013-6477
|
|
|
4133dc |
Patch103: pidgin-2.10.7-CVE-2013-6477.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2013-6478
|
|
|
4133dc |
Patch104: pidgin-2.10.7-CVE-2013-6478.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2013-6479
|
|
|
4133dc |
Patch105: pidgin-2.10.7-CVE-2013-6479.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2013-6481
|
|
|
4133dc |
Patch106: pidgin-2.10.7-CVE-2013-6481.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2013-6482
|
|
|
4133dc |
Patch107: pidgin-2.10.7-CVE-2013-6482.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2013-6483
|
|
|
4133dc |
Patch108: pidgin-2.10.7-CVE-2013-6483.patch
|
|
|
4133dc |
Patch109: pidgin-2.10.7-CVE-2013-6483-regression.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2013-6484
|
|
|
4133dc |
Patch110: pidgin-2.10.7-CVE-2013-6484.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2013-6485
|
|
|
4133dc |
Patch111: pidgin-2.10.7-CVE-2013-6485.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2013-6487
|
|
|
4133dc |
Patch112: pidgin-2.10.7-CVE-2013-6487.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2013-6489
|
|
|
4133dc |
Patch113: pidgin-2.10.7-CVE-2013-6489.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2013-6490
|
|
|
4133dc |
Patch114: pidgin-2.10.7-CVE-2013-6490.patch
|
|
|
4133dc |
|
|
|
4133dc |
# CVE-2014-0020
|
|
|
4133dc |
Patch115: pidgin-2.10.7-CVE-2014-0020.patch
|
|
|
4133dc |
|
|
|
4133dc |
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
4133dc |
Summary: A Gtk+ based multiprotocol instant messaging client
|
|
|
4133dc |
|
|
|
4133dc |
# Require Binary Compatible glib
|
|
|
4133dc |
# returns bogus value if glib2-devel is not installed in order for parsing to succeed
|
|
|
4133dc |
# bogus value wont make it into a real package
|
|
|
4133dc |
%global glib_ver %([ -a %{_libdir}/pkgconfig/glib-2.0.pc ] && pkg-config --modversion glib-2.0 | cut -d. -f 1,2 || echo -n "999")
|
|
|
4133dc |
BuildRequires: glib2-devel
|
|
|
4133dc |
Requires: glib2 >= %{glib_ver}
|
|
|
4133dc |
# Require exact libpurple
|
|
|
4133dc |
Requires: libpurple%{?_isa} = %{version}-%{release}
|
|
|
4133dc |
|
|
|
4133dc |
Requires(pre): GConf2
|
|
|
4133dc |
Requires(post): GConf2
|
|
|
4133dc |
Requires(preun): GConf2
|
|
|
4133dc |
|
|
|
4133dc |
# Basic Library Requirements
|
|
|
4133dc |
BuildRequires: autoconf
|
|
|
4133dc |
BuildRequires: libtool
|
|
|
4133dc |
BuildRequires: cyrus-sasl-devel
|
|
|
4133dc |
%if %{nss_md2_disabled}
|
|
|
4133dc |
BuildRequires: nss-devel >= 3.12.3
|
|
|
4133dc |
%else
|
|
|
4133dc |
BuildRequires: nss-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%if ! %{build_only_libs}
|
|
|
4133dc |
BuildRequires: startup-notification-devel
|
|
|
4133dc |
BuildRequires: gtk2-devel
|
|
|
4133dc |
BuildRequires: desktop-file-utils
|
|
|
4133dc |
BuildRequires: ncurses-devel
|
|
|
4133dc |
# gtkspell integration (FC1+)
|
|
|
4133dc |
BuildRequires: gtkspell-devel
|
|
|
4133dc |
# Evolution integration (FC3+, < F18)
|
|
|
4133dc |
%if ! %{disable_evolution}
|
|
|
4133dc |
BuildRequires: evolution-data-server-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
BuildRequires: gettext
|
|
|
4133dc |
BuildRequires: intltool
|
|
|
4133dc |
BuildRequires: tcl-devel
|
|
|
4133dc |
BuildRequires: tk-devel
|
|
|
4133dc |
BuildRequires: libxml2-devel
|
|
|
4133dc |
|
|
|
4133dc |
%if ! %{krb4_removed}
|
|
|
4133dc |
# krb5 needed for Zephyr (FC1+)
|
|
|
4133dc |
BuildRequires: krb5-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# SILC integration (FC3+)
|
|
|
4133dc |
%if ! %{disable_silc}
|
|
|
4133dc |
BuildRequires: libsilc-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# DBus integration (FC5+)
|
|
|
4133dc |
%if %{dbus_integration}
|
|
|
4133dc |
BuildRequires: dbus-devel >= 0.60
|
|
|
4133dc |
BuildRequires: python >= 2.4
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# GStreamer integration (FC5+)
|
|
|
4133dc |
%if %{gstreamer_integration}
|
|
|
4133dc |
BuildRequires: gstreamer-devel >= 0.10
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# NetworkManager integration (FC5+)
|
|
|
4133dc |
%if %{nm_integration}
|
|
|
4133dc |
BuildRequires: NetworkManager-glib-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# Modular X (FC5+)
|
|
|
4133dc |
%if %{modular_x}
|
|
|
4133dc |
BuildRequires: libSM-devel
|
|
|
4133dc |
BuildRequires: libXScrnSaver-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# Preferred Applications (xdg for FC6+)
|
|
|
4133dc |
%if %{use_gnome_open}
|
|
|
4133dc |
Requires: libgnome
|
|
|
4133dc |
%else
|
|
|
4133dc |
Requires: xdg-utils
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# DBus GLIB Split (FC6+)
|
|
|
4133dc |
%if %{dbus_glib_splt}
|
|
|
4133dc |
BuildRequires: dbus-glib-devel >= 0.70
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if %{bonjour_support}
|
|
|
4133dc |
BuildRequires: avahi-glib-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# Meanwhile integration (F6+)
|
|
|
4133dc |
%if %{meanwhile_integration}
|
|
|
4133dc |
BuildRequires: meanwhile-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# Perl devel separated out (F7+)
|
|
|
4133dc |
%if %{perl_devel_separated}
|
|
|
4133dc |
BuildRequires: perl-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# Perl embed separated out (F9+)
|
|
|
4133dc |
%if %{perl_embed_separated}
|
|
|
4133dc |
BuildRequires: perl(ExtUtils::Embed)
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# Voice and video support (F11+)
|
|
|
4133dc |
%if %{vv_support}
|
|
|
4133dc |
%if 0%{?fedora} >= 17
|
|
|
4133dc |
BuildRequires: farstream-devel
|
|
|
4133dc |
%else
|
|
|
4133dc |
BuildRequires: farsight2-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
Requires: gstreamer-plugins-good
|
|
|
4133dc |
%if 0%{?fedora} >= 12
|
|
|
4133dc |
Requires: gstreamer-plugins-bad-free
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# libidn punycode domain support (F11+)
|
|
|
4133dc |
%if %{libidn_support}
|
|
|
4133dc |
BuildRequires: libidn-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if %{use_system_libgadu}
|
|
|
4133dc |
BuildRequires: libgadu-devel
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%if %{api_docs}
|
|
|
4133dc |
BuildRequires: doxygen
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%description
|
|
|
4133dc |
Pidgin allows you to talk to anyone using a variety of messaging
|
|
|
4133dc |
protocols including AIM, MSN, Yahoo!, Jabber, Bonjour, Gadu-Gadu,
|
|
|
4133dc |
ICQ, IRC, Novell Groupwise, QQ, Lotus Sametime, SILC, Simple and
|
|
|
4133dc |
Zephyr. These protocols are implemented using a modular, easy to
|
|
|
4133dc |
use design. To use a protocol, just add an account using the
|
|
|
4133dc |
account editor.
|
|
|
4133dc |
|
|
|
4133dc |
Pidgin supports many common features of other clients, as well as many
|
|
|
4133dc |
unique features, such as perl scripting, TCL scripting and C plugins.
|
|
|
4133dc |
|
|
|
4133dc |
Pidgin is not affiliated with or endorsed by America Online, Inc.,
|
|
|
4133dc |
Microsoft Corporation, Yahoo! Inc., or ICQ Inc.
|
|
|
4133dc |
|
|
|
4133dc |
%if %{split_evolution}
|
|
|
4133dc |
%package evolution
|
|
|
4133dc |
Summary: Pidgin Evolution integration plugin
|
|
|
4133dc |
Group: Applications/Internet
|
|
|
4133dc |
Requires: %{name} = %{version}-%{release}
|
|
|
4133dc |
Obsoletes: pidgin <= 2.7.1-1%{?dist}
|
|
|
4133dc |
|
|
|
4133dc |
%description evolution
|
|
|
4133dc |
This package contains the Evolution integration plugin for Pidgin.
|
|
|
4133dc |
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
|
|
|
4133dc |
%package devel
|
|
|
4133dc |
Summary: Development headers and libraries for pidgin
|
|
|
4133dc |
Group: Development/Libraries
|
|
|
4133dc |
Requires: %{name} = %{version}-%{release}
|
|
|
4133dc |
Requires: libpurple-devel = %{version}-%{release}
|
|
|
4133dc |
Requires: pkgconfig
|
|
|
4133dc |
Requires: gtk2-devel
|
|
|
4133dc |
Obsoletes: gaim-devel
|
|
|
4133dc |
Provides: gaim-devel = %{version}-%{release}
|
|
|
4133dc |
|
|
|
4133dc |
|
|
|
4133dc |
%description devel
|
|
|
4133dc |
The pidgin-devel package contains the header files, developer
|
|
|
4133dc |
documentation, and libraries required for development of Pidgin scripts
|
|
|
4133dc |
and plugins.
|
|
|
4133dc |
|
|
|
4133dc |
%package perl
|
|
|
4133dc |
Summary: Perl scripting support for Pidgin
|
|
|
4133dc |
Group: Applications/Internet
|
|
|
4133dc |
Requires: libpurple = %{version}-%{release}
|
|
|
4133dc |
Requires: libpurple-perl = %{version}-%{release}
|
|
|
4133dc |
|
|
|
4133dc |
%description perl
|
|
|
4133dc |
Perl plugin loader for Pidgin. This package will allow you to write or
|
|
|
4133dc |
use Pidgin plugins written in the Perl programming language.
|
|
|
4133dc |
|
|
|
4133dc |
|
|
|
4133dc |
%package -n libpurple
|
|
|
4133dc |
Summary: libpurple library for IM clients like Pidgin and Finch
|
|
|
4133dc |
Group: Applications/Internet
|
|
|
4133dc |
# Ensure elimination of gaim.i386 on x86_64
|
|
|
4133dc |
Obsoletes: gaim < 999:1
|
|
|
4133dc |
%if %{meanwhile_integration}
|
|
|
4133dc |
Obsoletes: gaim-meanwhile
|
|
|
4133dc |
%endif
|
|
|
4133dc |
Requires: glib2 >= %{glib_ver}
|
|
|
4133dc |
# Bug #212817 Jabber needs cyrus-sasl plugins for authentication
|
|
|
4133dc |
Requires: cyrus-sasl-plain, cyrus-sasl-md5
|
|
|
4133dc |
# Bug #979052 - Can't connect to xmpp server since upgrade from f18 to f19
|
|
|
4133dc |
%if 0%{?fedora} >= 19
|
|
|
4133dc |
Requires: cyrus-sasl-scram
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# Use system SSL certificates (F11+)
|
|
|
4133dc |
%if %{use_system_certs}
|
|
|
4133dc |
Requires: ca-certificates
|
|
|
4133dc |
%endif
|
|
|
4133dc |
# Workaround for accidental shipping of pidgin-docs
|
|
|
4133dc |
%if 0%{?rhel} == 5
|
|
|
4133dc |
Obsoletes: pidgin-docs = 2.5.2
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%description -n libpurple
|
|
|
4133dc |
libpurple contains the core IM support for IM clients such as Pidgin
|
|
|
4133dc |
and Finch.
|
|
|
4133dc |
|
|
|
4133dc |
libpurple supports a variety of messaging protocols including AIM, MSN,
|
|
|
4133dc |
Yahoo!, Jabber, Bonjour, Gadu-Gadu, ICQ, IRC, Novell Groupwise, QQ,
|
|
|
4133dc |
Lotus Sametime, SILC, Simple and Zephyr.
|
|
|
4133dc |
|
|
|
4133dc |
|
|
|
4133dc |
%package -n libpurple-devel
|
|
|
4133dc |
Summary: Development headers, documentation, and libraries for libpurple
|
|
|
4133dc |
Group: Applications/Internet
|
|
|
4133dc |
Requires: libpurple = %{version}-%{release}
|
|
|
4133dc |
Requires: pkgconfig
|
|
|
4133dc |
%if %{dbus_integration}
|
|
|
4133dc |
Requires: dbus-devel >= 0.60
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if %{dbus_glib_splt}
|
|
|
4133dc |
Requires: dbus-glib-devel >= 0.70
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%description -n libpurple-devel
|
|
|
4133dc |
The libpurple-devel package contains the header files, developer
|
|
|
4133dc |
documentation, and libraries required for development of libpurple based
|
|
|
4133dc |
instant messaging clients or plugins for any libpurple based client.
|
|
|
4133dc |
|
|
|
4133dc |
%package -n libpurple-perl
|
|
|
4133dc |
Summary: Perl scripting support for libpurple
|
|
|
4133dc |
Group: Applications/Internet
|
|
|
4133dc |
Requires: libpurple = %{version}-%{release}
|
|
|
4133dc |
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
4133dc |
|
|
|
4133dc |
%description -n libpurple-perl
|
|
|
4133dc |
Perl plugin loader for libpurple. This package will allow you to write or
|
|
|
4133dc |
use libpurple plugins written in the Perl programming language.
|
|
|
4133dc |
|
|
|
4133dc |
|
|
|
4133dc |
%package -n libpurple-tcl
|
|
|
4133dc |
Summary: Tcl scripting support for libpurple
|
|
|
4133dc |
Group: Applications/Internet
|
|
|
4133dc |
Requires: libpurple = %{version}-%{release}
|
|
|
4133dc |
|
|
|
4133dc |
%description -n libpurple-tcl
|
|
|
4133dc |
Tcl plugin loader for libpurple. This package will allow you to write or
|
|
|
4133dc |
use libpurple plugins written in the Tcl programming language.
|
|
|
4133dc |
|
|
|
4133dc |
|
|
|
4133dc |
%package -n finch
|
|
|
4133dc |
Summary: A text-based user interface for Pidgin
|
|
|
4133dc |
Group: Applications/Internet
|
|
|
4133dc |
Requires: glib2 >= %{glib_ver}
|
|
|
4133dc |
Requires: libpurple = %{version}-%{release}
|
|
|
4133dc |
|
|
|
4133dc |
%description -n finch
|
|
|
4133dc |
A text-based user interface for using libpurple. This can be run from a
|
|
|
4133dc |
standard text console or from a terminal within X Windows. It
|
|
|
4133dc |
uses ncurses and our homegrown gnt library for drawing windows
|
|
|
4133dc |
and text.
|
|
|
4133dc |
|
|
|
4133dc |
|
|
|
4133dc |
%package -n finch-devel
|
|
|
4133dc |
Summary: Headers etc. for finch stuffs
|
|
|
4133dc |
Group: Applications/Internet
|
|
|
4133dc |
Requires: finch = %{version}-%{release}
|
|
|
4133dc |
Requires: libpurple-devel = %{version}-%{release}
|
|
|
4133dc |
Requires: pkgconfig
|
|
|
4133dc |
Requires: ncurses-devel
|
|
|
4133dc |
|
|
|
4133dc |
%description -n finch-devel
|
|
|
4133dc |
The finch-devel package contains the header files, developer
|
|
|
4133dc |
documentation, and libraries required for development of Finch scripts
|
|
|
4133dc |
and plugins.
|
|
|
4133dc |
|
|
|
4133dc |
%if %{api_docs}
|
|
|
4133dc |
%package -n pidgin-docs
|
|
|
4133dc |
Summary: API docs for pidgin and libpurple
|
|
|
4133dc |
Group: Applications/Internet
|
|
|
4133dc |
Requires: pidgin = %{version}-%{release}
|
|
|
4133dc |
Provides: libpurple-docs = %{version}-%{release}
|
|
|
4133dc |
|
|
|
4133dc |
%description -n pidgin-docs
|
|
|
4133dc |
Doxygen generated API documentation.
|
|
|
4133dc |
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%prep
|
|
|
4133dc |
echo "FEDORA=%{fedora} RHEL=%{rhel}"
|
|
|
4133dc |
%setup -q
|
|
|
4133dc |
## Patches 0-99: Fedora specific or upstream wont accept
|
|
|
4133dc |
%if %{force_sound_aplay}
|
|
|
4133dc |
%patch0 -p1 -b .aplay
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%patch1 -p1 -b .gadu-gadu
|
|
|
4133dc |
|
|
|
4133dc |
## Patches 100+: To be Included in Future Upstream
|
|
|
4133dc |
|
|
|
4133dc |
# http://pidgin.im/pipermail/devel/2011-November/010477.html
|
|
|
4133dc |
%patch100 -p0 -R -b .ftcrash
|
|
|
4133dc |
# https://developer.pidgin.im/ticket/15517
|
|
|
4133dc |
%patch101 -p1 -b .irc-sasl
|
|
|
4133dc |
|
|
|
4133dc |
%patch102 -p1 -b .CVE-2012-6152
|
|
|
4133dc |
%patch103 -p1 -b .CVE-2013-6477
|
|
|
4133dc |
%patch104 -p1 -b .CVE-2013-6478
|
|
|
4133dc |
%patch105 -p1 -b .CVE-2013-6479
|
|
|
4133dc |
%patch106 -p1 -b .CVE-2013-6481
|
|
|
4133dc |
%patch107 -p1 -b .CVE-2013-6482
|
|
|
4133dc |
%patch108 -p1 -b .CVE-2013-6483
|
|
|
4133dc |
%patch109 -p1 -b .CVE-2013-6483-regression
|
|
|
4133dc |
%patch110 -p1 -b .CVE-2013-6484
|
|
|
4133dc |
%patch111 -p1 -b .CVE-2013-6485
|
|
|
4133dc |
%patch112 -p1 -b .CVE-2013-6487
|
|
|
4133dc |
%patch113 -p1 -b .CVE-2013-6489
|
|
|
4133dc |
%patch114 -p1 -b .CVE-2013-6490
|
|
|
4133dc |
%patch115 -p1 -b .CVE-2014-0020
|
|
|
4133dc |
|
|
|
4133dc |
# Our preferences
|
|
|
4133dc |
cp %{SOURCE1} prefs.xml
|
|
|
4133dc |
|
|
|
4133dc |
# RHEL5 and earlier did not have xdg-open, so use gnome-open instead
|
|
|
4133dc |
if [ "%{use_gnome_open}" == "1" ]; then
|
|
|
4133dc |
sed -i "s/value='xdg-open'/value='gnome-open'/" prefs.xml
|
|
|
4133dc |
fi
|
|
|
4133dc |
|
|
|
4133dc |
# Bug #528796: Get rid of #!/usr/bin/env python
|
|
|
4133dc |
# Upstream refuses to use ./configure --python-path= in these scripts.
|
|
|
4133dc |
for file in finch/plugins/pietray.py libpurple/purple-remote libpurple/plugins/dbus-buddyicons-example.py \
|
|
|
4133dc |
libpurple/plugins/startup.py libpurple/purple-url-handler libpurple/purple-notifications-example; do
|
|
|
4133dc |
sed -i 's/env python/python/' $file
|
|
|
4133dc |
done
|
|
|
4133dc |
|
|
|
4133dc |
%build
|
|
|
4133dc |
SWITCHES="--with-extraversion=%{release}"
|
|
|
4133dc |
%if ! %{krb4_removed}
|
|
|
4133dc |
SWITCHES="$SWITCHES --with-krb4"
|
|
|
4133dc |
%endif
|
|
|
4133dc |
SWITCHES="$SWITCHES --enable-perl"
|
|
|
4133dc |
%if ! %{disable_evolution}
|
|
|
4133dc |
SWITCHES="$SWITCHES --enable-gevolution"
|
|
|
4133dc |
%else
|
|
|
4133dc |
SWITCHES="$SWITCHES --disable-gevolution"
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if %{dbus_integration}
|
|
|
4133dc |
SWITCHES="$SWITCHES --enable-dbus"
|
|
|
4133dc |
%else
|
|
|
4133dc |
SWITCHES="$SWITCHES --disable-dbus"
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if %{nm_integration}
|
|
|
4133dc |
SWITCHES="$SWITCHES --enable-nm"
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if %{gstreamer_integration}
|
|
|
4133dc |
SWITCHES="$SWITCHES --enable-gstreamer"
|
|
|
4133dc |
%else
|
|
|
4133dc |
SWITCHES="$SWITCHES --disable-gstreamer"
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if ! %{bonjour_support}
|
|
|
4133dc |
SWITCHES="$SWITCHES --disable-avahi"
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if ! %{meanwhile_integration}
|
|
|
4133dc |
SWITCHES="$SWITCHES --disable-meanwhile"
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if ! %{libidn_support}
|
|
|
4133dc |
SWITCHES="$SWITCHES --disable-idn"
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if ! %{vv_support}
|
|
|
4133dc |
SWITCHES="$SWITCHES --disable-vv"
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if %{use_system_certs}
|
|
|
4133dc |
SWITCHES="$SWITCHES --with-system-ssl-certs=/etc/pki/tls/certs"
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%if %{build_only_libs}
|
|
|
4133dc |
SWITCHES="$SWITCHES --disable-consoleui --disable-gtkui"
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
# FC5+ automatic -fstack-protector-all switch
|
|
|
4133dc |
# RHEL7+ uses -fstack-protector-strong
|
|
|
4133dc |
export RPM_OPT_FLAGS=${RPM_OPT_FLAGS//-fstack-protector /-fstack-protector-all }
|
|
|
4133dc |
export CFLAGS="$RPM_OPT_FLAGS"
|
|
|
4133dc |
|
|
|
4133dc |
# remove after irc-sasl patch has been merged upstream
|
|
|
4133dc |
autoreconf --force --install
|
|
|
4133dc |
|
|
|
4133dc |
# gnutls is buggy so use mozilla-nss on all distributions
|
|
|
4133dc |
%configure --enable-gnutls=no --enable-nss=yes --enable-cyrus-sasl \
|
|
|
4133dc |
--enable-tcl --enable-tk \
|
|
|
4133dc |
--disable-schemas-install $SWITCHES
|
|
|
4133dc |
|
|
|
4133dc |
make %{?_smp_mflags} LIBTOOL=/usr/bin/libtool
|
|
|
4133dc |
|
|
|
4133dc |
# one_time_password plugin, included upstream but not built by default
|
|
|
4133dc |
cd libpurple/plugins/
|
|
|
4133dc |
make one_time_password.so LIBTOOL=/usr/bin/libtool
|
|
|
4133dc |
cd -
|
|
|
4133dc |
|
|
|
4133dc |
%if %{api_docs}
|
|
|
4133dc |
make docs
|
|
|
4133dc |
find doc/html -empty -delete
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%install
|
|
|
4133dc |
rm -rf $RPM_BUILD_ROOT
|
|
|
4133dc |
make DESTDIR=$RPM_BUILD_ROOT install LIBTOOL=/usr/bin/libtool
|
|
|
4133dc |
|
|
|
4133dc |
install -m 0755 libpurple/plugins/one_time_password.so $RPM_BUILD_ROOT%{_libdir}/purple-2/
|
|
|
4133dc |
|
|
|
4133dc |
%if ! %{build_only_libs}
|
|
|
4133dc |
desktop-file-install --vendor pidgin --delete-original \
|
|
|
4133dc |
--add-category X-Red-Hat-Base \
|
|
|
4133dc |
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
|
|
|
4133dc |
$RPM_BUILD_ROOT%{_datadir}/applications/pidgin.desktop
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
# remove libtool libraries and static libraries
|
|
|
4133dc |
find $RPM_BUILD_ROOT \( -name "*.la" -o -name "*.a" \) -exec rm -f {} ';'
|
|
|
4133dc |
# remove the perllocal.pod file and other unrequired perl bits
|
|
|
4133dc |
find $RPM_BUILD_ROOT -type f -name perllocal.pod -exec rm -f {} ';'
|
|
|
4133dc |
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
|
|
|
4133dc |
find $RPM_BUILD_ROOT -type f -name '*.bs' -empty -exec rm -f {} ';'
|
|
|
4133dc |
# remove relnot.so plugin since it is unusable for our package
|
|
|
4133dc |
rm -f $RPM_BUILD_ROOT%{_libdir}/pidgin/relnot.so
|
|
|
4133dc |
# remove dummy nullclient
|
|
|
4133dc |
rm -f $RPM_BUILD_ROOT%{_bindir}/nullclient
|
|
|
4133dc |
# install Fedora pidgin default prefs.xml
|
|
|
4133dc |
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/purple/
|
|
|
4133dc |
install -m 644 prefs.xml $RPM_BUILD_ROOT%{_sysconfdir}/purple/prefs.xml
|
|
|
4133dc |
|
|
|
4133dc |
# remove non-plugin unrequired library symlinks
|
|
|
4133dc |
rm -f $RPM_BUILD_ROOT%{_libdir}/purple-2/liboscar.so
|
|
|
4133dc |
rm -f $RPM_BUILD_ROOT%{_libdir}/purple-2/libjabber.so
|
|
|
4133dc |
rm -f $RPM_BUILD_ROOT%{_libdir}/purple-2/libymsg.so
|
|
|
4133dc |
|
|
|
4133dc |
# make sure that we can write to all the files we've installed
|
|
|
4133dc |
# so that they are properly stripped
|
|
|
4133dc |
chmod -R u+w $RPM_BUILD_ROOT/*
|
|
|
4133dc |
|
|
|
4133dc |
%find_lang pidgin
|
|
|
4133dc |
|
|
|
4133dc |
%if ! %{build_only_libs}
|
|
|
4133dc |
# symlink /usr/bin/gaim to new pidgin name
|
|
|
4133dc |
ln -sf pidgin $RPM_BUILD_ROOT%{_bindir}/gaim
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%if %{api_docs}
|
|
|
4133dc |
rm -rf html
|
|
|
4133dc |
rm -f doc/html/installdox
|
|
|
4133dc |
mv doc/html/ html/
|
|
|
4133dc |
mkdir -p $RPM_BUILD_ROOT%{_datadir}/gtk-doc/html/
|
|
|
4133dc |
ln -sf ../../doc/pidgin-docs-%{version}/html/ \
|
|
|
4133dc |
$RPM_BUILD_ROOT%{_datadir}/gtk-doc/html/pidgin
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%if %{build_only_libs}
|
|
|
4133dc |
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/gconf/schemas/purple.schemas
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%if ! %{build_only_libs}
|
|
|
4133dc |
%pre
|
|
|
4133dc |
if [ "$1" -gt 1 ]; then
|
|
|
4133dc |
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
|
|
4133dc |
gconftool-2 --makefile-uninstall-rule \
|
|
|
4133dc |
%{_sysconfdir}/gconf/schemas/purple.schemas >/dev/null || :
|
|
|
4133dc |
killall -HUP gconfd-2 &> /dev/null || :
|
|
|
4133dc |
fi
|
|
|
4133dc |
|
|
|
4133dc |
%post
|
|
|
4133dc |
touch --no-create %{_datadir}/icons/hicolor || :
|
|
|
4133dc |
[ -x %{_bindir}/gtk-update-icon-cache ] && \
|
|
|
4133dc |
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
|
|
4133dc |
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
|
|
4133dc |
gconftool-2 --makefile-install-rule \
|
|
|
4133dc |
%{_sysconfdir}/gconf/schemas/purple.schemas > /dev/null || :
|
|
|
4133dc |
killall -HUP gconfd-2 &> /dev/null || :
|
|
|
4133dc |
|
|
|
4133dc |
%post -n finch -p /sbin/ldconfig
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%post -n libpurple -p /sbin/ldconfig
|
|
|
4133dc |
|
|
|
4133dc |
%if ! %{build_only_libs}
|
|
|
4133dc |
%preun
|
|
|
4133dc |
if [ "$1" -eq 0 ]; then
|
|
|
4133dc |
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
|
|
4133dc |
gconftool-2 --makefile-uninstall-rule \
|
|
|
4133dc |
%{_sysconfdir}/gconf/schemas/purple.schemas > /dev/null || :
|
|
|
4133dc |
killall -HUP gconfd-2 &> /dev/null || :
|
|
|
4133dc |
fi
|
|
|
4133dc |
|
|
|
4133dc |
%postun
|
|
|
4133dc |
touch --no-create %{_datadir}/icons/hicolor || :
|
|
|
4133dc |
[ -x %{_bindir}/gtk-update-icon-cache ] && \
|
|
|
4133dc |
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
|
|
4133dc |
|
|
|
4133dc |
%postun -n finch -p /sbin/ldconfig
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%postun -n libpurple -p /sbin/ldconfig
|
|
|
4133dc |
|
|
|
4133dc |
%clean
|
|
|
4133dc |
rm -rf $RPM_BUILD_ROOT
|
|
|
4133dc |
|
|
|
4133dc |
%if ! %{build_only_libs}
|
|
|
4133dc |
%files
|
|
|
4133dc |
%defattr(-,root,root,-)
|
|
|
4133dc |
%doc NEWS COPYING AUTHORS README ChangeLog doc/PERL-HOWTO.dox
|
|
|
4133dc |
%{_bindir}/pidgin
|
|
|
4133dc |
%{_bindir}/gaim
|
|
|
4133dc |
%{_libdir}/pidgin/
|
|
|
4133dc |
%exclude %{_libdir}/pidgin/perl
|
|
|
4133dc |
%if %{split_evolution}
|
|
|
4133dc |
%exclude %{_libdir}/pidgin/gevolution.so
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%{_mandir}/man1/pidgin.*
|
|
|
4133dc |
%{_datadir}/applications/pidgin.desktop
|
|
|
4133dc |
%{_datadir}/pixmaps/pidgin/
|
|
|
4133dc |
%{_datadir}/icons/hicolor/*/apps/pidgin.*
|
|
|
4133dc |
%{_sysconfdir}/gconf/schemas/purple.schemas
|
|
|
4133dc |
|
|
|
4133dc |
%if %{split_evolution}
|
|
|
4133dc |
%files evolution
|
|
|
4133dc |
%defattr(-,root,root,-)
|
|
|
4133dc |
%{_libdir}/pidgin/gevolution.so
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%files perl
|
|
|
4133dc |
%defattr(-,root,root,-)
|
|
|
4133dc |
%{_mandir}/man3/Pidgin*
|
|
|
4133dc |
%{_libdir}/pidgin/perl/
|
|
|
4133dc |
|
|
|
4133dc |
%files devel
|
|
|
4133dc |
%defattr(-,root,root,-)
|
|
|
4133dc |
%{_includedir}/pidgin/
|
|
|
4133dc |
%{_libdir}/pkgconfig/pidgin.pc
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%files -f pidgin.lang -n libpurple
|
|
|
4133dc |
%defattr(-,root,root,-)
|
|
|
4133dc |
%doc COPYING
|
|
|
4133dc |
%{_libdir}/purple-2/
|
|
|
4133dc |
%exclude %{_libdir}/purple-2/perl
|
|
|
4133dc |
%{_libdir}/libpurple.so.*
|
|
|
4133dc |
%{_datadir}/sounds/purple/
|
|
|
4133dc |
%{_datadir}/purple
|
|
|
4133dc |
%dir %{_sysconfdir}/purple
|
|
|
4133dc |
%config(noreplace) %{_sysconfdir}/purple/prefs.xml
|
|
|
4133dc |
%if %{dbus_integration}
|
|
|
4133dc |
%{_bindir}/purple-client-example
|
|
|
4133dc |
%{_bindir}/purple-remote
|
|
|
4133dc |
%{_bindir}/purple-send
|
|
|
4133dc |
%{_bindir}/purple-send-async
|
|
|
4133dc |
%{_bindir}/purple-url-handler
|
|
|
4133dc |
%{_libdir}/libpurple-client.so.*
|
|
|
4133dc |
#%%{_datadir}/dbus-1/services/pidgin.service
|
|
|
4133dc |
%doc libpurple/purple-notifications-example
|
|
|
4133dc |
%endif
|
|
|
4133dc |
%exclude %{_libdir}/purple-2/tcl.so
|
|
|
4133dc |
%exclude %{_libdir}/purple-2/perl.so
|
|
|
4133dc |
%exclude %{_libdir}/purple-2/perl/
|
|
|
4133dc |
|
|
|
4133dc |
%files -n libpurple-devel
|
|
|
4133dc |
%defattr(-,root,root,-)
|
|
|
4133dc |
%{_datadir}/aclocal/purple.m4
|
|
|
4133dc |
%{_libdir}/libpurple.so
|
|
|
4133dc |
%{_includedir}/libpurple/
|
|
|
4133dc |
%{_libdir}/pkgconfig/purple.pc
|
|
|
4133dc |
%if %{dbus_integration}
|
|
|
4133dc |
%{_libdir}/libpurple-client.so
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%files -n libpurple-perl
|
|
|
4133dc |
%defattr(-,root,root,-)
|
|
|
4133dc |
%{_mandir}/man3/Purple*
|
|
|
4133dc |
%{_libdir}/purple-2/perl.so
|
|
|
4133dc |
%{_libdir}/purple-2/perl/
|
|
|
4133dc |
|
|
|
4133dc |
%files -n libpurple-tcl
|
|
|
4133dc |
%defattr(-,root,root,-)
|
|
|
4133dc |
%{_libdir}/purple-2/tcl.so
|
|
|
4133dc |
|
|
|
4133dc |
%if ! %{build_only_libs}
|
|
|
4133dc |
%files -n finch
|
|
|
4133dc |
%defattr(-,root,root,-)
|
|
|
4133dc |
%{_bindir}/finch
|
|
|
4133dc |
%{_libdir}/finch/
|
|
|
4133dc |
%{_libdir}/gnt/
|
|
|
4133dc |
%{_libdir}/libgnt.so.*
|
|
|
4133dc |
%{_mandir}/man1/finch.*
|
|
|
4133dc |
|
|
|
4133dc |
%files -n finch-devel
|
|
|
4133dc |
%defattr(-,root,root,-)
|
|
|
4133dc |
%{_includedir}/finch/
|
|
|
4133dc |
%{_includedir}/gnt/
|
|
|
4133dc |
%{_libdir}/libgnt.so
|
|
|
4133dc |
%{_libdir}/pkgconfig/gnt.pc
|
|
|
4133dc |
%{_libdir}/pkgconfig/finch.pc
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%if %{api_docs}
|
|
|
4133dc |
%files -n pidgin-docs
|
|
|
4133dc |
%defattr(-,root,root,-)
|
|
|
4133dc |
%doc html
|
|
|
4133dc |
%{_datadir}/gtk-doc/html/*
|
|
|
4133dc |
%endif
|
|
|
4133dc |
|
|
|
4133dc |
%changelog
|
|
|
4133dc |
* Tue Aug 19 2014 Ray Strode <rstrode@redhat.com> 2.10.7-23
|
|
|
4133dc |
- Stop mucking with dist
|
|
|
4133dc |
- Drop support for really old rhel
|
|
|
4133dc |
Resolves: #1028568
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Feb 03 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-22.el7
|
|
|
4133dc |
- Fix regression in CVE-2013-6483.
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 29 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-21.el7
|
|
|
4133dc |
- Add patch for CVE-2014-0020 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 29 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-20.el7
|
|
|
4133dc |
- Add patch for CVE-2013-6490 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 29 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-19.el7
|
|
|
4133dc |
- Add patch for CVE-2013-6489 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 29 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-18.el7
|
|
|
4133dc |
- Add patch for CVE-2013-6487 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 29 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-17.el7
|
|
|
4133dc |
- Add patch for CVE-2013-6477 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 29 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-16.el7
|
|
|
4133dc |
- Add patch for CVE-2013-6485 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 29 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-15.el7
|
|
|
4133dc |
- Add patch for CVE-2013-6484 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 29 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-14.el7
|
|
|
4133dc |
- Add patch for CVE-2013-6483 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 29 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-13.el7
|
|
|
4133dc |
- Add patch for CVE-2013-6482 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jan 28 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-12.el7
|
|
|
4133dc |
- Add patch for CVE-2013-6481 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jan 28 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-11.el7
|
|
|
4133dc |
- Add patch for CVE-2013-6479 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jan 28 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-10.el7
|
|
|
4133dc |
- Turns out the previous patch is actually for CVE-2013-6478.
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jan 27 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-9.el7
|
|
|
4133dc |
- Add patch for CVE-2013-6477 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jan 27 2014 Matthew Barnes <mbarnes@redhat.com> - 2.10.7-8.el7
|
|
|
4133dc |
- Add patch for CVE-2012-6152 (RH bug #1058243).
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.10.7-7.el7
|
|
|
4133dc |
- Mass rebuild 2014-01-24
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jan 13 2014 Debarshi Ray <rishi@fedoraproject.org> - 2.10.7-6
|
|
|
4133dc |
- Fix setting -fstack-protector on RHEL7+, use -fstack-protector-strong there
|
|
|
4133dc |
- Resolves: #1048893
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.10.7-5.el7
|
|
|
4133dc |
- Mass rebuild 2013-12-27
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Nov 07 2013 Debarshi Ray <rishi@fedoraproject.org> - 2.10.7-4
|
|
|
4133dc |
- Drop Gadu-Gadu support in RHEL (Red Hat #1026505)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jul 01 2013 Jan Synáček <jsynacek@redhat.com> - 2.10.7-3
|
|
|
4133dc |
- Require cyrus-sasl-scram, BZ 979052
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Apr 30 2013 Daniel Mach <dmach@redhat.com> - 2.10.7-2.2
|
|
|
4133dc |
- Rebuild for cyrus-sasl
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Feb 25 2013 Jan Synáček <jsynacek@redhat.com> - 2.10.7-2
|
|
|
4133dc |
- Fix IRC support, BZ 914794
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Feb 20 2013 Jan Synáček <jsynacek@redhat.com> - 2.10.7-1
|
|
|
4133dc |
- Update to 2.10.7, BZ 911088
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.6-5
|
|
|
4133dc |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Sep 26 2012 Jan Synáček <jsynacek@redhat.com> - 2.10.6-4
|
|
|
4133dc |
- Correctly obsolete pidgin-evolution if evolution integration is disabled,
|
|
|
4133dc |
BZ 860285
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.6-3
|
|
|
4133dc |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jul 11 2012 Petr Pisar <ppisar@redhat.com> - 2.10.6-2
|
|
|
4133dc |
- Perl 5.16 rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jul 11 2012 Jan Synáček <jsynacek@redhat.com> - 2.10.6-1
|
|
|
4133dc |
- Update to 2.10.6, BZ 838311
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jul 10 2012 Petr Pisar <ppisar@redhat.com> - 2.10.5-3
|
|
|
4133dc |
- Perl 5.16 rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Jul 06 2012 Stu Tomlinson <stu@nosnilmot.com> 2.10.5-2
|
|
|
4133dc |
- Disable evolution integration on F18+ due to API changes in
|
|
|
4133dc |
evolution-data-server 3.6
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jul 05 2012 Stu Tomlinson <stu@nosnilmot.com> 2.10.5-1
|
|
|
4133dc |
- Update to 2.10.5, CVE-2012-3374
|
|
|
4133dc |
- Allow building only libraries (#831364)
|
|
|
4133dc |
- Revive FT crash prevention patch
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 2.10.4-2
|
|
|
4133dc |
- Perl 5.16 rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Wed May 30 2012 Jon Ciesla <limburgher@gmail.com> - 2.10.4-1
|
|
|
4133dc |
- Update to 2.10.4, CVE-2012-2214, CVE-2012-2318, BZ 806839, 819454.
|
|
|
4133dc |
- Port to farstream patch upstreamed.
|
|
|
4133dc |
|
|
|
4133dc |
* Wed May 02 2012 Milan Crha <mcrha@redhat.com> - 2.10.2-2
|
|
|
4133dc |
- Rebuild against newer evolution-data-server
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Mar 23 2012 Jon Ciesla <limburgher@gmail.com> - 2.10.2-1
|
|
|
4133dc |
- Update to 2.10.2, BZ 803293, 803299.
|
|
|
4133dc |
- Dropping MSN patches. Protocol patch not needed, won't connect
|
|
|
4133dc |
- to 16 by default. Crash patch was upstreamed.
|
|
|
4133dc |
- Dropped nm09 patch, upstreamed.
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Mar 9 2012 Tom Callaway <spot@fedoraproject.org> - 2.10.1-4
|
|
|
4133dc |
- fedora 17+ uses farstream now instead of farsight2
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 18 2012 Matthew Barnes <mbarnes@redhat.com> - 2.10.1-3
|
|
|
4133dc |
- Map RHEL 7 to Fedora 16 (for now).
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 18 2012 Matthew Barnes <mbarnes@redhat.com> - 2.10.1-2
|
|
|
4133dc |
- Map RHEL 7 to Fedora 16 (for now).
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Dec 29 2011 Stu Tomlinson <stu@nosnilmot.com> 2.10.1-1
|
|
|
4133dc |
- 2.10.1, includes security fixes for CVE-2011-3594, CVE-2011-4601,
|
|
|
4133dc |
CVE-2011-4602, CVE-2011-4603
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Nov 28 2011 Milan Crha <mcrha@redhat.com> 2.10.0-5
|
|
|
4133dc |
- Rebuild against newer evolution-data-server
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Oct 30 2011 Bruno Wolff III <bruno@wolff.to> 2.10.0-4
|
|
|
4133dc |
- Rebuild against newer evolution-data-server
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Aug 30 2011 Milan Crha <mcrha@redhat.com> 2.10.0-3
|
|
|
4133dc |
- Sync version with f16 branch
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Aug 29 2011 Milan Crha <mcrha@redhat.com> 2.10.0-2
|
|
|
4133dc |
- Rebuild against newer evolution-data-server
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Aug 21 2011 Stu Tomlinson <stu@nosnilmot.com> 2.10.0-1
|
|
|
4133dc |
- 2.10.0
|
|
|
4133dc |
- Link against system libgadu instead of using internal copy (#713888)
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Aug 16 2011 Milan Crha <mcrha@redhat.com> 2.9.0-3
|
|
|
4133dc |
- Rebuild against newer evolution-data-server
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jul 21 2011 Petr Sabata <contyk@redhat.com> - 2.9.0-2
|
|
|
4133dc |
- Perl mass rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jun 30 2011 Stu Tomlinson <stu@nosnilmot.com> 2.8.0-3
|
|
|
4133dc |
- 2.9.0, includes security/DoS fix to work around gdk-pixbuf issue
|
|
|
4133dc |
CVE-2011-2485
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jun 20 2011 Milan Crha <mcrha@redhat.com> 2.8.0-3
|
|
|
4133dc |
- Rebuild against new evolution-data-server
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.8.0-2
|
|
|
4133dc |
- Perl mass rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jun 13 2011 Stu Tomlinson <stu@nosnilmot.com> 2.8.0-1
|
|
|
4133dc |
- 2.8.0
|
|
|
4133dc |
|
|
|
4133dc |
* Fri May 20 2011 Kalev Lember <kalev@smartlink.ee> 2.7.11-4
|
|
|
4133dc |
- Rebuilt for libcamel soname bump
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Apr 26 2011 Dan Williams <dcbw@redhat.com> 2.7.11-3
|
|
|
4133dc |
- A few more NetworkManager 0.9 fixes
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Mar 25 2011 Dan Williams <dcbw@redhat.com> 2.7.11-2
|
|
|
4133dc |
- Rebuild for NetworkManager 0.9
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Mar 11 2011 Stu Tomlinson <stu@nosnilmot.com> 2.7.11-1
|
|
|
4133dc |
- 2.7.11, includes security/DoS fixes in Yahoo protocol
|
|
|
4133dc |
CVE-2011-1091 (#683031)
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Mar 10 2011 Dan Williams <dcbw@redhat.com> 2.7.10-2
|
|
|
4133dc |
- Update for NetworkManager 0.9
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Feb 22 2011 Stu Tomlinson <stu@nosnilmot.com> 2.7.10-1
|
|
|
4133dc |
- 2.7.10
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.9-4
|
|
|
4133dc |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Feb 01 2011 Milan Crha <mcrha@redhat.com> 2.7.9-3
|
|
|
4133dc |
- Rebuild against newer evolution-data-server
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 12 2011 Milan Crha <mcrha@redhat.com> 2.7.9-2
|
|
|
4133dc |
- Rebuild against newer evolution-data-server
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Dec 27 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.9-1
|
|
|
4133dc |
- 2.7.9, includes security/DoS fix in the MSN protocol (#665856)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Nov 29 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.7-1
|
|
|
4133dc |
- 2.7.7
|
|
|
4133dc |
- Disable MSNP16 due to regressions interacting with official client
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Nov 19 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.5-2
|
|
|
4133dc |
- Add additional intermediate CA certificates to fix MSN
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Nov 01 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.5-1
|
|
|
4133dc |
- 2.7.5
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Oct 22 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.4-1
|
|
|
4133dc |
- 2.7.4, includes security fix for CVE-2010-3711
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Oct 12 2010 Milan Crha <mcrha@redhat.com> - 2.7.3-6
|
|
|
4133dc |
- Rebuild against newer evolution-data-server
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Sep 29 2010 jkeating - 2.7.3-5
|
|
|
4133dc |
- Rebuilt for gcc bug 634757
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Sep 16 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.3-4
|
|
|
4133dc |
- Rebuild against newer libedataserver
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Sep 13 2010 Dan Horák <dan[at]danny.cz> 2.7.3-3
|
|
|
4133dc |
- drop the s390(x) ifarchs
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Aug 23 2010 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.3-2
|
|
|
4133dc |
- use _isa in explicit Requires on libpurple to prevent yum from trying to
|
|
|
4133dc |
jump architectures to resolve dependency
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Aug 11 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.3-1
|
|
|
4133dc |
- 2.7.3
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jul 21 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.2-1
|
|
|
4133dc |
- 2.7.2 with a security fix (CVE-2010-2528) and a couple of bug fixes (#601650)
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jul 15 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.1-5
|
|
|
4133dc |
- Rebuild against newer libedataserver
|
|
|
4133dc |
- spec file cleanup:
|
|
|
4133dc |
replace %%define with %%global
|
|
|
4133dc |
replace tabs with spaces for consistency
|
|
|
4133dc |
mark prefs.xml as a config file
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jul 07 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.1-4
|
|
|
4133dc |
- Include license in libpurple subpackage
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jun 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 2.7.1-3
|
|
|
4133dc |
- Mass rebuild with perl-5.12.0
|
|
|
4133dc |
|
|
|
4133dc |
* Sun May 30 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.1-2
|
|
|
4133dc |
- Add Obsoletes to pull in pidgin-evolution during update
|
|
|
4133dc |
|
|
|
4133dc |
* Sun May 30 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.1-1
|
|
|
4133dc |
- 2.7.1
|
|
|
4133dc |
- Adds Direct Connection support for MSN
|
|
|
4133dc |
- Numerous bug fixes
|
|
|
4133dc |
- Evolution support moved to pidgin-evolution for F13+ (#581144)
|
|
|
4133dc |
|
|
|
4133dc |
* Thu May 20 2010 Stu Tomlinson <stu@nosnilmot.com> 2.7.0-2
|
|
|
4133dc |
- Upstream backports:
|
|
|
4133dc |
3c30f64efedafc379b6536852bbb3b6ef5f1f6c9 - fix for receiving HTML on ICQ
|
|
|
4133dc |
13fbe0815f84d5b3c001947559f5818c10275f4c - prevent null deref on disconnecting account (#592750)
|
|
|
4133dc |
c4a874926d07b8597db4b78a181a89cf720a8418 - fix blinking tray icon on new message (#592691)
|
|
|
4133dc |
cfe0e649dda34d9252d40d8f67e445336a247998 - prevent race condition on Yahoo! login
|
|
|
4133dc |
e3dd36706068f3b8eabd630ff71d270c145cce42 - fix crash in Oscar (#548128)
|
|
|
4133dc |
13fbe0815f84d5b3c001947559f5818c10275f4c - fix crash during network disconnect (#592750)
|
|
|
4133dc |
|
|
|
4133dc |
* Thu May 13 2010 Stu Tomlinson <stu@nosnilmot.com> - 2.7.0-1
|
|
|
4133dc |
- 2.7.0 with features, bug fixes and a security fix: CVE-2010-1624 (#591806)
|
|
|
4133dc |
- Use System SSL Certificates (#576721)
|
|
|
4133dc |
- Add additional dependencies for Voice + Video (#581343)
|
|
|
4133dc |
- Upstream backport:
|
|
|
4133dc |
87ada76abf90c44e615679efc5f8128bb941bba1 Reduce MSN traffic
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Mar 04 2010 Warren Togami <wtogami@redhat.com> - 2.6.6-2
|
|
|
4133dc |
- Upstream backports:
|
|
|
4133dc |
0e3079d15adeb12c1e57ceaf5bf037f9b71c8abd Fix AIM SSL clientLogin
|
|
|
4133dc |
b14ee507e932a395a0e1f29298af162c8614ca0f Fix AIM clientLogin with proxy
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Feb 16 2010 Warren Togami <wtogami@redhat.com> - 2.6.6-1
|
|
|
4133dc |
- 2.6.6 with security and numerous minor bug fixes
|
|
|
4133dc |
CVE-2010-0277 CVE-2010-0420 CVE-2010-0423
|
|
|
4133dc |
- Bug #528796: Get rid of #!/usr/bin/env python
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Jan 8 2010 Warren Togami <wtogami@redhat.com> - 2.6.5-2
|
|
|
4133dc |
- 2.6.5
|
|
|
4133dc |
- CVE-2010-0013
|
|
|
4133dc |
- Other bug fixes
|
|
|
4133dc |
- Fix build with old gcc versions (RHEL4)
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Dec 8 2009 Warren Togami <wtogami@redhat.com> - 2.6.4-4
|
|
|
4133dc |
- temporarily disable evolution integration in F13 until it is fixed
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Dec 02 2009 Warren Togami <wtogami@redhat.com> 2.6.4-2
|
|
|
4133dc |
- disable SILC in EL6 builds
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Nov 30 2009 Warren Togami <wtogami@redhat.com> 2.6.4-1
|
|
|
4133dc |
- 2.6.4
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Oct 19 2009 Warren Togami <wtogami@redhat.com> 2.6.3-2
|
|
|
4133dc |
- Upstream backport:
|
|
|
4133dc |
3abad7606f4a2dfd1903df796f33924b12509a56 msn_servconn_disconnect-crash
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Oct 16 2009 Warren Togami <wtogami@redhat.com> 2.6.3-1
|
|
|
4133dc |
- 2.6.3 CVE-2009-3615
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Sep 09 2009 Warren Togami <wtogami@redhat.com> 2.6.2-2
|
|
|
4133dc |
- Upstream backports:
|
|
|
4133dc |
97e003ed2bc2bafbb993693c9ae9c6d667731cc1 aim-buddy-status-grab
|
|
|
4133dc |
37aa00d044431100d37466517568640cb082680c yahoo-buddy-idle-time
|
|
|
4133dc |
40005b889ee276fbcd0a4e886a68d8a8cce45698 yahoo-status-change-away
|
|
|
4133dc |
cb46b045aa6e927a3814d9053c2b1c0f08d6fa62 crash-validate-jid
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Sep 06 2009 Stu Tomlinson <stu@nosnilmot.com> 2.6.2-1.1
|
|
|
4133dc |
- VV support needs to be explicitly disabled on F10
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Sep 06 2009 Stu Tomlinson <stu@nosnilmot.com> 2.6.2-1
|
|
|
4133dc |
- 2.6.2 Fixes a number of crashes
|
|
|
4133dc |
- CVE-2009-2703, CVE-2009-3083, CVE-2009-3084, CVE-2009-3085
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Aug 19 2009 Warren Togami <wtogami@redhat.com> 2.6.1-1
|
|
|
4133dc |
- 2.6.1: Fix a crash when some users send you a link in a Yahoo IM
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Aug 18 2009 Warren Togami <wtogami@redhat.com> 2.6.0-1
|
|
|
4133dc |
- CVE-2009-2694
|
|
|
4133dc |
- Voice and Video support via farsight2 (Fedora 11+)
|
|
|
4133dc |
- Numerous other bug fixes
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Aug 06 2009 Warren Togami <wtogami@redhat.com> 2.6.0-0.11.20090812
|
|
|
4133dc |
- new snapshot at the request of maiku
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Aug 06 2009 Warren Togami <wtogami@redhat.com> 2.6.0-0.10.20090806
|
|
|
4133dc |
- new snapshot - theoretically better sound quality in voice chat
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Aug 04 2009 Warren Togami <wtogami@redhat.com> 2.6.0-0.9.20090804
|
|
|
4133dc |
- new snapshot
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jul 27 2009 Warren Togami <wtogami@redhat.com> 2.6.0-0.8.20090727
|
|
|
4133dc |
- new snapshot
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jul 27 2009 Stu Tomlinson <stu@nosnilmot.com> 2.6.0-0.6.20090721
|
|
|
4133dc |
- Prevent main libpurple & pidgin packages depending on perl (#513902)
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.0-0.5.20090721
|
|
|
4133dc |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jul 22 2009 Warren Togami <wtogami@redhat.com> 2.6.0-0.4.20090721
|
|
|
4133dc |
- rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jul 21 2009 Warren Togami <wtogami@redhat.com> 2.6.0-0.3.20090721
|
|
|
4133dc |
- prevent crash with no camera when closing vv window
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jul 21 2009 Warren Togami <wtogami@redhat.com> 2.6.0-0.1.20090721
|
|
|
4133dc |
- 2.6.0 snapshot with voice and video support via farsight2
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Jul 11 2009 Stu Tomlison <stu@nosnilmot.com> 2.5.8-2
|
|
|
4133dc |
- Backport patch from upstream to enable NSS to recognize root CA
|
|
|
4133dc |
certificates that use MD2 & MD4 algorithms in their signature, as
|
|
|
4133dc |
used by some MSN and XMPP servers
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Jun 28 2009 Warren Togami <wtogami@redat.com> 2.5.8-1
|
|
|
4133dc |
- 2.5.8 with several important bug fixes
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jun 22 2009 Warren Togami <wtogami@redhat.com> 2.5.7-2
|
|
|
4133dc |
- glib2 compat with RHEL-4
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Jun 20 2009 Warren Togami <wtogami@redhat.com> 2.5.7-1
|
|
|
4133dc |
- 2.5.7 with Yahoo Protocol 16 support
|
|
|
4133dc |
|
|
|
4133dc |
* Wed May 20 2009 Stu Tomlinson <stu@nosnilmot.com> 2.5.6-1
|
|
|
4133dc |
- 2.5.6
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Apr 20 2009 Warren Togami <wtogami@redhat.com> 2.5.5-3
|
|
|
4133dc |
- F12+ removed krb4
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Mar 03 2009 Stu Tomlinson <stu@nosnilmot.com> 2.5.5-1
|
|
|
4133dc |
- 2.5.5
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.4-3
|
|
|
4133dc |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jan 27 2009 Warren Togami <wtogami@redhat.com> 2.5.4-2
|
|
|
4133dc |
- one_time_password plugin
|
|
|
4133dc |
- Eliminate RPATH
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jan 12 2009 Stu Tomlinson <stu@nosnilmot.com> 2.5.4-1
|
|
|
4133dc |
- 2.5.4
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Dec 26 2008 Warren Togami <wtogami@redhat.com> 2.5.3-1
|
|
|
4133dc |
- 2.5.3
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Nov 22 2008 Warren Togami <wtogami@redhat.com> 2.5.2-6
|
|
|
4133dc |
- Automatically detect booleans to enable build features from dist tag
|
|
|
4133dc |
- Unify RHEL4 and RHEL5 spec with Fedora to make both easier to maintain
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Nov 21 2008 Warren Togami <wtogami@redhat.com> 2.5.2-2
|
|
|
4133dc |
- Upstream backports:
|
|
|
4133dc |
100: sametime-redirect-null crash
|
|
|
4133dc |
101: NetworkManager-improvement
|
|
|
4133dc |
102: no-password-in-dialog-if-not-remembering
|
|
|
4133dc |
103: temporarily-remember-password-during-auto-reconnect
|
|
|
4133dc |
104: smilie-theme-change-crash
|
|
|
4133dc |
105: url_fetch_connect_cb-double-free crash
|
|
|
4133dc |
106: GtkIMHtmlSmileys-remove-crash
|
|
|
4133dc |
107: remove-dialog-from-open-dialog-list
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Oct 20 2008 Stu Tomlinson <stu@nosnilmot.com> 2.5.2-1
|
|
|
4133dc |
- 2.5.2
|
|
|
4133dc |
- Generate doxygen API documentation (#466693)
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Sep 16 2008 Stu Tomlinson <stu@nosnilmot.com> 2.5.1-3
|
|
|
4133dc |
- Backport fixes from upstream:
|
|
|
4133dc |
Add "Has You:" back to MSN tooltips
|
|
|
4133dc |
Fix crash during removal of your own buddy icon
|
|
|
4133dc |
Fix crash when handling self signed certificate with NSS SSL
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Sep 16 2008 Stu Tomlinson <stu@nosnilmot.com> 2.5.1-2
|
|
|
4133dc |
- Fix a crash with GNOME proxy enabled (#461951)
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Aug 31 2008 Stu Tomlinson <stu@nosnilmot.com> 2.5.1-1
|
|
|
4133dc |
- 2.5.1
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Aug 23 2008 Stu Tomlinson <stu@nosnilmot.com> 2.5.0-1
|
|
|
4133dc |
- 2.5.0
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jul 01 2008 Stu Tomlinson <stu@nosnilmot.com> 2.4.3-1.1
|
|
|
4133dc |
- Add a patch to build with latest rawhide tcl
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jul 01 2008 Stu Tomlinson <stu@nosnilmot.com> 2.4.3-1
|
|
|
4133dc |
- 2.4.3
|
|
|
4133dc |
|
|
|
4133dc |
* Sat May 17 2008 Stu Tomlinson <stu@nosnilmot.com> 2.4.2-1
|
|
|
4133dc |
- 2.4.2
|
|
|
4133dc |
|
|
|
4133dc |
* Tue May 13 2008 Stu Tomlinson <stu@nosnilmot.com> 2.4.1-3
|
|
|
4133dc |
- Rebuild for new evolution-data-server
|
|
|
4133dc |
- Clean up default prefs.xml
|
|
|
4133dc |
- Enable nautilus integration plugin by default in prefs.xml (#242289)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Mar 31 2008 Stu Tomlinson <stu@nosnilmot.com> 2.4.1-2
|
|
|
4133dc |
- nss-devel no longer provides mozilla-nss-devel
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Mar 31 2008 Stu Tomlinson <stu@nosnilmot.com> 2.4.1-1
|
|
|
4133dc |
- 2.4.1
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Mar 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.4.0-4
|
|
|
4133dc |
- add Requires for versioned perl (libperl.so)
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Mar 14 2008 Stu Tomlinson <stu@nosnilmot.com> 2.4.0-3
|
|
|
4133dc |
- BuildRequire perl(ExtUtils::Embed) for perl 5.10
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Mar 14 2008 Stu Tomlinson <stu@nosnilmot.com> 2.4.0-2
|
|
|
4133dc |
- Fix download URL
|
|
|
4133dc |
- Use xdg-open instead of gnome-open (#388521, Ville Skyttä)
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Feb 29 2008 Stu Tomlinson <stu@nosnilmot.com> 2.4.0-1
|
|
|
4133dc |
- 2.4.0
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Feb 11 2008 Stu Tomlinson <stu@nosnilmot.com> 2.3.1-3
|
|
|
4133dc |
- %%{_datadir}/purple should be owned by libpurple (#427807)
|
|
|
4133dc |
- Rebuild for gcc 4.3
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Jan 04 2008 Jason L Tibbitts III <tibbs@math.uh.edu> - 2.3.1-2
|
|
|
4133dc |
- Bump to rebuild against new tcl.
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Dec 07 2007 Stu Tomlinson <stu@nosnilmot.com> 2.3.1-1
|
|
|
4133dc |
- 2.3.1 Many bugfixes
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Nov 27 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.3.0-1
|
|
|
4133dc |
- Fix MSN local display name bug
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Nov 26 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.3.0-1
|
|
|
4133dc |
- 2.3.0
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Oct 24 2007 Warren Togami <wtogami@redhat.com> - 2.2.2-1
|
|
|
4133dc |
- 2.2.2 CVE-2007-4999
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Oct 7 2007 Michel Salim <michel.sylvan@gmail.com> - 2.2.1-2
|
|
|
4133dc |
- BR on avahi-glib-devel to supply complete set of Avahi headers
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Oct 1 2007 Warren Togami <wtogami@redhat.com> - 2.2.1-1
|
|
|
4133dc |
- 2.2.1 with many bug fixes and CVE-2007-4996 DOS fix
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Sep 29 2007 Michel Salim <michel.sylvan@gmail.com> - 2.2.0-3
|
|
|
4133dc |
- Build against avahi proper instead of its HOWL compatibility layer
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Sep 18 2007 Warren Togami <wtogami@redhat.com> - 2.2.0-2
|
|
|
4133dc |
- License clarification
|
|
|
4133dc |
- Backport patches to fix memory leaks
|
|
|
4133dc |
- Backport patches to fix proxy settings & status scores
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Sep 18 2007 Warren Togami <wtogami@redhat.com> - 2.2.0-1
|
|
|
4133dc |
- 2.2.0
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Aug 20 2007 Warren Togami <wtogami@redhat.com> - 2.1.1-1
|
|
|
4133dc |
- 2.1.1
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Aug 15 2007 Warren Togami <wtogami@redhat.com> - 2.1.0-2
|
|
|
4133dc |
- Upstream fix backports
|
|
|
4133dc |
115: gmail-notification-crash #2323
|
|
|
4133dc |
117: drag-and-drop-mouse-click-group-header #2333
|
|
|
4133dc |
118: jabber-confirm-authentication-unencrypted-crash #2493
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Aug 6 2007 Warren Togami <wtogami@redhat.com>
|
|
|
4133dc |
- require exact version of libpurple (#250720)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jul 30 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.1.0-1
|
|
|
4133dc |
- 2.1.0
|
|
|
4133dc |
- Only include translations in libpurple instead of duplicating them in
|
|
|
4133dc |
packages that depend on libpurple anyway
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jun 19 2007 Warren Togami <wtogami@redhat.com> - 2.0.2-3
|
|
|
4133dc |
- libpurple obsoletes and provides gaim
|
|
|
4133dc |
This smoothens multilib the upgrade path.
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Jun 15 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.0.2-1
|
|
|
4133dc |
- 2.0.2
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jun 6 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.0.1-5
|
|
|
4133dc |
- Enable Bonjour support (#242949)
|
|
|
4133dc |
- Fix building against latest evolution-data-server
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jun 5 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.0.1-4
|
|
|
4133dc |
- Fix purple-remote for AIM & ICQ accounts (#240589)
|
|
|
4133dc |
- Add missing Requires to -devel packages
|
|
|
4133dc |
- Add missing BuildRequires for libxml2-devel
|
|
|
4133dc |
|
|
|
4133dc |
* Fri May 31 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.0.1-2
|
|
|
4133dc |
- Call g_thread_init early (#241883)
|
|
|
4133dc |
- Fix purple-remote syntax error (#241905)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon May 28 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.0.1-1
|
|
|
4133dc |
- 2.0.1
|
|
|
4133dc |
|
|
|
4133dc |
* Wed May 9 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.0.0-3
|
|
|
4133dc |
- Split out Perl plugin support into subpackages
|
|
|
4133dc |
- Add Tcl plugin support in a subpackage
|
|
|
4133dc |
|
|
|
4133dc |
* Sun May 6 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.0.0-2
|
|
|
4133dc |
- Silence errors when gconfd-2 is not running
|
|
|
4133dc |
|
|
|
4133dc |
* Sat May 5 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.0.0-1.1
|
|
|
4133dc |
- Add perl-devel to BuildRequires
|
|
|
4133dc |
|
|
|
4133dc |
* Fri May 4 2007 Stu Tomlinson <stu@nosnilmot.com> - 2.0.0-1
|
|
|
4133dc |
- 2.0.0
|
|
|
4133dc |
- Add scriptlets to install & uninstall GConf schemas
|
|
|
4133dc |
- Move schema file from libpurple to Pidgin to avoid GConf
|
|
|
4133dc |
dependencies in libpurple
|
|
|
4133dc |
- rename gaim-fedora-prefs.xml to purple-fedora-prefs.xml
|
|
|
4133dc |
|
|
|
4133dc |
* Tue May 1 2007 Stu Tomlinson <stu@nosnilmot.com>
|
|
|
4133dc |
- Update Gtk icon cache when installing or uninstalling (#238621)
|
|
|
4133dc |
- Don't own all directories we put icons in
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Apr 30 2007 Warren Togami <wtogami@redhat.com> - 2.0.0-0.36.beta7
|
|
|
4133dc |
- pidgin-2.0.0beta7, bug fixes and pref migration handling
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Apr 21 2007 Warren Togami <wtogami@redhat.com> - 2.0.0-0.35.beta7devel
|
|
|
4133dc |
- upstream insists that we remove the Epoch
|
|
|
4133dc |
rawhide users might need to use --oldpackage once to upgrade
|
|
|
4133dc |
- remove mono and howl cruft
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Apr 18 2007 Stu Tomlinson <stu@nosnilmot.com> - 2:2.0.0-0.34.beta7devel
|
|
|
4133dc |
- Split into pidgin, finch & libpurple, along with corresponding -devel RPMs
|
|
|
4133dc |
- Remove ldconfig for plugin directories
|
|
|
4133dc |
- Fix non-UTF8 %%changelog
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Apr 17 2007 Warren Togami <wtogami@redhat.com>
|
|
|
4133dc |
- -devel req pkgconfig (#222488)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Apr 16 2007 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.33.beta7devel
|
|
|
4133dc |
- pidgin-2.0.0 snapshot prior to beta7
|
|
|
4133dc |
- rename gaim to pidgin/purple/finch in various places of spec (not complete)
|
|
|
4133dc |
- ExcludeArch s390, s390x. It never did work there.
|
|
|
4133dc |
- Include meanwhile plugin by moving to Extras
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Mar 23 2007 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.31.beta6
|
|
|
4133dc |
- Removed debian-02_gnthistory-in-gtk
|
|
|
4133dc |
Removed debian-03_gconf-gstreamer.patch
|
|
|
4133dc |
Upstream recommended removing these patches.
|
|
|
4133dc |
- Add fix-buggy-fetch-url
|
|
|
4133dc |
- Enable type_chat and type_chat_nick in default prefs.xml
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Jan 20 2007 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.30.beta6
|
|
|
4133dc |
- 2.0.0 beta6
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jan 18 2007 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.29.beta5
|
|
|
4133dc |
- Debian patch 17_upnp_crash
|
|
|
4133dc |
- Debian patch 18_jabber-roster-crash
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Dec 11 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.28.beta5
|
|
|
4133dc |
- Debian patch 13_yahoo_webauth_disable
|
|
|
4133dc |
temporarily disable the broken yahoo web auth fallback
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Dec 06 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.27.beta5
|
|
|
4133dc |
- Debian patch 12_gstreamer-cleanup, hopefully fixes #218070
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Dec 05 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.26.beta5
|
|
|
4133dc |
- Jabber SASL Authentication Crash (#217335)
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Nov 29 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.25.beta5
|
|
|
4133dc |
- GTK File dialog blanked fix (#217768)
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Nov 28 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.24.beta5
|
|
|
4133dc |
- Debian patch 10_text-arrow-keys
|
|
|
4133dc |
- Debian patch 11_reread-resolvconf
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Nov 26 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.23.beta5
|
|
|
4133dc |
- Debian patch 08_jabber-info-crash
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Nov 21 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.22.beta5
|
|
|
4133dc |
- 2.0.0 beta5
|
|
|
4133dc |
- Debian patches
|
|
|
4133dc |
02_gnthistory-in-gtk
|
|
|
4133dc |
03_gconf-gstreamer
|
|
|
4133dc |
04_blist-memleak
|
|
|
4133dc |
05_url-handler-xmpp
|
|
|
4133dc |
06_jabber-registration-srv
|
|
|
4133dc |
07_msn-custom-smiley-crash
|
|
|
4133dc |
- SILC Account Edit Crash
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Nov 21 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.21.beta4
|
|
|
4133dc |
- #212817 Jabber needs cyrus-sasl plugins for authentication
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Nov 15 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.20.beta4
|
|
|
4133dc |
- #215704 Revert Yahoo protocol version identifier
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Nov 8 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.19.beta4
|
|
|
4133dc |
- buildreq NetworkManager-glib-devel FC5+ (katzj)
|
|
|
4133dc |
- #213800 debug window freeze fix
|
|
|
4133dc |
- #212818 IRC SIGPIPE crash fix
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Oct 25 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.17.beta4
|
|
|
4133dc |
- temporary workaround for gstreamer build bug in beta4
|
|
|
4133dc |
--enable-gstreamer prevented it from working =)
|
|
|
4133dc |
NOTE: beta4 removed libao support entirely. Distros that lack gstreamer-0.10+
|
|
|
4133dc |
will need to use command line sound output from now on.
|
|
|
4133dc |
- Gadu Gadu is re-included in beta4 without requirement of external library
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Oct 23 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.16.beta4
|
|
|
4133dc |
- 2.0.0 beta4
|
|
|
4133dc |
- gaim-text ncurses interface!
|
|
|
4133dc |
- gstreamer integration with FC5+
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Oct 05 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.15.beta3
|
|
|
4133dc |
- delete config.h correctly (rvokal)
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Oct 05 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.14.beta3
|
|
|
4133dc |
- Fix multilib conflict in -devel (#205206)
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Sep 30 2006 Matthias Clasen <mclasen@redhat.com> - 2:2.0.0-0.13.beta3
|
|
|
4133dc |
- Make the tray icon work with transparent panels (#208706)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jul 31 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.11.beta3
|
|
|
4133dc |
- rebuild for new libebook
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jul 25 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.9.beta3
|
|
|
4133dc |
- fix crash with certain UTF-8 names in buddy list (#199590)
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Jul 22 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.8.beta3
|
|
|
4133dc |
- move gaim.pc to -devel (#199761)
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jul 19 2006 Warren Togami <wtogami@redhat.com> - 2:2.0.0-0.7.beta3
|
|
|
4133dc |
- cleanup spec and update default pref
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jul 19 2006 John (J5) Palmieri <johnp@redhat.com> - 2:2.0.0-0.6.beta3.2
|
|
|
4133dc |
- Add BR for dbus-glib-devel
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2:2.0.0-0.6.beta3.1
|
|
|
4133dc |
- rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jul 05 2006 Warren Togami <wtogami@redhat.com> 2.0.0-0.6.beta3
|
|
|
4133dc |
- SILC blank realname failure fix (#173076)
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jun 29 2006 Warren Togami <wtogami@redhat.com> 2.0.0-0.5.beta3
|
|
|
4133dc |
- buildreq libSM-devel (#197241)
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jun 28 2006 Warren Togami <wtogami@redhat.com> 2.0.0-0.4.beta3
|
|
|
4133dc |
- rebuild against libsilc-1.0.2
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jun 27 2006 Warren Togami <wtogami@redhat.com> 2.0.0-0.3.beta3
|
|
|
4133dc |
- more spec cleanups
|
|
|
4133dc |
- buildreq libXScrnSaver-devel, gettext, intltool, desktop-file-utils
|
|
|
4133dc |
- disable mono for now due to #196877
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jun 26 2006 Tom "spot" Callaway <tcallawa@redhat.com>
|
|
|
4133dc |
- split out -devel package to meet guidelines
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jan 23 2006 Tom "spot" Callaway <tcallawa@redhat.com>
|
|
|
4133dc |
- gaim2 version of the spec
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
4133dc |
- rebuilt
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Nov 10 2005 Warren Togami <wtogami@redhat.com> - 1:1.5.0-9
|
|
|
4133dc |
- Ensure that security opt flags are used (#165795)
|
|
|
4133dc |
- Many bug fixes from Peter Lawler (#171350)
|
|
|
4133dc |
156: Fix Yahoo chatroom ignore on join
|
|
|
4133dc |
157: Fix Italian yahoo profiles
|
|
|
4133dc |
158: Strip HTML from status
|
|
|
4133dc |
159: xmlnode cleanup
|
|
|
4133dc |
160: Fix crash on non-terminated strings
|
|
|
4133dc |
161: silc-close-gaim_request-window-prpl-disconnect-p1
|
|
|
4133dc |
162: silc-close-gaim_request-window-prpl-disconnect-p2
|
|
|
4133dc |
163: silc-close-gaim_request-window-prpl-disconnect-p3
|
|
|
4133dc |
164: silc-close-gaim_request-window-prpl-disconnect-p4
|
|
|
4133dc |
165: silc-close-gaim_request-window-prpl-disconnect-p5
|
|
|
4133dc |
166: silc-close-gaim_request-window-prpl-disconnect-p6
|
|
|
4133dc |
167: MSN data corruption fix
|
|
|
4133dc |
168: msn-kill-convo-close-timeout-notices-p1
|
|
|
4133dc |
169: msn-kill-convo-close-timeout-notices-p2
|
|
|
4133dc |
170: msn-kill-convo-close-timeout-notices-p3
|
|
|
4133dc |
171: forceful-connection_disconnect-not-wipe-password
|
|
|
4133dc |
172: Clipboard leak and history scrolling fix
|
|
|
4133dc |
173: smileys-logtype-p1
|
|
|
4133dc |
174: smileys-logtype-p2
|
|
|
4133dc |
175: Allow Italics in IRC
|
|
|
4133dc |
176: Add more authors
|
|
|
4133dc |
177: Update copyright
|
|
|
4133dc |
178: Update HACKING doc
|
|
|
4133dc |
179: Fix doc creation
|
|
|
4133dc |
180: Fix AIM/ICQ Rate Limiting issue
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Oct 13 2005 Ray Strode <rstrode@redhat.com> - 1:1.5.0-7
|
|
|
4133dc |
- use upstream desktop file (except use generic name, because
|
|
|
4133dc |
this is our default instant messaging client)
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Sep 27 2005 Warren Togami <wtogami@redhat.com> - 1:1.5.0-6
|
|
|
4133dc |
- remove -Wno-pointer-sign, not sure why it was needed earlier
|
|
|
4133dc |
- fix FORTIFY_SOURCE on FC3
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Sep 15 2005 Jeremy Katz <katzj@redhat.com> - 1:1.5.0-5
|
|
|
4133dc |
- rebuild for new e-d-s
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Aug 21 2005 Peter Jones <pjones@redhat.cm> - 1:1.5.0-4
|
|
|
4133dc |
- rebuild for new cairo, add -Wno-pointer-sign
|
|
|
4133dc |
- add -Wno-pointer-sign until somebody maintaining this package makes it build
|
|
|
4133dc |
without it.
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Aug 14 2005 Warren Togami <wtogami@redhat.com> - 1:1.5.0-2
|
|
|
4133dc |
- always use -z relro and FORTIFY_SOURCE opt flags for FC3+ and RHEL4+
|
|
|
4133dc |
(compiler simply ignores these flags if they are unsupported)
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Aug 11 2005 Warren Togami <wtogami@redhat.com> - 1:1.5.0-1
|
|
|
4133dc |
- 1.5.0 security and bug fixes
|
|
|
4133dc |
CAN-2005-2370 Gadu-Gadu memory alignment bug
|
|
|
4133dc |
CAN-2005-2102 AIM/ICQ non-UTF-8 Filename Crash
|
|
|
4133dc |
CAN-2005-2103 AIM/ICQ away message buffer overflow
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Aug 9 2005 Jeremy Katz <katzj@redhat.com> - 1:1.4.0-7
|
|
|
4133dc |
- rebuild for new evolution-data-server
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Aug 1 2005 Warren Togami <wtogami@redhat.com> 1:1.4.0-6
|
|
|
4133dc |
- FC5+ bash regex replace for -fstack-protector-all (mharris)
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Jul 31 2005 Warren Togami <wtogami@redhat.com> 1:1.4.0-5
|
|
|
4133dc |
- FC5+ automatic -fstack-protector-all switch
|
|
|
4133dc |
- 150: MSN buddy names with space disconnect and profile corruption
|
|
|
4133dc |
(supercedes patch 149)
|
|
|
4133dc |
- 151: Gadu Gadu memory alignment crash
|
|
|
4133dc |
- 152: Rename Group Merge crash
|
|
|
4133dc |
- 153: mailto: parse crash (util.c)
|
|
|
4133dc |
- 154: mailto: parse crash (MSN)
|
|
|
4133dc |
- 155: mailto: parse crash (Zephyr)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jul 11 2005 Warren Togami <wtogami@redhat.com> 1:1.4.0-4
|
|
|
4133dc |
- 149: MSN username with space disconnect fix
|
|
|
4133dc |
- Do not own perl dir, remove empty files (#162994 jpo)
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Jul 10 2005 Warren Togami <wtogami@redhat.com> 1:1.4.0-2
|
|
|
4133dc |
- 148: AIM login crash fix
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jul 07 2005 Warren Togami <wtogami@redhat.com> 1:1.4.0-1
|
|
|
4133dc |
- 1.4.0
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jun 09 2005 Warren Togami <wtogami@redhat.com> 1:1.3.1-0
|
|
|
4133dc |
- 1.3.1 more bug fixes
|
|
|
4133dc |
CAN-2005-1269 CAN-2005-1934
|
|
|
4133dc |
- enable Message Notification plugin by default
|
|
|
4133dc |
|
|
|
4133dc |
* Tue May 10 2005 Warren Togami <wtogami@redhat.com> 1:1.3.0-1
|
|
|
4133dc |
- 1.3.0 many bug fixes and two security fixes
|
|
|
4133dc |
long URL crash fix (#157017) CAN-2005-1261
|
|
|
4133dc |
MSN bad messages crash fix (#157202) CAN-2005-1262
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Apr 07 2005 Warren Togami <wtogami@redhat.com> 1:1.2.1-4
|
|
|
4133dc |
- use mozilla-nss everywhere because gnutls is buggy (#135778)
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Apr 06 2005 Warren Togami <wtogami@redhat.com> 1:1.2.1-2
|
|
|
4133dc |
- 147: drag-n-drop URL crash fix
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Apr 03 2005 Warren Togami <wtogami@redhat.com> 1:1.2.1-1
|
|
|
4133dc |
- update to 1.2.1 CAN-2005-0965 CAN-2005-0966 CAN-2005-0967
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Mar 18 2005 Warren Togami <wtogami@redhat.com> 1:1.2.0-1
|
|
|
4133dc |
- update to 1.2.0 (minor bug fixes)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Mar 07 2005 Warren Togami <wtogami@redhat.com> 1:1.1.4-5
|
|
|
4133dc |
- Copy before modifying prefs.xml
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Mar 06 2005 Warren Togami <wtogami@redhat.com> 1:1.1.4-4
|
|
|
4133dc |
- 144: POSIX functions became macros, build fix (#150429)
|
|
|
4133dc |
- 145: Fix non-proxy yahoo file transfer
|
|
|
4133dc |
- 146: Fix non-proxy yahoo buddy icons
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Mar 04 2005 Warren Togami <wtogami@redhat.com> 1:1.1.4-3
|
|
|
4133dc |
- 143: Gadu Gadu protocol crash fix (#149984)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Feb 28 2005 Warren Togami <wtogami@redhat.com> 1:1.1.4-2
|
|
|
4133dc |
- remove gcc4 conditional since FC4 is gcc4 default
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Feb 24 2005 Warren Togami <wtogami@redhat.com> 1:1.1.4-1
|
|
|
4133dc |
- 1.1.4 with MSN crash fix, g_stat() crash workaround
|
|
|
4133dc |
CAN-2005-0208 Gaim HTML parsing DoS (another one)
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Feb 22 2005 Warren Togami <wtogami@redhat.com> 1:1.1.3-4
|
|
|
4133dc |
- Test fixes for #149190 and #149304
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Feb 21 2005 Dan Williams <dcbw@redhat.com> 1:1.1.3-3
|
|
|
4133dc |
- Work around #149190 gaim-1.1.3-2 segfaults when calling g_stat()
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Feb 18 2005 Warren Togami <wtogami@redhat.com> 1:1.1.3-2
|
|
|
4133dc |
- 1.1.3 including two security fixes
|
|
|
4133dc |
CAN-2005-0472 Client freezes when receiving certain invalid messages
|
|
|
4133dc |
CAN-2005-0473 Client crashes when receiving specific malformed HTML
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Jan 28 2005 Florian La Roche <laroche@redhat.com>
|
|
|
4133dc |
- rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jan 20 2005 Warren Togami <wtogami@redhat.com> 1:1.1.2-1
|
|
|
4133dc |
- 1.1.2 with more bugfixes
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jan 18 2005 Chip Turner <cturner@redhat.com> 1:1.1.1-3
|
|
|
4133dc |
- rebuild for new perl
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jan 03 2005 Warren Togami <wtogami@redhat.com> 1.1.1-2
|
|
|
4133dc |
- force required glib2 version
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Dec 28 2004 Warren Togami <wtogami@redhat.com> 1.1.1-1
|
|
|
4133dc |
- 1.1.1 (minor bugfixes)
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Dec 2 2004 Warren Togami <wtogami@redhat.com> 1.1.0-1
|
|
|
4133dc |
- upgrade 1.1.0 (mostly bugfixes)
|
|
|
4133dc |
- fix PIE patch
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Nov 20 2004 Warren Togami <wtogami@redhat.com> 1.0.3-3
|
|
|
4133dc |
- make gcc4 conditional
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Nov 20 2004 Daniel Reed <djr@redhat.com> 1.0.3-2
|
|
|
4133dc |
- Rebuild using gcc4
|
|
|
4133dc |
- To revert, remove "BuildRequires: gcc4" and "CC=gcc4"
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Nov 12 2004 Warren Togami <wtogami@redhat.com> 1.0.3-1
|
|
|
4133dc |
- 1.0.3 another bugfix release
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Oct 19 2004 Warren Togami <wtogami@redhat.com> 1.0.2-1
|
|
|
4133dc |
- 1.0.2 fixes many crashes, endian and other issues
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Oct 19 2004 Warren Togami <wtogami@redhat.com> 1.0.1-3
|
|
|
4133dc |
- nosnilmot: zephyr krb build was broken by thinko
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Oct 13 2004 Warren Togami <wtogami@redhat.com> 1.0.1-2
|
|
|
4133dc |
- CAN-2004-0891
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Oct 07 2004 Warren Togami <wtogami@redhat.com> 1.0.1-1
|
|
|
4133dc |
- update to 1.0.1
|
|
|
4133dc |
- disable naive GNOME session check
|
|
|
4133dc |
- switch to gnutls default (FC3+)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Sep 27 2004 Warren Togami <wtogami@redhat.com> 1.0.0-5
|
|
|
4133dc |
- djr fixed PIE
|
|
|
4133dc |
- added gnutls option, disabled and favoring mozilla-nss
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Sep 25 2004 Warren Togami <wtogami@redhat.com> 1.0.0-4
|
|
|
4133dc |
- PIE
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Sep 20 2004 Warren Togami <wtogami@redhat.com> 1.0.0-3
|
|
|
4133dc |
- 141: Jabber chat room list fix
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Sep 20 2004 Daniel Reed <djr@redhat.com> 1.0.0-2
|
|
|
4133dc |
- #132967 Remove GenericName
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Sep 18 2004 Warren Togami <wtogami@redhat.com> 1.0.0-1
|
|
|
4133dc |
- 1.0.0
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Sep 01 2004 Warren Togami <wtogami@redhat.com> 0.82.1-2
|
|
|
4133dc |
- enable SILC protocol
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Aug 26 2004 Warren Togami <wtogami@redhat.com> 0.82.1-1
|
|
|
4133dc |
- new upstream point release with crash fix and added translation
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Aug 25 2004 Warren Togami <wtogami@redhat.com> 0.82-2
|
|
|
4133dc |
- 140: Buddy icon pref changing crash fix
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Aug 25 2004 Warren Togami <wtogami@redhat.com> 0.82-1
|
|
|
4133dc |
- Update to 0.82 resolves several security issues and bugs
|
|
|
4133dc |
CAN-2004-0500, CAN-2004-0754, CAN-2004-0784, CAN-2004-0785
|
|
|
4133dc |
More details at http://gaim.sourceforge.net/security/
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Aug 16 2004 Warren Togami <wtogami@redhat.com> 0.81-7
|
|
|
4133dc |
- CVS backport 138: GTK Prefs bug fix
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Aug 15 2004 Warren Togami <wtogami@redhat.com> 0.81-6
|
|
|
4133dc |
- CVS backport 137: System Log viewer fd leak
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Aug 15 2004 Warren Togami <wtogami@redhat.com> 0.81-5
|
|
|
4133dc |
- fix substitution for browser back compat
|
|
|
4133dc |
- req fix for htmlview back compat
|
|
|
4133dc |
- update prefs.xml
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Aug 13 2004 Warren Togami <wtogami@redhat.com> 0.81-4
|
|
|
4133dc |
- conditionalize features for alternate target distributions
|
|
|
4133dc |
- remove unnecessary ExclusiveArch
|
|
|
4133dc |
- other cleanups
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Aug 11 2004 Warren Togami <wtogami@redhat.com> 0.81-3
|
|
|
4133dc |
- CVS backport 133: CAN-2004-0500 MSNLP buffer overflow
|
|
|
4133dc |
134: Select buddy icon in new account crash
|
|
|
4133dc |
135: Jabber join crash
|
|
|
4133dc |
136: Jabber tooltip fake self crash
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Aug 9 2004 Daniel Reed <djr@redhat.com> 0.81-2
|
|
|
4133dc |
- #125847 Change gaim.desktop names to "IM"
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Aug 05 2004 Warren Togami <wtogami@redhat.com> 0.81-1
|
|
|
4133dc |
- 0.81
|
|
|
4133dc |
- krb5-devel for Zephyr
|
|
|
4133dc |
- evolution-data-server-devel integration
|
|
|
4133dc |
plugin disabled by default because it seems very unstable
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Jul 18 2004 Warren Togami <wtogami@redhat.com> 0.80-3
|
|
|
4133dc |
- CVS backport 130, 131: MSN buddy scaling issue fix
|
|
|
4133dc |
132: Drag and Drop crash fix
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Jul 17 2004 Warren Togami <wtogami@redhat.com> 0.80-2
|
|
|
4133dc |
- CVS backport 129: IRC buddy list flood disconnect fix
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Jul 16 2004 Warren Togami <wtogami@redhat.com> 0.80-1
|
|
|
4133dc |
- update to 0.80
|
|
|
4133dc |
- enable ExtPlacement plugin by default
|
|
|
4133dc |
- Smiley Theme "Default" by default (bug fix)
|
|
|
4133dc |
- Insertions -> Control-{B/I/U} by default
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jun 28 2004 Warren Togami <wtogami@redhat.com> 0.79-2
|
|
|
4133dc |
- remove tray icon patch temporarily because it seems to cause more
|
|
|
4133dc |
problems than it solves.
|
|
|
4133dc |
- provide gaim-devel
|
|
|
4133dc |
- CVS backport 128: Cached buddy icons fix
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Jun 25 2004 Warren Togami <wtogami@redhat.com> 0.79-1
|
|
|
4133dc |
- update to 0.79
|
|
|
4133dc |
- update desktop patch
|
|
|
4133dc |
- update header and pkgconfig locations
|
|
|
4133dc |
- update default prefs
|
|
|
4133dc |
- FC3 sed behavior workaround
|
|
|
4133dc |
- temporarily disable evolution integration
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jun 22 2004 Warren Togami <wtogami@redhat.com> 0.78-8
|
|
|
4133dc |
- rebuilt
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jun 08 2004 Warren Togami <wtogami@redhat.com> 0.78-7
|
|
|
4133dc |
- CVS backport 125: MSN disconnect on non-fatal error fix
|
|
|
4133dc |
126: Paste html with img crash fix
|
|
|
4133dc |
127: Misplaced free fix
|
|
|
4133dc |
|
|
|
4133dc |
* Sat Jun 05 2004 Warren Togami <wtogami@redhat.com> 0.78-4
|
|
|
4133dc |
- CVS backport 123: jabber disconnect fix
|
|
|
4133dc |
124: log find click fix
|
|
|
4133dc |
|
|
|
4133dc |
* Sun May 30 2004 Warren Togami <wtogami@redhat.com> 0.78-2
|
|
|
4133dc |
- update to 0.78 (without SILC support for now)
|
|
|
4133dc |
|
|
|
4133dc |
* Sun May 09 2004 Warren Togami <wtogami@redhat.com> 0.77-7
|
|
|
4133dc |
- CVS backport 121: byte order badness and crashing copy & paste fix
|
|
|
4133dc |
122: history.so scroll to bottom in new tabs fix
|
|
|
4133dc |
|
|
|
4133dc |
* Tue May 04 2004 Warren Togami <wtogami@redhat.com> 0.77-6
|
|
|
4133dc |
- CVS backport 118: x86-64 yahoo auth fix
|
|
|
4133dc |
119: Copy/paste fixes for UCS-2 encoded selection
|
|
|
4133dc |
120: IRC reconnect segfault fix
|
|
|
4133dc |
- remove relnot.so plugin because it is unusable in FC
|
|
|
4133dc |
- Default enable logging and history.so plugin
|
|
|
4133dc |
enable autoreconnect plugin
|
|
|
4133dc |
- Fix Gnome Default url handler
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Apr 29 2004 Warren Togami <wtogami@redhat.com> 0.77-3
|
|
|
4133dc |
- remove gnome-open manual, since 0.77 has "GNOME Default" as default.
|
|
|
4133dc |
- update default prefs.xml, disable buddy icons in buddy list
|
|
|
4133dc |
- CVS backport 114: plugin prefs saving fix
|
|
|
4133dc |
115: autoreconn-suppress-dialogs
|
|
|
4133dc |
116: fix smileys in dialogs
|
|
|
4133dc |
117: gtk+ 2.0 compat
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Apr 25 2004 Warren Togami <wtogami@redhat.com> 0.77-1
|
|
|
4133dc |
- 0.77, remove cvs backports
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Apr 15 2004 Warren Togami <wtogami@redhat.com> 0.76-6
|
|
|
4133dc |
- CVS backports:
|
|
|
4133dc |
111 Prevent Crash during password change if blank fields
|
|
|
4133dc |
112 Prevent Crash if remote sends invalid characters
|
|
|
4133dc |
113 Enable /etc/gaim/prefs.xml defaults for new profiles
|
|
|
4133dc |
- Tray Icon enabled by default
|
|
|
4133dc |
- Relabel internal version with V-R
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Apr 14 2004 Warren Togami <wtogami@redhat.com> 0.76-5
|
|
|
4133dc |
- CVS backports:
|
|
|
4133dc |
102 Fix ^F keybinding when gtkrc is set to emacs mode
|
|
|
4133dc |
103 Add Missing File: evolution-1.5.x buildability
|
|
|
4133dc |
104 When MSN server intermittently has problems accessing buddy list, MSN will crash with 0.76
|
|
|
4133dc |
105, 106, 107 MSN Error reporting fixes
|
|
|
4133dc |
108 History plugin causes unnecessary horizontal scrollbars
|
|
|
4133dc |
109 Fix the text replace plugin
|
|
|
4133dc |
110 Prevent message sending while offline
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Apr 09 2004 Warren Togami <wtogami@redhat.com> 0.76-3
|
|
|
4133dc |
- CVS backport: Fix oscar tooltip misbehavior
|
|
|
4133dc |
Fix yahoo more
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Apr 01 2004 Warren Togami <wtogami@redhat.com> 0.76-2
|
|
|
4133dc |
- 0.76
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Mar 28 2004 Warren Togami <wtogami@redhat.com>
|
|
|
4133dc |
- CVS snapshot
|
|
|
4133dc |
- more spec cleanups
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Mar 16 2004 Warren Togami <wtogami@redhat.com>
|
|
|
4133dc |
- CVS snapshot, generated with automake-1.7.9
|
|
|
4133dc |
- update #4
|
|
|
4133dc |
- update #2 but disable
|
|
|
4133dc |
- #5 no longer needed
|
|
|
4133dc |
- default to gnome-open #6
|
|
|
4133dc |
- some spec cleanup
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
4133dc |
- rebuilt
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
4133dc |
- rebuilt
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Jan 23 2004 Christopher Blizzard <blizzard@redhat.com> 1:0.75-1.1.0
|
|
|
4133dc |
- Include patch that fixes a bunch of buffer-related problems, mostly
|
|
|
4133dc |
from nectar@freebsd.org and some of my own changes.
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 14 2004 Christopher Blizzard <blizzard@redhat.com> 1:0.75-0
|
|
|
4133dc |
- Update to 0.75.
|
|
|
4133dc |
- Remove mem leak patch that is already included in 0.75.
|
|
|
4133dc |
- Clean up a lot of old unused patches and old source tarballs.
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Dec 12 2003 Christopher Blizzard <blizzard@redhat.com> 1:0.74-10
|
|
|
4133dc |
- Add patch that fixes a large memory leak.
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Dec 04 2003 Christopher Blizzard <blizzard@redhat.com> 1:0.74-9
|
|
|
4133dc |
- Bump release to rebuild for fc2.
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Nov 25 2003 Christopher Blizzard <blizzard@redhat.com> 1:0.74-0
|
|
|
4133dc |
- Upgrade to 0.74
|
|
|
4133dc |
- Include libao-devel and startup-notification-devel to the
|
|
|
4133dc |
buildreq list
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Nov 03 2003 Christopher Blizzard <blizzard@redhat.com> 1:0.71-2
|
|
|
4133dc |
- Add gtk2-devel to the buildreq list.
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Oct 24 2003 Christopher Blizzard <blizzard@redhat.com> 1:0.71-2
|
|
|
4133dc |
- Include patch that should fix some input problems for ja_JP users
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Oct 17 2003 Christopher Blizzard <blizzard@redhat.com> 1:0.71-1
|
|
|
4133dc |
- Include patch that updates the tray icon to a more recent version
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Sep 29 2003 Christopher Blizzard <blizzard@redhat.com> 1:0.70-0
|
|
|
4133dc |
- Update to 0.70
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Sep 04 2003 Christopher Blizzard <blizzard@redhat.com> 1:0.68-0
|
|
|
4133dc |
- Update to 0.68
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Aug 26 2003 Christopher Blizzard <blizzard@redhat.com> 1:0.66-2
|
|
|
4133dc |
- Change Instant Messenger to Messaging Client
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jul 23 2003 Jeremy Katz <katzj@redhat.com> 1:0.66-1
|
|
|
4133dc |
- 0.66
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jul 17 2003 Matt Wilson <msw@redhat.com> 1:0.65-1
|
|
|
4133dc |
- 0.65
|
|
|
4133dc |
- don't include .a or .la files
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jul 15 2003 Matt Wilson <msw@redhat.com> 1:0.64-2
|
|
|
4133dc |
- rebuild against gtkspell
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
4133dc |
- rebuilt
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jun 04 2003 Christopher Blizzard <blizzard@redhat.com> 1:0.64-0
|
|
|
4133dc |
- 0.64
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Apr 14 2003 Matt Wilson <msw@redhat.com> 1:0.61-1
|
|
|
4133dc |
- 0.61
|
|
|
4133dc |
- remove prefs patch, no longer needed
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Apr 9 2003 Matt Wilson <msw@redhat.com> 1:0.59.8-1
|
|
|
4133dc |
- use system libtool (#88340)
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 29 2003 Christopher Blizzard <blizzard@redhat.com> 0.59.8-0
|
|
|
4133dc |
- Update to 0.59.8
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- rebuilt
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Dec 18 2002 Elliot Lee <sopwith@redhat.com> 0.59-11
|
|
|
4133dc |
- Add libtoolize etc. steps
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Dec 17 2002 Elliot Lee <sopwith@redhat.com> 0.59-10
|
|
|
4133dc |
- Rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Nov 18 2002 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- build on all arches
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Aug 09 2002 Christopher Blizzard <blizzard@redhat.com> 0.59-7
|
|
|
4133dc |
- Include patch that uses htmlview instead of calling Netscape
|
|
|
4133dc |
directly
|
|
|
4133dc |
- Include patch that turns off the buddy ticker and changes the button
|
|
|
4133dc |
look to the (sane) default.
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Aug 01 2002 Christopher Blizzard <blizzard@redhat.com>
|
|
|
4133dc |
- Fix .desktop file, and put it in the right place.
|
|
|
4133dc |
- More .desktop file fixes
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jun 25 2002 Christopher Blizzard <blizzard@redhat.com>
|
|
|
4133dc |
- Update to 0.59.
|
|
|
4133dc |
- Disable perl for now.
|
|
|
4133dc |
|
|
|
4133dc |
* Sun May 26 2002 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- automated rebuild
|
|
|
4133dc |
|
|
|
4133dc |
* Fri May 24 2002 Matt Wilson <msw@redhat.com> 0.58-1
|
|
|
4133dc |
- 0.58
|
|
|
4133dc |
- remove applet
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Mar 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.53-1
|
|
|
4133dc |
- Langify
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Mar 13 2002 Christopher Blizzard <blizzard@redhat.com>
|
|
|
4133dc |
- update 0.53
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Feb 21 2002 Christopher Blizzard <blizzard@redhat.com>
|
|
|
4133dc |
- update to 0.52
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jan 29 2002 Christopher Blizzard <blizzard@redhat.com>
|
|
|
4133dc |
- update to 0.51
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Sep 14 2001 Matt Wilson <msw@redhat.com>
|
|
|
4133dc |
- update to 0.43
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Aug 03 2001 Christopher Blizzard <blizzard@redhat.com>
|
|
|
4133dc |
- Add BuildRequires for gnome-libs-devel (bug #44739)
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jul 02 2001 Christopher Blizzard <blizzard@redhat.com>
|
|
|
4133dc |
- Add BuildRequires for gnome-core-devel (bug #44739)
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
|
|
|
4133dc |
- Bump release + rebuild.
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Feb 15 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
|
4133dc |
- make it compile
|
|
|
4133dc |
|
|
|
4133dc |
* Sun Feb 11 2001 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- updated to 0.11.0pre4 (bug fixes)
|
|
|
4133dc |
- applied Bero's konqueror patch to fix kfm->konq
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Dec 5 2000 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- updated to 0.11.0pre2
|
|
|
4133dc |
- enable gnome support
|
|
|
4133dc |
- updated ispell to aspell patch
|
|
|
4133dc |
- cleaned up file list
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Nov 16 2000 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- updated to 0.10.3
|
|
|
4133dc |
|
|
|
4133dc |
* Fri Nov 10 2000 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- update to 0.10.2
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Sep 11 2000 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- some ideas taken from the package available at the gaim website, mainly to install the applet stuff too.
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Aug 9 2000 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- added Serial so that we can upgrade from Helix packages from 6.2
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jul 24 2000 Prospector <prospector@redhat.com>
|
|
|
4133dc |
- rebuilt
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jul 18 2000 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- changed default spell checker to aspell from ispell, patched.
|
|
|
4133dc |
- requires aspell
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jul 10 2000 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- rebuilt
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jun 22 2000 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- fixed problems with ldconfig PreReq, shouls have been /sbin/ldconfig
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jun 12 2000 Preston Brown <pbrown@redhat.com>
|
|
|
4133dc |
- 0.9.19
|
|
|
4133dc |
- fix ldconfig stuff
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Jun 1 2000 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- cleaned up spec for use with RPM 4.0 (al la _sysconfdir _datadir etc)
|
|
|
4133dc |
- update to 0.9.17
|
|
|
4133dc |
- yay! a man page!
|
|
|
4133dc |
|
|
|
4133dc |
* Thu May 25 2000 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- we left a bunch of stuff out, pixmaps, plugins. Fixed
|
|
|
4133dc |
- added applnk entry
|
|
|
4133dc |
|
|
|
4133dc |
* Wed May 10 2000 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- updated to 0.9.15
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Apr 24 2000 Matt Wilson <msw@redhat.com>
|
|
|
4133dc |
- updated to 0.9.14
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Apr 24 2000 Matt Wilson <msw@redhat.com>
|
|
|
4133dc |
- updated to 0.9.13
|
|
|
4133dc |
|
|
|
4133dc |
* Thu Feb 10 2000 Matt Wilson <msw@redhat.com>
|
|
|
4133dc |
- added patch to prevent floating point errors in lag-o-meter update
|
|
|
4133dc |
code
|
|
|
4133dc |
|
|
|
4133dc |
* Wed Nov 10 1999 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- updated to 0.9.10
|
|
|
4133dc |
|
|
|
4133dc |
* Tue Jul 13 1999 Tim Powers <timp@redhat.com>
|
|
|
4133dc |
- rebuilt and put into Powertools 6.1
|
|
|
4133dc |
|
|
|
4133dc |
* Mon Jul 12 1999 Dale Lovelace <dale@redhat.com>
|
|
|
4133dc |
- First RPM Build
|