- Upgrade to 2.27.2
This commit is contained in:
parent
321240334a
commit
945bf3d15b
@ -1 +1 @@
|
|||||||
gnome-bluetooth-2.27.1.tar.bz2
|
gnome-bluetooth-2.27.2.tar.bz2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Name: gnome-bluetooth
|
Name: gnome-bluetooth
|
||||||
Version: 2.27.1
|
Version: 2.27.2
|
||||||
Release: 4%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Bluetooth graphical utilities
|
Summary: Bluetooth graphical utilities
|
||||||
|
|
||||||
Group: Applications/Communications
|
Group: Applications/Communications
|
||||||
@ -31,8 +31,6 @@ Requires: notification-daemon
|
|||||||
Requires(post): desktop-file-utils
|
Requires(post): desktop-file-utils
|
||||||
Requires(postun): desktop-file-utils
|
Requires(postun): desktop-file-utils
|
||||||
|
|
||||||
Patch0: sendto-connect-fix.patch
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The gnome-bluetooth package contains graphical utilities to setup,
|
The gnome-bluetooth package contains graphical utilities to setup,
|
||||||
monitor and use Bluetooth devices.
|
monitor and use Bluetooth devices.
|
||||||
@ -62,7 +60,6 @@ for writing applications that require a Bluetooth device selection widget.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n gnome-bluetooth-%{version}
|
%setup -q -n gnome-bluetooth-%{version}
|
||||||
%patch0 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-desktop-update --disable-icon-update
|
%configure --disable-desktop-update --disable-icon-update
|
||||||
@ -160,6 +157,9 @@ fi
|
|||||||
%{_datadir}/gtk-doc/html/gnome-bluetooth/
|
%{_datadir}/gtk-doc/html/gnome-bluetooth/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Apr 08 2009 - Bastien Nocera <bnocera@redhat.com> - 2.27.2-1
|
||||||
|
- Upgrade to 2.27.2
|
||||||
|
|
||||||
* Tue Mar 10 2009 - Bastien Nocera <bnocera@redhat.com> - 2.27.1-4
|
* Tue Mar 10 2009 - Bastien Nocera <bnocera@redhat.com> - 2.27.1-4
|
||||||
- Make the -libs-devel obsolete and provide the -devel package, so
|
- Make the -libs-devel obsolete and provide the -devel package, so
|
||||||
we can actually upgrade...
|
we can actually upgrade...
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
--- trunk/sendto/main.c 2009/03/04 18:42:45 457
|
|
||||||
+++ trunk/sendto/main.c 2009/03/05 00:12:12 458
|
|
||||||
@@ -369,12 +369,12 @@
|
|
||||||
GTK_RESPONSE_CLOSE, TRUE);
|
|
||||||
}
|
|
||||||
|
|
||||||
-static void session_connect_error (DBusGProxy *proxy, DBusGProxy *session_obj, const char *error_name,
|
|
||||||
+static void session_connect_error (DBusGProxy *proxy, const char *session_obj, const char *error_name,
|
|
||||||
const char *error_message, gpointer user_data)
|
|
||||||
{
|
|
||||||
gchar *text;
|
|
||||||
|
|
||||||
- if (session_obj != session_proxy)
|
|
||||||
+ if (strcmp (session_obj, dbus_g_proxy_get_path (session_proxy)) != 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progress),
|
|
||||||
@@ -388,9 +388,9 @@
|
|
||||||
GTK_RESPONSE_CLOSE, TRUE);
|
|
||||||
}
|
|
||||||
|
|
||||||
-static void session_connected(DBusGProxy *proxy, DBusGProxy *session_obj, gpointer user_data)
|
|
||||||
+static void session_connected(DBusGProxy *proxy, const char *session_obj, gpointer user_data)
|
|
||||||
{
|
|
||||||
- if (session_obj != session_proxy)
|
|
||||||
+ if (strcmp (session_obj, dbus_g_proxy_get_path (session_proxy)) != 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progress), NULL);
|
|
Loading…
Reference in New Issue
Block a user