From f1bc537f089cc8477a9a18db597cb349e1b00e91 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 16 Jun 2018 05:02:38 +0100 Subject: gentoo resync : 16.06.2018 --- .../granite/files/granite-0.3.0-build-fix.patch | 22 -------------------- .../granite/files/granite-0.3.0-build-fix2.patch | 13 ------------ .../granite/files/granite-0.3.0-build-fix3.patch | 24 ---------------------- 3 files changed, 59 deletions(-) delete mode 100644 dev-libs/granite/files/granite-0.3.0-build-fix.patch delete mode 100644 dev-libs/granite/files/granite-0.3.0-build-fix2.patch delete mode 100644 dev-libs/granite/files/granite-0.3.0-build-fix3.patch (limited to 'dev-libs/granite/files') diff --git a/dev-libs/granite/files/granite-0.3.0-build-fix.patch b/dev-libs/granite/files/granite-0.3.0-build-fix.patch deleted file mode 100644 index f93a3c65df33..000000000000 --- a/dev-libs/granite/files/granite-0.3.0-build-fix.patch +++ /dev/null @@ -1,22 +0,0 @@ -=== modified file 'lib/Widgets/ContractorView.vala' ---- lib/Widgets/ContractorView.vala 2014-09-04 12:39:00 +0000 -+++ lib/Widgets/ContractorView.vala 2015-03-23 05:21:46 +0000 -@@ -35,7 +35,7 @@ - public delegate void ContractCallback (); - private Gee.HashMap outsiders; - private int[] blacklisted_pos; -- private ListStore list; -+ private Gtk.ListStore list; - - private struct DelegateWrapper { unowned ContractCallback method; } - -@@ -73,7 +73,7 @@ - */ - public ContractorView (string filename, string mime, int icon_size = 32, bool show_contract_name = true) { - /* Setup the ListStore */ -- list = new ListStore (2, typeof (Gdk.Pixbuf), typeof (string)); -+ list = new Gtk.ListStore (2, typeof (Gdk.Pixbuf), typeof (string)); - outsiders = new Gee.HashMap (); - this.model = list; - - diff --git a/dev-libs/granite/files/granite-0.3.0-build-fix2.patch b/dev-libs/granite/files/granite-0.3.0-build-fix2.patch deleted file mode 100644 index 7c6bcb9236e5..000000000000 --- a/dev-libs/granite/files/granite-0.3.0-build-fix2.patch +++ /dev/null @@ -1,13 +0,0 @@ -=== modified file 'lib/Widgets/DynamicNotebook.vala' ---- lib/Widgets/DynamicNotebook.vala 2014-08-30 13:28:37 +0000 -+++ lib/Widgets/DynamicNotebook.vala 2014-09-23 13:43:11 +0000 -@@ -941,7 +941,7 @@ - notebook.create_window.connect (on_create_window); - } - -- ~Notebook () { -+ ~DynamicNotebook () { - notebook.switch_page.disconnect (on_switch_page); - notebook.page_added.disconnect (on_page_added); - notebook.page_removed.disconnect (on_page_removed); - diff --git a/dev-libs/granite/files/granite-0.3.0-build-fix3.patch b/dev-libs/granite/files/granite-0.3.0-build-fix3.patch deleted file mode 100644 index 145d552c7a04..000000000000 --- a/dev-libs/granite/files/granite-0.3.0-build-fix3.patch +++ /dev/null @@ -1,24 +0,0 @@ -=== modified file 'lib/Widgets/DynamicNotebook.vala' ---- lib/Widgets/DynamicNotebook.vala 2014-07-31 12:41:52 +0000 -+++ lib/Widgets/DynamicNotebook.vala 2014-08-30 13:28:37 +0000 -@@ -658,10 +658,19 @@ - /** - * The text shown in the add button tooltip - */ -+#if VALA_0_26 -+ public string add_button_tooltip { -+ get { _add_button_tooltip = add_button.tooltip_text; return _add_button_tooltip; } -+ set { add_button.tooltip_text = value; } -+ } -+ // Use temporary field to avoid breaking API this can be dropped while preparing for 0.4 -+ string _add_button_tooltip; -+#else - public string add_button_tooltip { - get { return add_button.tooltip_text; } - set { add_button.tooltip_text = value; } - } -+#endif - - public Tab current { - get { return tabs.nth_data (notebook.get_current_page ()); } - -- cgit v1.2.3