update to folks-0.9.7.1

This commit is contained in:
jasper 2014-06-24 11:45:48 +00:00
parent 760d093f70
commit b5ed78f7b3
3 changed files with 4 additions and 31 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.70 2014/06/23 09:56:21 jasper Exp $
# $OpenBSD: Makefile,v 1.71 2014/06/24 11:45:48 jasper Exp $
COMMENT= people aggregation library
GNOME_PROJECT= folks
GNOME_VERSION= 0.9.7
GNOME_VERSION= 0.9.7.1
# MODULE_VERSION in config.h
API_V= 42

View File

@ -1,2 +1,2 @@
SHA256 (telepathy/folks-0.9.7.tar.xz) = JllL59CInzvR9RQdW5UHZPxKL6vbGBLedXbjqnLDYFo=
SIZE (telepathy/folks-0.9.7.tar.xz) = 1893820
SHA256 (telepathy/folks-0.9.7.1.tar.xz) = jVPPn2zLfZSZo1LHNnFwsQOxSn1Z2gvQbdqMV7aJJ2o=
SIZE (telepathy/folks-0.9.7.1.tar.xz) = 1860208

View File

@ -1,27 +0,0 @@
$OpenBSD: patch-backends_eds_lib_folks-eds_vapi,v 1.1 2014/06/23 09:56:21 jasper Exp $
Don't use (unowned string)[] which was introduced with vala > 0.24.
https://bugzilla.gnome.org/show_bug.cgi?id=732080
--- backends/eds/lib/folks-eds.vapi.orig Mon Jun 23 21:49:44 2014
+++ backends/eds/lib/folks-eds.vapi Mon Jun 23 21:50:22 2014
@@ -4,15 +4,15 @@
namespace Edsf {
[CCode (cheader_filename = "folks/folks-eds.h")]
public class Persona : Folks.Persona, Folks.AntiLinkable, Folks.AvatarDetails, Folks.BirthdayDetails, Folks.EmailDetails, Folks.FavouriteDetails, Folks.GenderDetails, Folks.GroupDetails, Folks.ImDetails, Folks.LocalIdDetails, Folks.LocationDetails, Folks.NameDetails, Folks.NoteDetails, Folks.PhoneDetails, Folks.RoleDetails, Folks.UrlDetails, Folks.PostalAddressDetails, Folks.WebServiceDetails {
- public const (unowned string)[] address_fields;
- public const (unowned string)[] email_fields;
+ public const string[] address_fields;
+ public const string[] email_fields;
public const string folks_field_attribute_name;
public const string gender_attribute_name;
public const string gender_female;
public const string gender_male;
- public const (unowned string)[] phone_fields;
+ public const string[] phone_fields;
[Deprecated (replacement = "Folks.UrlFieldDetails.PARAM_TYPE_BLOG", since = "0.6.3")]
- public const (unowned string)[] url_properties;
+ public const string[] url_properties;
public Persona (Edsf.PersonaStore store, E.Contact contact);
public async void change_in_google_personal_group (bool in_personal) throws Folks.PropertyError;
public async void change_system_groups (Gee.Set<string> system_groups) throws Folks.PropertyError;