main/telepathy-mission-control: backport bugfix for newer glib (!1119)
This fixes telephony functions on plasma mobile
This commit is contained in:
parent
7e8259ca58
commit
8af4d8c27a
2 changed files with 31 additions and 3 deletions
|
@ -2,14 +2,16 @@
|
|||
# Maintainer: Bhushan Shah <bshah@kde.org>
|
||||
pkgname=telepathy-mission-control
|
||||
pkgver=5.16.5
|
||||
pkgrel=0
|
||||
pkgrel=1
|
||||
arch="all"
|
||||
url="http://telepathy.freedesktop.org/wiki/"
|
||||
license="LGPL-2.1-or-later"
|
||||
pkgdesc="Account Manager and Channel Dispatcher based on telepathy-glib"
|
||||
depends_dev="gstreamer-dev libxslt-dev"
|
||||
makedepends="$depends_dev dbus gtk-doc autoconf automake libtool python3 telepathy-glib-dev"
|
||||
source="https://github.com/TelepathyIM/telepathy-mission-control/archive/telepathy-mission-control-$pkgver.tar.gz"
|
||||
source="https://github.com/TelepathyIM/telepathy-mission-control/archive/telepathy-mission-control-$pkgver.tar.gz
|
||||
backport-fix-property-name-d8dab08fe8db1.patch
|
||||
"
|
||||
subpackages="$pkgname-dev $pkgname-doc"
|
||||
options="!check" # Requires a running dbus daemon
|
||||
builddir="$srcdir/$pkgname-$pkgname-$pkgver"
|
||||
|
@ -31,4 +33,5 @@ package() {
|
|||
DESTDIR="$pkgdir" make install
|
||||
}
|
||||
|
||||
sha512sums="60db00f0dd4a715808cb9264e3dd443359628db92902b4ad95f3a5d44f3f99baa28ca247a0a2d0fdf75b92cfa6e4c643a8b2dc6062f14a28d3e03846aff5e8d4 telepathy-mission-control-5.16.5.tar.gz"
|
||||
sha512sums="60db00f0dd4a715808cb9264e3dd443359628db92902b4ad95f3a5d44f3f99baa28ca247a0a2d0fdf75b92cfa6e4c643a8b2dc6062f14a28d3e03846aff5e8d4 telepathy-mission-control-5.16.5.tar.gz
|
||||
a0161ddf307f9a690b1c741c20aee8fa05f3378da880d1a850f80cde0fc83fe2a95c541d4cb641d1e70995cc6cc75d27b6c5a8c110ec7330ad2a9a75df297012 backport-fix-property-name-d8dab08fe8db1.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,
|
Loading…
Reference in a new issue