Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/granite/files: granite-0.3.0-build-fix3.patch granite-0.3.0-build-fix2.patch granite-0.3.0-build-fix.patch
Date: Fri, 26 Jun 2015 17:03:05
Message-Id: 20150626170300.676E3A4D@oystercatcher.gentoo.org
1 pacho 15/06/26 17:03:00
2
3 Added: granite-0.3.0-build-fix3.patch
4 granite-0.3.0-build-fix2.patch
5 granite-0.3.0-build-fix.patch
6 Log:
7 Versio bump (buildable with current vala)
8
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.1 dev-libs/granite/files/granite-0.3.0-build-fix3.patch
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/granite/files/granite-0.3.0-build-fix3.patch?rev=1.1&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/granite/files/granite-0.3.0-build-fix3.patch?rev=1.1&content-type=text/plain
16
17 Index: granite-0.3.0-build-fix3.patch
18 ===================================================================
19 === modified file 'lib/Widgets/DynamicNotebook.vala'
20 --- lib/Widgets/DynamicNotebook.vala 2014-07-31 12:41:52 +0000
21 +++ lib/Widgets/DynamicNotebook.vala 2014-08-30 13:28:37 +0000
22 @@ -658,10 +658,19 @@
23 /**
24 * The text shown in the add button tooltip
25 */
26 +#if VALA_0_26
27 + public string add_button_tooltip {
28 + get { _add_button_tooltip = add_button.tooltip_text; return _add_button_tooltip; }
29 + set { add_button.tooltip_text = value; }
30 + }
31 + // Use temporary field to avoid breaking API this can be dropped while preparing for 0.4
32 + string _add_button_tooltip;
33 +#else
34 public string add_button_tooltip {
35 get { return add_button.tooltip_text; }
36 set { add_button.tooltip_text = value; }
37 }
38 +#endif
39
40 public Tab current {
41 get { return tabs.nth_data (notebook.get_current_page ()); }
42
43
44
45
46 1.1 dev-libs/granite/files/granite-0.3.0-build-fix2.patch
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/granite/files/granite-0.3.0-build-fix2.patch?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/granite/files/granite-0.3.0-build-fix2.patch?rev=1.1&content-type=text/plain
50
51 Index: granite-0.3.0-build-fix2.patch
52 ===================================================================
53 === modified file 'lib/Widgets/DynamicNotebook.vala'
54 --- lib/Widgets/DynamicNotebook.vala 2014-08-30 13:28:37 +0000
55 +++ lib/Widgets/DynamicNotebook.vala 2014-09-23 13:43:11 +0000
56 @@ -941,7 +941,7 @@
57 notebook.create_window.connect (on_create_window);
58 }
59
60 - ~Notebook () {
61 + ~DynamicNotebook () {
62 notebook.switch_page.disconnect (on_switch_page);
63 notebook.page_added.disconnect (on_page_added);
64 notebook.page_removed.disconnect (on_page_removed);
65
66
67
68
69 1.1 dev-libs/granite/files/granite-0.3.0-build-fix.patch
70
71 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/granite/files/granite-0.3.0-build-fix.patch?rev=1.1&view=markup
72 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/granite/files/granite-0.3.0-build-fix.patch?rev=1.1&content-type=text/plain
73
74 Index: granite-0.3.0-build-fix.patch
75 ===================================================================
76 === modified file 'lib/Widgets/ContractorView.vala'
77 --- lib/Widgets/ContractorView.vala 2014-09-04 12:39:00 +0000
78 +++ lib/Widgets/ContractorView.vala 2015-03-23 05:21:46 +0000
79 @@ -35,7 +35,7 @@
80 public delegate void ContractCallback ();
81 private Gee.HashMap<int, DelegateWrapper?> outsiders;
82 private int[] blacklisted_pos;
83 - private ListStore list;
84 + private Gtk.ListStore list;
85
86 private struct DelegateWrapper { unowned ContractCallback method; }
87
88 @@ -73,7 +73,7 @@
89 */
90 public ContractorView (string filename, string mime, int icon_size = 32, bool show_contract_name = true) {
91 /* Setup the ListStore */
92 - list = new ListStore (2, typeof (Gdk.Pixbuf), typeof (string));
93 + list = new Gtk.ListStore (2, typeof (Gdk.Pixbuf), typeof (string));
94 outsiders = new Gee.HashMap<int, DelegateWrapper?> ();
95 this.model = list;