Package: steadyflow Version: 0.2.0-1.1 Followup-For: Bug #787875 Dear Maintainer,
Please apply the attached patch to fix this ftbfs. Regards, Rodolphe -- System Information: Debian Release: stretch/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.0.0-1-amd64 (SMP w/4 CPU cores) Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages steadyflow depends on: ii dconf-gsettings-backend [gsettings-backend] 0.24.0-2 ii gvfs-backends 1.24.1-2+b1 ii libatk1.0-0 2.16.0-2 ii libc6 2.19-18 ii libcairo-gobject2 1.14.2-2 ii libcairo2 1.14.2-2 ii libgdk-pixbuf2.0-0 2.31.4-2 ii libgee2 0.6.8-2 ii libglib2.0-0 2.44.1-1 ii libgtk-3-0 3.14.5-1 ii libnotify4 0.7.6-2 ii libpango-1.0-0 1.36.8-3 ii libpangocairo-1.0-0 1.36.8-3 steadyflow recommends no packages. steadyflow suggests no packages. -- no debconf information
>From 8a69e5adedc64aaf8c16ffb7c8e8cf23b416c5a8 Mon Sep 17 00:00:00 2001 From: Rodolphe PELLOUX-PRAYER <rodol...@damsy.net> Date: Sun, 7 Jun 2015 16:33:27 +0200 Subject: [PATCH] Fix ambiguous references between GLib.ListStore and Gtk.ListStore GLib.ListStore is a new class in GIO and creates a conflict in Vala 0.28. Closes: #787875 --- ...us-references-between-GLib.ListStore-and-.patch | 33 ++++++++++++++++++++++ debian/patches/series | 1 + 2 files changed, 34 insertions(+) create mode 100644 debian/patches/0002-Fix-ambiguous-references-between-GLib.ListStore-and-.patch diff --git a/debian/patches/0002-Fix-ambiguous-references-between-GLib.ListStore-and-.patch b/debian/patches/0002-Fix-ambiguous-references-between-GLib.ListStore-and-.patch new file mode 100644 index 0000000..6e94cd9 --- /dev/null +++ b/debian/patches/0002-Fix-ambiguous-references-between-GLib.ListStore-and-.patch @@ -0,0 +1,33 @@ +From: Rodolphe PELLOUX-PRAYER <rodol...@damsy.net> +Date: Sun, 7 Jun 2015 16:31:32 +0200 +Subject: Fix ambiguous references between GLib.ListStore and Gtk.ListStore + +GLib.ListStore is a new class in GIO and creates a conflict in Vala 0.28 + +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787875 +--- + Steadyflow/FileListController.vala | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Steadyflow/FileListController.vala b/Steadyflow/FileListController.vala +index 43a65c4..ae71222 100644 +--- a/Steadyflow/FileListController.vala ++++ b/Steadyflow/FileListController.vala +@@ -27,7 +27,7 @@ public class FileListController : GLib.Object { + private static const double REDRAW_SEC = 0.2; + + private TreeView tree; +- private ListStore model; ++ private Gtk.ListStore model; + private string filter = ""; + private Timer redraw_timer; + +@@ -46,7 +46,7 @@ public class FileListController : GLib.Object { + column.pack_start (renderer, true); + column.set_cell_data_func (renderer, set_cell_data); + +- model = new ListStore.newv ({ typeof (IDownloadFile) }); ++ model = new Gtk.ListStore.newv ({ typeof (IDownloadFile) }); + tree.set_model (model); + tree.append_column (column); + diff --git a/debian/patches/series b/debian/patches/series index 288bc08..5ce2fd9 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1 +1,2 @@ fix-ambiguous-reference.patch +0002-Fix-ambiguous-references-between-GLib.ListStore-and-.patch -- 2.1.4