From 7a59449eb87aa2594e1e2872cf9ff3a906bd72ff Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Tue, 5 Mar 2013 10:16:44 -0500 Subject: Make use of XORG_GTEST_LDFLAGS that xorg-gtest can export to know whether there are extra libraries we should link against. --- tests/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index f6387a0..ef7d23d 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -26,6 +26,7 @@ TEST_LIBS = \ $(top_builddir)/src/.libs/libdatetime.so \ $(INDICATOR_LIBS) \ $(COVERAGE_LDFLAGS) \ + $(XORG_GTEST_LDFLAGS) \ libgtest.a TEST_CPPFLAGS = \ -- cgit v1.2.3 From 3e0a4a9b491de8b0159b4076ffa545c68dd9fd98 Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Tue, 5 Mar 2013 16:45:40 -0500 Subject: Because larsu. --- tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index ef7d23d..8ca0cbc 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -26,7 +26,7 @@ TEST_LIBS = \ $(top_builddir)/src/.libs/libdatetime.so \ $(INDICATOR_LIBS) \ $(COVERAGE_LDFLAGS) \ - $(XORG_GTEST_LDFLAGS) \ + $(XORG_GTEST_LDFLAGS) \ libgtest.a TEST_CPPFLAGS = \ -- cgit v1.2.3 From 20bb0ac55eb5e6e43e1bf182e09ae6defffe4847 Mon Sep 17 00:00:00 2001 From: Automatic PS uploader Date: Wed, 6 Mar 2013 02:01:48 +0000 Subject: Releasing 12.10.3daily13.03.06-0ubuntu1, based on r208 --- debian/changelog | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/debian/changelog b/debian/changelog index 16d965b..3755329 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +indicator-datetime (12.10.3daily13.03.06-0ubuntu1) raring; urgency=low + + [ Mathieu Trudel-Lapierre ] + * Jenkins build failure on gtest "undefined reference to symbol + 'pthread_key_delete@@GLIBC_2.2.5'" (LP: #1126362) + + [ Automatic PS uploader ] + * Automatic snapshot from revision 208 + + -- Automatic PS uploader Wed, 06 Mar 2013 02:01:48 +0000 + indicator-datetime (12.10.3daily13.02.06-0ubuntu1) raring; urgency=low [ Colin Watson ] -- cgit v1.2.3 From 52677180cff243510db621739653fd6589e5820f Mon Sep 17 00:00:00 2001 From: Michael Terry Date: Thu, 7 Mar 2013 10:35:04 -0500 Subject: Go back to ISO 8601 dates --- src/datetime-prefs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/datetime-prefs.c b/src/datetime-prefs.c index 952dce1..c02b8e2 100644 --- a/src/datetime-prefs.c +++ b/src/datetime-prefs.c @@ -498,7 +498,10 @@ format_time_text (GtkWidget * spinner, gpointer user_data) } } else { - format = "%x"; + // This is intentionally not "%x". See https://launchpad.net/bugs/1149696 + // If you are willing to do the hard work of writing a locale-sensitive + // date parser, there is an open bug: https://launchpad.net/bugs/729056 + format = "%Y-%m-%d"; } GDateTime * datetime = g_date_time_new_from_unix_local (gtk_spin_button_get_value (GTK_SPIN_BUTTON (spinner))); -- cgit v1.2.3 From 716857aacf0e18c491a111eec4d9afab2f8df409 Mon Sep 17 00:00:00 2001 From: Automatic PS uploader Date: Thu, 7 Mar 2013 02:01:22 +0000 Subject: Releasing 12.10.3daily13.03.07-0ubuntu1, based on r210 --- debian/changelog | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/debian/changelog b/debian/changelog index 3755329..3d4bafe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +indicator-datetime (12.10.3daily13.03.07-0ubuntu1) raring; urgency=low + + [ Michael Terry ] + * Manually editing date field results in bogus date (LP: #1149696) + + [ Automatic PS uploader ] + * Automatic snapshot from revision 210 + + -- Automatic PS uploader Thu, 07 Mar 2013 02:01:22 +0000 + indicator-datetime (12.10.3daily13.03.06-0ubuntu1) raring; urgency=low [ Mathieu Trudel-Lapierre ] -- cgit v1.2.3