Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Jan 2018 07:14:18 +0000 (UTC)
From:      Don Lewis <truckman@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r459815 - head/deskutils/gnome-contacts/files
Message-ID:  <201801240714.w0O7EIvl043084@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: truckman
Date: Wed Jan 24 07:14:17 2018
New Revision: 459815
URL: https://svnweb.freebsd.org/changeset/ports/459815

Log:
  Unbreak build of deskutils/gnome-contacts with vala 0.36
  
  PR:		225123, 221941
  Submitted by:	cpm

Added:
  head/deskutils/gnome-contacts/files/
  head/deskutils/gnome-contacts/files/patch-src_contacts-contact-editor.vala   (contents, props changed)
  head/deskutils/gnome-contacts/files/patch-src_contacts-contact-pane.vala   (contents, props changed)

Added: head/deskutils/gnome-contacts/files/patch-src_contacts-contact-editor.vala
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/gnome-contacts/files/patch-src_contacts-contact-editor.vala	Wed Jan 24 07:14:17 2018	(r459815)
@@ -0,0 +1,11 @@
+--- src/contacts-contact-editor.vala.orig	2018-01-12 21:18:52 UTC
++++ src/contacts-contact-editor.vala
+@@ -77,7 +77,7 @@ public class Contacts.ContactEditor : Gr
+   }
+ 
+   struct RowData {
+-    AbstractFieldDetails<string> details;
++    AbstractFieldDetails details;
+   }
+ 
+   struct Field {

Added: head/deskutils/gnome-contacts/files/patch-src_contacts-contact-pane.vala
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/gnome-contacts/files/patch-src_contacts-contact-pane.vala	Wed Jan 24 07:14:17 2018	(r459815)
@@ -0,0 +1,34 @@
+--- src/contacts-contact-pane.vala.orig	2018-01-12 21:20:00 UTC
++++ src/contacts-contact-pane.vala
+@@ -451,7 +451,6 @@ public class Contacts.ContactPane : Note
+ 					 DialogFlags.MODAL,
+ 					 MessageType.ERROR,
+ 					 ButtonsType.OK,
+-					 "%s",
+ 					 _("You need to enter some data"));
+       dialog.show ();
+       dialog.response.connect ( () => {
+@@ -463,7 +462,6 @@ public class Contacts.ContactPane : Note
+ 					 DialogFlags.MODAL,
+ 					 MessageType.ERROR,
+ 					 ButtonsType.OK,
+-					 "%s",
+ 					 _("No primary addressbook configured"));
+       dialog.show ();
+       dialog.response.connect ( () => {
+@@ -482,7 +480,6 @@ public class Contacts.ContactPane : Note
+ 					DialogFlags.MODAL,
+ 					MessageType.ERROR,
+ 					ButtonsType.OK,
+-					"%s",
+ 					_("Unable to create new contacts: %s"), e.message);
+ 	  }
+ 
+@@ -493,7 +490,6 @@ public class Contacts.ContactPane : Note
+ 					DialogFlags.MODAL,
+ 					MessageType.ERROR,
+ 					ButtonsType.OK,
+-					"%s",
+ 					_("Unable to find newly created contact"));
+ 	  }
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801240714.w0O7EIvl043084>