svn commit: r459815 - head/deskutils/gnome-contacts/files

Don Lewis truckman at FreeBSD.org
Wed Jan 24 07:14:19 UTC 2018


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"));
+ 	  }
+ 


More information about the svn-ports-all mailing list