From 46cec6b8056f4e96756483cedc0b14b749ff7856 Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Fri, 1 Mar 2013 17:44:38 -0500 Subject: Port to timedated instead of gnome-settings-daemon datetime mechanism --- data/datetime-dialog.ui | 2 +- src/datetime-prefs.c | 115 ++++++++++++++---------------------------------- src/datetime-service.c | 12 ++--- 3 files changed, 41 insertions(+), 88 deletions(-) diff --git a/data/datetime-dialog.ui b/data/datetime-dialog.ui index 2b4cf67..430f77f 100644 --- a/data/datetime-dialog.ui +++ b/data/datetime-dialog.ui @@ -294,7 +294,7 @@ _Automatically from the Internet True - False + True True False False diff --git a/src/datetime-prefs.c b/src/datetime-prefs.c index 952dce1..196b95f 100644 --- a/src/datetime-prefs.c +++ b/src/datetime-prefs.c @@ -70,8 +70,6 @@ struct _IndicatorDatetimePanelPrivate gboolean changing_time; GtkWidget * loc_dlg; CcTimezoneCompletion * completion; - GCancellable * tz_query_cancel; - GCancellable * ntp_query_cancel; }; struct _IndicatorDatetimePanelClass @@ -193,7 +191,7 @@ dbus_set_answered (GObject *object, GAsyncResult *res, gpointer command) GVariant * answers = g_dbus_proxy_call_finish (G_DBUS_PROXY (object), res, &error); if (error != NULL) { - g_warning("Could not set '%s' for SettingsDaemon: %s", (gchar *)command, error->message); + g_warning("Could not set '%s' using timedated: %s", (gchar *)command, error->message); g_error_free(error); return; } @@ -206,33 +204,8 @@ toggle_ntp (GtkWidget * radio, GParamSpec * pspec, IndicatorDatetimePanel * self { gboolean active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (radio)); - g_dbus_proxy_call (self->priv->proxy, "SetUsingNtp", g_variant_new ("(b)", active), - G_DBUS_CALL_FLAGS_NONE, -1, NULL, dbus_set_answered, "using_ntp"); -} - -static void -ntp_query_answered (GObject *object, GAsyncResult *res, IndicatorDatetimePanel * self) -{ - GError * error = NULL; - GVariant * answers = g_dbus_proxy_call_finish (G_DBUS_PROXY (object), res, &error); - - g_clear_object (&self->priv->ntp_query_cancel); - - if (error != NULL) { - g_warning("Could not query DBus proxy for SettingsDaemon: %s", error->message); - g_error_free(error); - return; - } - - gboolean can_use_ntp, is_using_ntp; - g_variant_get (answers, "(bb)", &can_use_ntp, &is_using_ntp); - - gtk_widget_set_sensitive (GTK_WIDGET (self->priv->auto_radio), can_use_ntp); - gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (self->priv->auto_radio), is_using_ntp); - - g_signal_connect (self->priv->auto_radio, "notify::active", G_CALLBACK (toggle_ntp), self); - - g_variant_unref (answers); + g_dbus_proxy_call (self->priv->proxy, "SetNTP", g_variant_new ("(bb)", active, TRUE), + G_DBUS_CALL_FLAGS_NONE, -1, NULL, dbus_set_answered, "NTP"); } static void @@ -255,7 +228,7 @@ tz_changed (CcTimezoneMap * map, CcTimezoneLocation * location, IndicatorDatetim gchar * zone; g_object_get (location, "zone", &zone, NULL); - g_dbus_proxy_call (self->priv->proxy, "SetTimezone", g_variant_new ("(s)", zone), + g_dbus_proxy_call (self->priv->proxy, "SetTimezone", g_variant_new ("(sb)", zone, TRUE), G_DBUS_CALL_FLAGS_NONE, -1, NULL, dbus_set_answered, "timezone"); sync_entry (self, zone); @@ -263,56 +236,46 @@ tz_changed (CcTimezoneMap * map, CcTimezoneLocation * location, IndicatorDatetim g_free (zone); } -static void -tz_query_answered (GObject *object, GAsyncResult *res, IndicatorDatetimePanel * self) -{ - GError * error = NULL; - GVariant * answers = g_dbus_proxy_call_finish (G_DBUS_PROXY (object), res, &error); - - g_clear_object (&self->priv->tz_query_cancel); - - if (error != NULL) { - g_warning("Could not query DBus proxy for SettingsDaemon: %s", error->message); - g_error_free(error); - return; - } - - const gchar * timezone; - g_variant_get (answers, "(&s)", &timezone); - - cc_timezone_map_set_timezone (self->priv->tzmap, timezone); - - sync_entry (self, timezone); - g_signal_connect (self->priv->tzmap, "location-changed", G_CALLBACK (tz_changed), self); - - g_variant_unref (answers); -} - static void proxy_ready (GObject *object, GAsyncResult *res, IndicatorDatetimePanel * self) { GError * error = NULL; IndicatorDatetimePanelPrivate * priv = self->priv; + GVariant *value; self->priv->proxy = g_dbus_proxy_new_for_bus_finish (res, &error); if (error != NULL) { - g_critical("Could not grab DBus proxy for SettingsDaemon: %s", error->message); + g_critical("Could not grab DBus proxy for timedated: %s", error->message); g_error_free(error); return; } /* And now, do initial proxy configuration */ - if (priv->ntp_query_cancel == NULL) { - priv->ntp_query_cancel = g_cancellable_new(); - g_dbus_proxy_call (priv->proxy, "GetUsingNtp", NULL, G_DBUS_CALL_FLAGS_NONE, -1, - priv->ntp_query_cancel, (GAsyncReadyCallback)ntp_query_answered, self); - } - if (priv->tz_query_cancel == NULL) { - priv->tz_query_cancel = g_cancellable_new(); - g_dbus_proxy_call (priv->proxy, "GetTimezone", NULL, G_DBUS_CALL_FLAGS_NONE, -1, - priv->tz_query_cancel, (GAsyncReadyCallback)tz_query_answered, self); - } + value = g_dbus_proxy_get_cached_property (priv->proxy, "NTP"); + if (value != NULL) + { + if (g_variant_is_of_type (value, G_VARIANT_TYPE_BOOLEAN)) + { + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->auto_radio), g_variant_get_boolean (value)); + g_signal_connect (priv->auto_radio, "notify::active", G_CALLBACK (toggle_ntp), self); + } + g_variant_unref (value); + } + + value = g_dbus_proxy_get_cached_property (priv->proxy, "Timezone"); + if (value != NULL) + { + if (g_variant_is_of_type (value, G_VARIANT_TYPE_STRING)) + { + const gchar *timezone = g_variant_get_string (value, NULL); + + cc_timezone_map_set_timezone (priv->tzmap, timezone); + sync_entry (self, timezone); + g_signal_connect (priv->tzmap, "location-changed", G_CALLBACK (tz_changed), self); + } + g_variant_unref (value); + } } static void @@ -693,7 +656,7 @@ indicator_datetime_panel_init (IndicatorDatetimePanel * self) gtk_container_add (GTK_CONTAINER (alignment), polkit_button); gtk_box_pack_start (GTK_BOX (WIG ("timeDateBox")), alignment, FALSE, TRUE, 0); - const gchar * polkit_name = "org.gnome.settingsdaemon.datetimemechanism.configure"; + const gchar * polkit_name = "org.gnome.controlcenter.datetime.configure"; polkit_permission_new (polkit_name, NULL, NULL, polkit_perm_ready, polkit_button); /* Add map */ @@ -760,9 +723,9 @@ indicator_datetime_panel_init (IndicatorDatetimePanel * self) /* Grab proxy for settings daemon */ g_dbus_proxy_new_for_bus (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, NULL, - "org.gnome.SettingsDaemon.DateTimeMechanism", - "/", - "org.gnome.SettingsDaemon.DateTimeMechanism", + "org.freedesktop.timedate1", + "/org/freedesktop/timedate1", + "org.freedesktop.timedate1", NULL, (GAsyncReadyCallback)proxy_ready, self); /* Grab proxy for datetime service, to see if it's running. It would @@ -792,16 +755,6 @@ indicator_datetime_panel_dispose (GObject * object) g_clear_object (&priv->builder); g_clear_object (&priv->proxy); - if (priv->tz_query_cancel != NULL) { - g_cancellable_cancel (priv->tz_query_cancel); - g_clear_object (&priv->tz_query_cancel); - } - - if (priv->ntp_query_cancel != NULL) { - g_cancellable_cancel (priv->ntp_query_cancel); - g_clear_object (&priv->ntp_query_cancel); - } - if (priv->loc_dlg) { gtk_widget_destroy (priv->loc_dlg); priv->loc_dlg = NULL; diff --git a/src/datetime-service.c b/src/datetime-service.c index 56ea51c..6f3cf7b 100644 --- a/src/datetime-service.c +++ b/src/datetime-service.c @@ -277,7 +277,7 @@ quick_set_tz_cb (GObject *object, GAsyncResult *res, gpointer data) GVariant * answers = g_dbus_proxy_call_finish (G_DBUS_PROXY (object), res, &error); if (error != NULL) { - g_warning("Could not set timezone for SettingsDaemon: %s", error->message); + g_warning("Could not set timezone using timedated: %s", error->message); g_clear_error (&error); return; } @@ -293,13 +293,13 @@ quick_set_tz_proxy_cb (GObject *object, GAsyncResult *res, gpointer zone) GDBusProxy * proxy = g_dbus_proxy_new_for_bus_finish (res, &error); if (error != NULL) { - g_warning("Could not grab DBus proxy for SettingsDaemon: %s", error->message); + g_warning("Could not grab DBus proxy for timedated: %s", error->message); g_clear_error (&error); g_free (zone); return; } - g_dbus_proxy_call (proxy, "SetTimezone", g_variant_new ("(s)", zone), + g_dbus_proxy_call (proxy, "SetTimezone", g_variant_new ("(sb)", zone, TRUE), G_DBUS_CALL_FLAGS_NONE, -1, NULL, quick_set_tz_cb, NULL); g_free (zone); g_object_unref (proxy); @@ -323,9 +323,9 @@ quick_set_tz (DbusmenuMenuitem * menuitem, guint timestamp, gpointer user_data) g_object_unref (conf); g_dbus_proxy_new_for_bus (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, NULL, - "org.gnome.SettingsDaemon.DateTimeMechanism", - "/", - "org.gnome.SettingsDaemon.DateTimeMechanism", + "org.freedesktop.timedate1", + "/org/freedesktop/timedate1", + "org.freedesktop.timedate1", NULL, quick_set_tz_proxy_cb, g_strdup (tz)); return; -- cgit v1.2.3 From 8b7e3b5283cc6bd28d023f4135f54656c6aca282 Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Mon, 4 Mar 2013 16:18:10 -0500 Subject: Send proper arguments for SetTime call vs. the gnome-settings-daemon DateTimeMechanism, the systemd version adds an extra two boolean arguments and wants time in microseconds instead of seconds. Make sure we're doing that properly. --- src/datetime-prefs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/datetime-prefs.c b/src/datetime-prefs.c index 196b95f..2c6998a 100644 --- a/src/datetime-prefs.c +++ b/src/datetime-prefs.c @@ -322,7 +322,8 @@ save_time (IndicatorDatetimePanel * self) { if (self->priv->user_edited_time) { gdouble current_value = gtk_spin_button_get_value (GTK_SPIN_BUTTON (self->priv->date_spin)); - g_dbus_proxy_call (self->priv->proxy, "SetTime", g_variant_new ("(x)", (guint64)current_value), + g_dbus_proxy_call (self->priv->proxy, "SetTime", + g_variant_new ("(xbb)", (gint64) (current_value * G_TIME_SPAN_SECOND), FALSE, TRUE), G_DBUS_CALL_FLAGS_NONE, -1, NULL, dbus_set_answered, "time"); } self->priv->user_edited_time = FALSE; -- cgit v1.2.3 From 028e652e4dc2e5ec602654faeba366b777935086 Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Mon, 4 Mar 2013 17:43:08 -0500 Subject: preferences: Add CanNTP support If timedated has the CanNTP property then use it to set the sensitivity of the "Automatically from the internet" radio. This property is only available in new versions of systemd, so if the property is not set, leave the widget sensitive. --- src/datetime-prefs.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/datetime-prefs.c b/src/datetime-prefs.c index 2c6998a..13c0fc2 100644 --- a/src/datetime-prefs.c +++ b/src/datetime-prefs.c @@ -252,6 +252,17 @@ proxy_ready (GObject *object, GAsyncResult *res, IndicatorDatetimePanel * self) } /* And now, do initial proxy configuration */ + value = g_dbus_proxy_get_cached_property (priv->proxy, "CanNTP"); + if (value != NULL) + { + if (g_variant_is_of_type (value, G_VARIANT_TYPE_BOOLEAN)) + { + gtk_widget_set_sensitive (priv->auto_radio, g_variant_get_boolean (value)); + g_signal_connect (priv->auto_radio, "notify::active", G_CALLBACK (toggle_ntp), self); + } + g_variant_unref (value); + } + value = g_dbus_proxy_get_cached_property (priv->proxy, "NTP"); if (value != NULL) { -- cgit v1.2.3 From 75073d4d01add8591336f9d16f8668f3d4807ca6 Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Mon, 4 Mar 2013 18:00:13 -0500 Subject: prefs: remove second signal connection for toggle_ntp Copy/paste error. Thanks Charles. :) --- src/datetime-prefs.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/datetime-prefs.c b/src/datetime-prefs.c index 13c0fc2..ddcc43f 100644 --- a/src/datetime-prefs.c +++ b/src/datetime-prefs.c @@ -256,10 +256,7 @@ proxy_ready (GObject *object, GAsyncResult *res, IndicatorDatetimePanel * self) if (value != NULL) { if (g_variant_is_of_type (value, G_VARIANT_TYPE_BOOLEAN)) - { - gtk_widget_set_sensitive (priv->auto_radio, g_variant_get_boolean (value)); - g_signal_connect (priv->auto_radio, "notify::active", G_CALLBACK (toggle_ntp), self); - } + gtk_widget_set_sensitive (priv->auto_radio, g_variant_get_boolean (value)); g_variant_unref (value); } -- cgit v1.2.3 From a82bb8ab4d50eec7a1cdc3b9b8438834fb22442e Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Mon, 18 Mar 2013 13:45:27 +0000 Subject: Use NotifyResume from UPower to trigger the clock adjustment on resume Removes a ConsoleKit dependency. --- src/datetime-service.c | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/src/datetime-service.c b/src/datetime-service.c index 56ea51c..b0182c9 100644 --- a/src/datetime-service.c +++ b/src/datetime-service.c @@ -1154,13 +1154,10 @@ static void session_active_change_cb (GDBusProxy * proxy, gchar * sender_name, gchar * signal_name, GVariant * parameters, gpointer user_data) { - // Just returned from suspend - if (g_strcmp0(signal_name, "SystemIdleHintChanged") == 0) { - gboolean idle = FALSE; - g_variant_get(parameters, "(b)", &idle); - if (!idle) { - on_clock_skew (); - } + // Just returned from suspend. Don't care about the sleep type. + if (g_strcmp0(signal_name, "NotifyResume") == 0) { + g_debug ("System has been resumed; adjusting clock"); + on_clock_skew (); } return; } @@ -1174,7 +1171,7 @@ system_proxy_cb (GObject * object, GAsyncResult * res, gpointer user_data) GDBusProxy * proxy = g_dbus_proxy_new_for_bus_finish(res, &error); if (error != NULL) { - g_warning("Could not grab DBus proxy for ConsoleKit: %s", error->message); + g_warning("Could not grab DBus proxy for UPower: %s", error->message); g_clear_error (&error); return; } @@ -1482,9 +1479,9 @@ main (int argc, char ** argv) g_dbus_proxy_new_for_bus (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, NULL, - "org.freedesktop.ConsoleKit", - "/org/freedesktop/ConsoleKit/Manager", - "org.freedesktop.ConsoleKit.Manager", + "org.freedesktop.UPower", + "/org/freedesktop/UPower", + "org.freedesktop.UPower", NULL, system_proxy_cb, dbus); mainloop = g_main_loop_new(NULL, FALSE); -- cgit v1.2.3 From 11b887fe74454b5a506a8f113cdecf7750aebbf8 Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Mon, 18 Mar 2013 13:53:11 +0000 Subject: Don't build with silent rules --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index f98cf93..a350b13 100755 --- a/debian/rules +++ b/debian/rules @@ -9,7 +9,7 @@ override_dh_autoreconf: NOCONFIGURE=1 dh_autoreconf ./autogen.sh override_dh_auto_configure: - dh_auto_configure -- --disable-static + dh_auto_configure -- --disable-static --disable-silent-rules override_dh_install: find debian/indicator-datetime -name \*.la -delete -- cgit v1.2.3 From bfed177813a2ca323e092511cc8fb2ffd413b127 Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Tue, 19 Mar 2013 09:53:10 +0000 Subject: Use logind instead of UPower as the UPower interface we're relying on will go away --- src/datetime-service.c | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/datetime-service.c b/src/datetime-service.c index b0182c9..549a45c 100644 --- a/src/datetime-service.c +++ b/src/datetime-service.c @@ -1154,10 +1154,14 @@ static void session_active_change_cb (GDBusProxy * proxy, gchar * sender_name, gchar * signal_name, GVariant * parameters, gpointer user_data) { - // Just returned from suspend. Don't care about the sleep type. - if (g_strcmp0(signal_name, "NotifyResume") == 0) { - g_debug ("System has been resumed; adjusting clock"); - on_clock_skew (); + // Suspending / returning from suspend (true / false) + if (g_strcmp0(signal_name, "PrepareForSleep") == 0) { + gboolean sleeping = FALSE; + g_variant_get (parameters, "(b)", &sleeping); + if (!sleeping) { + g_debug ("System has been resumed; adjusting clock"); + on_clock_skew (); + } } return; } @@ -1171,7 +1175,7 @@ system_proxy_cb (GObject * object, GAsyncResult * res, gpointer user_data) GDBusProxy * proxy = g_dbus_proxy_new_for_bus_finish(res, &error); if (error != NULL) { - g_warning("Could not grab DBus proxy for UPower: %s", error->message); + g_warning("Could not grab DBus proxy for logind: %s", error->message); g_clear_error (&error); return; } @@ -1479,9 +1483,9 @@ main (int argc, char ** argv) g_dbus_proxy_new_for_bus (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, NULL, - "org.freedesktop.UPower", - "/org/freedesktop/UPower", - "org.freedesktop.UPower", + "org.freedesktop.login1", + "/org/freedesktop/login1", + "org.freedesktop.login1.Manager", NULL, system_proxy_cb, dbus); mainloop = g_main_loop_new(NULL, FALSE); -- cgit v1.2.3 From 271cbd1d1ec1916bb80308908d940d43d7c6d7ee Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Tue, 19 Mar 2013 12:01:43 +0000 Subject: Whitespace fixes --- src/datetime-service.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/datetime-service.c b/src/datetime-service.c index 549a45c..fd77948 100644 --- a/src/datetime-service.c +++ b/src/datetime-service.c @@ -1156,12 +1156,12 @@ session_active_change_cb (GDBusProxy * proxy, gchar * sender_name, gchar * signa { // Suspending / returning from suspend (true / false) if (g_strcmp0(signal_name, "PrepareForSleep") == 0) { - gboolean sleeping = FALSE; - g_variant_get (parameters, "(b)", &sleeping); - if (!sleeping) { - g_debug ("System has been resumed; adjusting clock"); - on_clock_skew (); - } + gboolean sleeping = FALSE; + g_variant_get (parameters, "(b)", &sleeping); + if (!sleeping) { + g_debug ("System has been resumed; adjusting clock"); + on_clock_skew (); + } } return; } -- cgit v1.2.3 From da37d3e2d4c214313d68a7efd56fad5f58dacf4b Mon Sep 17 00:00:00 2001 From: Sebastien Bacher Date: Tue, 26 Mar 2013 19:57:59 +0100 Subject: * Use systemd's service backend, ffe lp: #1153567 * debian/control: depends on systemd-services and systemd-shim --- debian/changelog | 7 +++++++ debian/control | 2 ++ 2 files changed, 9 insertions(+) diff --git a/debian/changelog b/debian/changelog index 16d965b..76a8a12 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +indicator-datetime (12.10.3daily13.02.06-0ubuntu2) UNRELEASED; urgency=low + + * Use systemd's service backend, ffe lp: #1153567 + * debian/control: depends on systemd-services and systemd-shim + + -- Sebastien Bacher Tue, 26 Mar 2013 19:53:55 +0100 + indicator-datetime (12.10.3daily13.02.06-0ubuntu1) raring; urgency=low [ Colin Watson ] diff --git a/debian/control b/debian/control index 2117e9b..7645232 100644 --- a/debian/control +++ b/debian/control @@ -40,6 +40,8 @@ Depends: ${shlibs:Depends}, ${misc:Depends}, gnome-control-center, geoclue-ubuntu-geoip | geoclue-provider, + systemd-services, + systemd-shim Recommends: indicator-applet | indicator-renderer, evolution-data-server, Description: Simple clock -- cgit v1.2.3 From 3f109ddf68bdf94c0948ee2717e07a0d50cfd11e Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Thu, 28 Mar 2013 08:44:47 -0400 Subject: merge back upload for 12.10.3daily13.03.26-0ubuntu1 --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index a330828..3223098 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -indicator-datetime (12.10.3daily13.03.07-0ubuntu2) UNRELEASED; urgency=low +indicator-datetime (12.10.3daily13.03.26-0ubuntu1) raring; urgency=low * Use systemd's service backend, ffe lp: #1153567 * debian/control: depends on systemd-services and systemd-shim -- cgit v1.2.3 From 228712eb6e20a07c7eaca3f4c06d782c341e6f54 Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Thu, 2 May 2013 11:01:49 -0700 Subject: Merge changes for saucy: missing 12.10.3daily13.03.26-0ubuntu1. --- debian/changelog | 7 +++++++ debian/control | 2 ++ 2 files changed, 9 insertions(+) diff --git a/debian/changelog b/debian/changelog index 3d4bafe..3223098 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +indicator-datetime (12.10.3daily13.03.26-0ubuntu1) raring; urgency=low + + * Use systemd's service backend, ffe lp: #1153567 + * debian/control: depends on systemd-services and systemd-shim + + -- Sebastien Bacher Tue, 26 Mar 2013 19:53:55 +0100 + indicator-datetime (12.10.3daily13.03.07-0ubuntu1) raring; urgency=low [ Michael Terry ] diff --git a/debian/control b/debian/control index 2117e9b..41bdb0f 100644 --- a/debian/control +++ b/debian/control @@ -40,6 +40,8 @@ Depends: ${shlibs:Depends}, ${misc:Depends}, gnome-control-center, geoclue-ubuntu-geoip | geoclue-provider, + systemd-services, + systemd-shim, Recommends: indicator-applet | indicator-renderer, evolution-data-server, Description: Simple clock -- cgit v1.2.3 From cba37f6b5fdf1bb15068805553c9ed3a60af9a16 Mon Sep 17 00:00:00 2001 From: Automatic PS uploader Date: Thu, 2 May 2013 22:59:11 +0000 Subject: Releasing 12.10.3daily13.05.02-0ubuntu1, based on r213 --- debian/changelog | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/debian/changelog b/debian/changelog index 3223098..9b37333 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +indicator-datetime (12.10.3daily13.05.02-0ubuntu1) saucy; urgency=low + + [ Charles Kerr ] + * g_critical hit when datetime indicator first shown (LP: #1175392) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 213 + + -- Ubuntu daily release Thu, 02 May 2013 22:59:08 +0000 + indicator-datetime (12.10.3daily13.03.26-0ubuntu1) raring; urgency=low * Use systemd's service backend, ffe lp: #1153567 -- cgit v1.2.3 From b7c4f29fb4c2260ed01213a4a045eae7b081bc91 Mon Sep 17 00:00:00 2001 From: Automatic PS uploader Date: Mon, 6 May 2013 19:23:23 +0000 Subject: Releasing 12.10.3daily13.05.06.1-0ubuntu1, based on r216 --- debian/changelog | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/debian/changelog b/debian/changelog index 9b37333..7d949a1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,21 @@ +indicator-datetime (12.10.3daily13.05.06.1-0ubuntu1) saucy; urgency=low + + [ Sebastien Bacher ] + * [FFE] Use systemd-services rather than ubuntu-system-service + systemdcompatibility code (LP: #1153567) + + [ Iain Lane ] + * Stop using ConsoleKit (LP: #1156613) + + [ Mathieu Trudel-Lapierre ] + * [FFE] Use systemd-services rather than ubuntu-system-service + systemdcompatibility code (LP: #1153567) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 216 + + -- Ubuntu daily release Mon, 06 May 2013 19:23:23 +0000 + indicator-datetime (12.10.3daily13.05.02-0ubuntu1) saucy; urgency=low [ Charles Kerr ] -- cgit v1.2.3