diff -Nru gmpc-11.8.16/debian/changelog gmpc-11.8.16/debian/changelog --- gmpc-11.8.16/debian/changelog 2013-10-13 14:47:27.000000000 +0000 +++ gmpc-11.8.16/debian/changelog 2014-08-28 08:21:14.000000000 +0000 @@ -1,3 +1,15 @@ +gmpc (11.8.16-9) unstable; urgency=medium + + * Fix building with a recent vala (Closes: #739030) + * Improve package descriptions: + - don't mention irrelevant details (Closes: #756303) + - fix capitalization of GNOME + * Bump Standards-Version to 3.9.5 (no changes). + * Add libappindicator support (Closes: #736261) + * Update Vcs-Browser URL. + + -- Etienne Millon Wed, 27 Aug 2014 14:21:30 +0200 + gmpc (11.8.16-8) unstable; urgency=low * Add a Breaks clause to force gmpc-plugins to be multiarch-aware. diff -Nru gmpc-11.8.16/debian/control gmpc-11.8.16/debian/control --- gmpc-11.8.16/debian/control 2013-10-13 14:47:27.000000000 +0000 +++ gmpc-11.8.16/debian/control 2014-08-28 08:21:14.000000000 +0000 @@ -7,6 +7,7 @@ gnome-doc-utils, gob2, intltool, + libappindicator-dev, libcurl4-gnutls-dev, libglade2-dev, libglib2.0-dev, @@ -16,12 +17,12 @@ libsoup2.4-dev, libsqlite3-dev, libunique-dev, - valac-0.16, + valac, zlib1g-dev -Standards-Version: 3.9.4 +Standards-Version: 3.9.5 Homepage: http://gmpc.wikia.com/ Vcs-Git: git://anonscm.debian.org/pkg-mpd/gmpc.git -Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-mpd/gmpc.git +Vcs-Browser: http://anonscm.debian.org/cgit/pkg-mpd/gmpc.git Package: gmpc Architecture: any @@ -30,10 +31,8 @@ Breaks: gmpc-plugins (<< 11.8.16-2~) Enhances: mpd Provides: mpd-client -Description: Gnome Music Player Client (graphical interface to MPD) - A GNOME/GTK2.2 client for Music Player Daemon, it began life as traymp, - a simple tray notification client and has grown into much more. - Current features include: +Description: GNOME Music Player Client (graphical interface to MPD) + A graphical client for Music Player Daemon. Features include: * Support for loading/saving playlists * File Browser * Browser based on ID3 information @@ -47,10 +46,8 @@ Section: debug Architecture: any Depends: gmpc (= ${binary:Version}), ${misc:Depends} -Description: Gnome Music Player Client - debugging symbols - A GNOME/GTK2.2 client for Music Player Daemon, it began life as traymp, - a simple tray notification client and has grown into much more. - Current features include: +Description: GNOME Music Player Client - debugging symbols + A graphical client for Music Player Daemon. Features include: * Support for loading/saving playlists * File Browser * Browser based on ID3 information @@ -67,10 +64,8 @@ libmpd-dev, pkg-config, ${misc:Depends} -Description: Gnome Music Player Client (plugin development files) - A GNOME/GTK2.2 client for Music Player Daemon, it began life as traymp, - a simple tray notification client and has grown into much more. - Current features include: +Description: GNOME Music Player Client (plugin development files) + A graphical client for Music Player Daemon. Features include: * Support for loading/saving playlists * File Browser * Browser based on ID3 information @@ -88,10 +83,8 @@ Recommends: gmpc Replaces: gmpc (<< 0.20.0-2) Breaks: gmpc (<< 0.20.0-2) -Description: Gnome Music Player Client - data files - A GNOME/GTK2.2 client for Music Player Daemon, it began life as traymp, - a simple tray notification client and has grown into much more. - Current features include: +Description: GNOME Music Player Client - data files + A graphical client for Music Player Daemon. Features include: * Support for loading/saving playlists * File Browser * Browser based on ID3 information diff -Nru gmpc-11.8.16/debian/patches/0014-Updates-for-vala-0.18.patch gmpc-11.8.16/debian/patches/0014-Updates-for-vala-0.18.patch --- gmpc-11.8.16/debian/patches/0014-Updates-for-vala-0.18.patch 1970-01-01 00:00:00.000000000 +0000 +++ gmpc-11.8.16/debian/patches/0014-Updates-for-vala-0.18.patch 2014-08-27 08:04:33.000000000 +0000 @@ -0,0 +1,36 @@ +From d997de89d44564ea3f3147dca00efe113de02146 Mon Sep 17 00:00:00 2001 +From: Qbal Cow +Date: Sun, 23 Dec 2012 20:10:30 +0100 +Subject: [PATCH] Updates for vala 0.18. + +--- + src/vala/gmpc-mpddata-treeview-tooltip.vala | 5 ++++- + src/vapi/gmpc.vapi | 3 ++- + 2 files changed, 6 insertions(+), 2 deletions(-) + +--- a/src/vala/gmpc-mpddata-treeview-tooltip.vala ++++ b/src/vala/gmpc-mpddata-treeview-tooltip.vala +@@ -43,7 +43,11 @@ + return false; + } + ++#if VALA_0_18 ++ if(!this.par_widget.get_tooltip_context(ref x, ref y,keyboard_tip, out model, out path, out iter)){ ++#else + if(!this.par_widget.get_tooltip_context(out x, out y,keyboard_tip, out model, out path, out iter)){ ++#endif + this.checksum = null; + return false; + } +--- a/src/vapi/gmpc.vapi ++++ b/src/vapi/gmpc.vapi +@@ -349,7 +349,8 @@ + + /* objects */ + namespace MpdData { +- [CCode (cheader_filename="gmpc-mpddata-treeview.h",cname="GmpcMpdDataTreeview",type_check_function="GMPC_IS_MPDDATA_TREEVIEW")] ++ [CCode (cheader_filename="gmpc-mpddata-treeview.h",cname="GmpcMpdDataTreeview",type_check_function="GMPC_IS_MPDDATA_TREEVIEW", ++ type_id="GMPC_TYPE_MPDDATA_TREEVIEW")] + public class TreeView : Gtk.TreeView { + [CCode (cname="gmpc_mpddata_treeview_new")] + public TreeView(string name, bool sort, Gtk.TreeModel model); diff -Nru gmpc-11.8.16/debian/patches/series gmpc-11.8.16/debian/patches/series --- gmpc-11.8.16/debian/patches/series 2013-09-22 17:46:57.000000000 +0000 +++ gmpc-11.8.16/debian/patches/series 2014-08-27 08:01:08.000000000 +0000 @@ -11,3 +11,4 @@ 0011-Disable-discogs-plugin.patch 0012-Disable-htbackdrops-plugin.patch 0013-Link-with-math.patch +0014-Updates-for-vala-0.18.patch