update to folks-0.15.3

This commit is contained in:
jasper 2021-07-24 13:03:57 +00:00
parent 6ea57b9227
commit 54ec12fba3
3 changed files with 4 additions and 20 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.118 2021/05/13 18:47:24 jasper Exp $
# $OpenBSD: Makefile,v 1.119 2021/07/24 13:03:57 jasper Exp $
COMMENT= people aggregation library
GNOME_PROJECT= folks
GNOME_VERSION= 0.15.2
GNOME_VERSION= 0.15.3
# see BACKEND_DIR in config.h
API_V= 26

View File

@ -1,2 +1,2 @@
SHA256 (telepathy/folks-0.15.2.tar.xz) = 73d7JpbRXsMbqLlA7KvBf+f6uQlYT5QlJY9U0pXM0SI=
SIZE (telepathy/folks-0.15.2.tar.xz) = 489236
SHA256 (telepathy/folks-0.15.3.tar.xz) = Idc3+vCT9L4GVHPucMogiFuaLDaFlB26JMIjn9PFRKU=
SIZE (telepathy/folks-0.15.3.tar.xz) = 491432

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-backends_eds_lib_edsf-persona_vala,v 1.2 2021/05/16 09:50:19 jasper Exp $
https://gitlab.gnome.org/GNOME/folks/-/commit/343460faa12b46316132e5a24dcf25d90674bffa
Index: backends/eds/lib/edsf-persona.vala
--- backends/eds/lib/edsf-persona.vala.orig
+++ backends/eds/lib/edsf-persona.vala
@@ -2268,7 +2268,7 @@ public class Edsf.Persona : Folks.Persona,
private unowned string? _get_string_property (string prop_name)
{
var field = E.Contact.field_id (prop_name);
- return_if_fail (E.Contact.field_is_string (field));
+ return_val_if_fail (E.Contact.field_is_string (field), null);
return contact.get_const<string> (field);
}