summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Heidelberg <david@ixit.cz>2019-12-20 16:49:58 +0100
committerMatt Turner <mattst88@gentoo.org>2020-02-08 11:47:54 -0800
commitdeaa180d8b54aba6764ea5a8bdfa935ee7e5da5a (patch)
tree47a17d5563e175058f8b969d6f33254550544269 /net-im/telepathy-mission-control/files
parentsys-cluster/cinder: 15.0.0 cleanup (diff)
downloadgentoo-deaa180d8b54aba6764ea5a8bdfa935ee7e5da5a.tar.gz
gentoo-deaa180d8b54aba6764ea5a8bdfa935ee7e5da5a.tar.bz2
gentoo-deaa180d8b54aba6764ea5a8bdfa935ee7e5da5a.zip
net-im/telepathy-mission-control: bump 5.16.5
- includes upstream patch, which makes Polari works again! [1] [1] https://gitlab.gnome.org/GNOME/polari/issues/119 Closes: https://bugs.gentoo.org/703424 Closes: https://github.com/gentoo/gentoo/pull/14058 Signed-off-by: David Heidelberg <david@ixit.cz> Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'net-im/telepathy-mission-control/files')
-rw-r--r--net-im/telepathy-mission-control/files/5.16.5-account-fix-property-name.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/net-im/telepathy-mission-control/files/5.16.5-account-fix-property-name.patch b/net-im/telepathy-mission-control/files/5.16.5-account-fix-property-name.patch
new file mode 100644
index 000000000000..17eb7f1f0415
--- /dev/null
+++ b/net-im/telepathy-mission-control/files/5.16.5-account-fix-property-name.patch
@@ -0,0 +1,25 @@
+From d8dab08fe8db137c6bbd8bbdc3d9b01d98c48910 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
+Date: Thu, 19 Dec 2019 13:37:49 +0100
+Subject: [PATCH] account: Fix property name
+
+Spaces are not valid characters in property names, and never were.
+Until recently GLib silently fixed up the name by replacing the
+space with '-', but now tightened up the validation.
+---
+ src/mcd-account.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/mcd-account.c b/src/mcd-account.c
+index 8009110e..de5c61cf 100644
+--- a/src/mcd-account.c
++++ b/src/mcd-account.c
+@@ -3442,7 +3442,7 @@ mcd_account_class_init (McdAccountClass * klass)
+
+ g_object_class_install_property
+ (object_class, PROP_CONNECTIVITY_MONITOR,
+- g_param_spec_object ("connectivity monitor",
++ g_param_spec_object ("connectivity-monitor",
+ "Connectivity monitor",
+ "Connectivity monitor",
+ MCD_TYPE_CONNECTIVITY_MONITOR,