Your message dated Fri, 02 Aug 2013 09:48:34 +0000
with message-id <e1v5bym-0000r5...@franck.debian.org>
and subject line Bug#718532: fixed in gtkpod 2.1.3-5
has caused the Debian Bug report #718532,
regarding FBTFS with new Anjuta/GDL
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
718532: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=718532
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: gtkpod
Version: 2.1.3-4
Severity: serious
Tags: patch

Hi Matteo,

due to the update of anjuta and gdl, the package now FTBFS [1].
Attached is a debdiff (patches pulled from the Ubuntu package) to fix
the build failures. You just have to update the changelog accordingly.

Would be great if you can prepare a new release.

Sorry for the inconvenience.

Cheers,
Michael


[1] https://buildd.debian.org/status/package.php?p=gtkpod

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.10-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru gtkpod-2.1.3/debian/changelog gtkpod-2.1.3/debian/changelog
--- gtkpod-2.1.3/debian/changelog	2013-05-20 17:44:07.000000000 +0200
+++ gtkpod-2.1.3/debian/changelog	2013-08-02 00:56:01.000000000 +0200
@@ -1,3 +1,13 @@
+gtkpod (2.1.3-4.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * debian/patches/gtkpod-2.1.3-anjuta-3.8.patch: Git patch to fix build
+    with Anjuta 3.8.
+  * debian/patches/gtkpod-gdl362.patch: Add patch from Fedora to fix build
+    with gdl 3.6.2.
+
+ -- Michael Biebl <bi...@debian.org>  Fri, 02 Aug 2013 00:55:09 +0200
+
 gtkpod (2.1.3-4) unstable; urgency=low
 
   * Upload to unstable
diff -Nru gtkpod-2.1.3/debian/patches/gtkpod-2.1.3-anjuta-3.8.patch gtkpod-2.1.3/debian/patches/gtkpod-2.1.3-anjuta-3.8.patch
--- gtkpod-2.1.3/debian/patches/gtkpod-2.1.3-anjuta-3.8.patch	1970-01-01 01:00:00.000000000 +0100
+++ gtkpod-2.1.3/debian/patches/gtkpod-2.1.3-anjuta-3.8.patch	2013-08-02 00:54:26.000000000 +0200
@@ -0,0 +1,178 @@
+From 8f833a3ecebb8b8eae7d039c55abc7feca128d4d Mon Sep 17 00:00:00 2001
+From: phantomjinx <p.g.richard...@phantomjinx.co.uk>
+Date: Sat, 27 Apr 2013 22:58:53 +0100
+Subject: Fixes to cater for changing API in anjuta version 3.8.0+
+
+* Contribute to future proofing against new versions of anjuta library
+
+* core_prefs.c
+* coverweb.c
+* plugin.c
+* anjuta-app.c
+ * Fixes error messages about destroyed widgets being already destroyed
+
+* gtkpod.c
+* anjuta-about.c
+ * Makes changes to align code more closely with the anjuta 3.8.0 codebase
+---
+ plugins/core_preferences/core_prefs.c |  4 ++--
+ plugins/coverweb/coverweb.c           |  5 ++++-
+ plugins/sorttab_display/plugin.c      |  4 +++-
+ src/anjuta-about.c                    | 10 ++++++++--
+ src/anjuta-app.c                      |  3 ---
+ src/gtkpod.c                          | 16 ++++++++++++++++
+ 6 files changed, 33 insertions(+), 9 deletions(-)
+
+Index: gtkpod-2.1.3/plugins/core_preferences/core_prefs.c
+===================================================================
+--- gtkpod-2.1.3.orig/plugins/core_preferences/core_prefs.c	2013-08-02 00:54:05.675043702 +0200
++++ gtkpod-2.1.3/plugins/core_preferences/core_prefs.c	2013-08-02 00:54:05.671043648 +0200
+@@ -736,10 +736,10 @@
+ }
+ 
+ void destroy_settings_preferences() {
+-    if (notebook)
++    if (notebook && GTK_IS_WIDGET(notebook))
+         gtk_widget_destroy(notebook);
+ 
+-    if (builder)
++    if (builder && G_IS_OBJECT(builder))
+         g_object_unref(builder);
+ 
+     builder_path = NULL;
+Index: gtkpod-2.1.3/plugins/coverweb/coverweb.c
+===================================================================
+--- gtkpod-2.1.3.orig/plugins/coverweb/coverweb.c	2013-08-02 00:54:05.675043702 +0200
++++ gtkpod-2.1.3/plugins/coverweb/coverweb.c	2013-08-02 00:54:05.671043648 +0200
+@@ -199,6 +199,9 @@
+  * destroy the web browser and all associated items.
+  */
+ void destroy_cover_web() {
+-    gtk_widget_destroy(browser->window);
++    if (GTK_IS_WIDGET(browser->window))
++        gtk_widget_destroy(browser->window);
++
++    g_free(browser);
+     browser = NULL;
+ }
+Index: gtkpod-2.1.3/plugins/sorttab_display/plugin.c
+===================================================================
+--- gtkpod-2.1.3.orig/plugins/sorttab_display/plugin.c	2013-08-02 00:54:05.675043702 +0200
++++ gtkpod-2.1.3/plugins/sorttab_display/plugin.c	2013-08-02 00:54:05.671043648 +0200
+@@ -207,7 +207,9 @@
+     anjuta_shell_remove_widget(plugin->shell, sorttab_display_plugin->sort_tab_widget_parent, NULL);
+ 
+     /* Destroy the sort tab widget parent */
+-    gtk_widget_destroy(sorttab_display_plugin->sort_tab_widget_parent);
++    if (GTK_IS_WIDGET(sorttab_display_plugin->sort_tab_widget_parent))
++        gtk_widget_destroy(sorttab_display_plugin->sort_tab_widget_parent);
++
+     sorttab_display_plugin->sort_tab_widget_parent = NULL;
+ 
+     /* Unmerge UI */
+Index: gtkpod-2.1.3/src/anjuta-about.c
+===================================================================
+--- gtkpod-2.1.3.orig/src/anjuta-about.c	2013-08-02 00:54:05.675043702 +0200
++++ gtkpod-2.1.3/src/anjuta-about.c	2013-08-02 00:54:05.671043648 +0200
+@@ -189,7 +189,7 @@
+     return dialog;
+ }
+ 
+-static void on_about_plugin_activate(GtkMenuItem *item, AnjutaPluginDescription *desc) {
++static void on_about_plugin_activate(GtkMenuItem *item, AnjutaShell *shell) {
+     gchar *name = NULL;
+     gchar *authors = NULL;
+     gchar *license = NULL;
+@@ -198,6 +198,9 @@
+     gchar *d = NULL;
+     GdkPixbuf *pix = NULL;
+     GtkWidget *dialog;
++    AnjutaPluginDescription *desc;
++
++    desc = g_object_get_data (G_OBJECT (item), "plugin-desc");
+ 
+     anjuta_plugin_description_get_locale_string(desc, "Anjuta Plugin", "Name", &name);
+     anjuta_plugin_description_get_locale_string(desc, "Anjuta Plugin", "Description", &d);
+@@ -213,6 +216,8 @@
+         authors_v = g_strsplit(authors, ",", -1);
+     }
+     dialog = gtk_about_dialog_new();
++    gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(shell));
++    gtk_window_set_modal(GTK_WINDOW(dialog), TRUE);
+     gtk_about_dialog_set_program_name(GTK_ABOUT_DIALOG(dialog), name);
+     gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(dialog), VERSION);
+     if (license)
+@@ -259,9 +264,10 @@
+                     || anjuta_plugin_description_get_string(desc, "Anjuta Plugin", "License", &license)) {
+                 item = gtk_menu_item_new_with_label(label);
+                 gtk_widget_show(item);
++                g_object_set_data (G_OBJECT (item), "plugin-desc", desc);
+                 g_signal_connect (G_OBJECT (item), "activate",
+                         G_CALLBACK (on_about_plugin_activate),
+-                        desc);
++                        shell);
+                 gtk_menu_shell_append(GTK_MENU_SHELL (submenu), item);
+                 g_free(authors);
+                 g_free(license);
+Index: gtkpod-2.1.3/src/anjuta-app.c
+===================================================================
+--- gtkpod-2.1.3.orig/src/anjuta-app.c	2013-08-02 00:54:05.675043702 +0200
++++ gtkpod-2.1.3/src/anjuta-app.c	2013-08-02 00:54:05.671043648 +0200
+@@ -436,9 +436,6 @@
+ 
+     app = ANJUTA_APP (widget);
+ 
+-	gtk_widget_destroy (GTK_WIDGET (app->ui));
+-	gtk_widget_destroy (GTK_WIDGET (app->preferences));
+-
+     G_OBJECT_CLASS(parent_class)->finalize(widget);
+ }
+ 
+Index: gtkpod-2.1.3/src/gtkpod.c
+===================================================================
+--- gtkpod-2.1.3.orig/src/gtkpod.c	2013-08-02 00:54:05.675043702 +0200
++++ gtkpod-2.1.3/src/gtkpod.c	2013-08-02 00:54:05.671043648 +0200
+@@ -29,6 +29,7 @@
+ #include <gtk/gtk.h>
+ #include <libanjuta/anjuta-utils.h>
+ #include <libanjuta/anjuta-shell.h>
++#include <libanjuta/anjuta-version.h>
+ 
+ #include "gtkpod.h"
+ #include "libgtkpod/directories.h"
+@@ -220,12 +221,14 @@
+         return TRUE;
+ 
+     AnjutaPluginManager *plugin_manager;
++    AnjutaProfileManager *profile_manager;
+     AnjutaApp *app;
+     gchar *remembered_plugins;
+     gchar *session_dir;
+ 
+     app = ANJUTA_APP(widget);
+     plugin_manager = anjuta_shell_get_plugin_manager(ANJUTA_SHELL(app), NULL);
++    profile_manager = anjuta_shell_get_profile_manager(ANJUTA_SHELL(app), NULL);
+ 
+     /* Save remembered plugins */
+     remembered_plugins = anjuta_plugin_manager_get_remembered_plugins(plugin_manager);
+@@ -236,7 +239,20 @@
+     anjuta_shell_session_save(ANJUTA_SHELL(app), session_dir, NULL);
+     g_free(session_dir);
+ 
++#if (ANJUTA_CHECK_VERSION(3, 8, 0))
++    /* Close the profile manager which will emit "profile-descoped" and release
++     * all previous profiles. */
++    anjuta_profile_manager_close (profile_manager);
++
++    /* Hide the window while unloading all the plugins. */
++    gtk_widget_hide (widget);
++    anjuta_plugin_manager_unload_all_plugins (plugin_manager);
++#else
+     anjuta_shell_notify_exit(ANJUTA_SHELL(app), NULL);
++#endif
++
++    /** Release any blocked widgets in order to cleanup correctly */
++    release_widgets();
+ 
+     if (!gtkpod_cleanup_quit()) {
+         // Dont want to quit so avoid signalling any destroy event
diff -Nru gtkpod-2.1.3/debian/patches/gtkpod-gdl362.patch gtkpod-2.1.3/debian/patches/gtkpod-gdl362.patch
--- gtkpod-2.1.3/debian/patches/gtkpod-gdl362.patch	1970-01-01 01:00:00.000000000 +0100
+++ gtkpod-2.1.3/debian/patches/gtkpod-gdl362.patch	2013-08-02 00:54:26.000000000 +0200
@@ -0,0 +1,89 @@
+From 47a3bc71ec6612bfda856e840e9ee65b31ecbc52 Mon Sep 17 00:00:00 2001
+From: phantomjinx <p.g.richard...@phantomjinx.co.uk>
+Date: Fri, 26 Apr 2013 23:15:46 +0100
+Subject: Fix to cater for changing API in anjuta version 3.6.2+
+
+* Contribute to future proofing against new versions of anjuta library
+---
+ src/anjuta-action-callbacks.c |  5 +++++
+ src/anjuta-app.c              | 16 ++++++++++++++--
+ 2 files changed, 19 insertions(+), 2 deletions(-)
+
+diff --git a/src/anjuta-action-callbacks.c b/src/anjuta-action-callbacks.c
+index fc3f732..cdd67fb 100644
+--- a/src/anjuta-action-callbacks.c
++++ b/src/anjuta-action-callbacks.c
+@@ -32,6 +32,7 @@
+ #include <libanjuta/anjuta-utils.h>
+ #include <libanjuta/resources.h>
+ #include <libanjuta/interfaces/ianjuta-preferences.h>
++#include <libanjuta/anjuta-version.h>
+ 
+ #include "anjuta-app.h"
+ #include "anjuta-about.h"
+@@ -65,7 +66,11 @@ void
+ on_layout_lock_toggle (GtkAction *action, AnjutaApp *app)
+ {
+ 	if (app->layout_manager)
++#if (ANJUTA_CHECK_VERSION(3, 6, 2))
++	    g_object_set (gdl_dock_layout_get_master (app->layout_manager), "locked",
++#else
+ 		g_object_set (app->layout_manager->master, "locked",
++#endif
+ 					  gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)),
+ 					  NULL);
+ }
+diff --git a/src/anjuta-app.c b/src/anjuta-app.c
+index df08b06..0028b40 100644
+--- a/src/anjuta-app.c
++++ b/src/anjuta-app.c
+@@ -252,7 +252,13 @@ static void on_gdl_style_changed(GSettings* settings, const gchar* key, gpointer
+     else if (g_strcmp0(pr_style, "Tabs") == 0)
+         style = GDL_SWITCHER_STYLE_TABS;
+ 
++#if (ANJUTA_CHECK_VERSION(3, 6, 2))
++    g_object_set (gdl_dock_layout_get_master (app->layout_manager), "switcher-style",
++                      style, NULL);
++#else
+     g_object_set(G_OBJECT(app->layout_manager->master), "switcher-style", style, NULL);
++#endif
++
+     g_free(pr_style);
+ }
+ 
+@@ -344,6 +350,7 @@ static void on_session_load(AnjutaShell *shell, AnjutaSessionPhase phase, Anjuta
+         /* Restore geometry */
+         geometry = anjuta_session_get_string(session, "Anjuta", "Geometry");
+         anjuta_app_set_geometry(app, geometry);
++		g_free (geometry);
+ 
+         /* Restore window state */
+         if (anjuta_session_get_int(session, "Anjuta", "Fullscreen")) {
+@@ -429,8 +436,8 @@ static void anjuta_app_finalize(GObject *widget) {
+ 
+     app = ANJUTA_APP (widget);
+ 
+-    g_object_unref(app->ui);
+-    g_object_unref(app->preferences);
++	gtk_widget_destroy (GTK_WIDGET (app->ui));
++	gtk_widget_destroy (GTK_WIDGET (app->preferences));
+ 
+     G_OBJECT_CLASS(parent_class)->finalize(widget);
+ }
+@@ -485,8 +492,13 @@ static void anjuta_app_instance_init(AnjutaApp *app) {
+     app->layout_manager = gdl_dock_layout_new(GDL_DOCK (app->dock));
+     g_signal_connect (app->layout_manager, "notify::dirty",
+             G_CALLBACK (on_layout_dirty_notify), app);
++#if (ANJUTA_CHECK_VERSION(3, 6, 2))
++    g_signal_connect (gdl_dock_layout_get_master (app->layout_manager), "notify::locked",
++                          G_CALLBACK (on_layout_locked_notify), app);
++#else
+     g_signal_connect (app->layout_manager->master, "notify::locked",
+             G_CALLBACK (on_layout_locked_notify), app);
++#endif
+ 
+     /* UI engine */
+     app->ui = anjuta_ui_new();
+-- 
+1.8.1.2
+
diff -Nru gtkpod-2.1.3/debian/patches/series gtkpod-2.1.3/debian/patches/series
--- gtkpod-2.1.3/debian/patches/series	2012-06-20 11:42:41.000000000 +0200
+++ gtkpod-2.1.3/debian/patches/series	2013-08-02 00:54:41.000000000 +0200
@@ -1 +1,3 @@
 0001-Fix_mab2vcard_issue.patch
+gtkpod-gdl362.patch
+gtkpod-2.1.3-anjuta-3.8.patch

--- End Message ---
--- Begin Message ---
Source: gtkpod
Source-Version: 2.1.3-5

We believe that the bug you reported is fixed in the latest version of
gtkpod, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 718...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matteo F. Vescovi <mfv.deb...@gmail.com> (supplier of updated gtkpod package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Fri, 02 Aug 2013 11:19:09 +0200
Source: gtkpod
Binary: gtkpod gtkpod-data gtkpod-dbg libgtkpod1 libgtkpod-dev 
libatomicparsley0 libatomicparsley-dev
Architecture: source amd64 all
Version: 2.1.3-5
Distribution: unstable
Urgency: low
Maintainer: gtkpod Maintainers <pkg-gtkpod-de...@lists.alioth.debian.org>
Changed-By: Matteo F. Vescovi <mfv.deb...@gmail.com>
Description: 
 gtkpod     - manage songs and playlists on an Apple iPod
 gtkpod-data - architecture-independent files for gtkpod
 gtkpod-dbg - debugging symbols for gtkpod
 libatomicparsley-dev - main library for atomic parsley in gtkpod, development 
kit
 libatomicparsley0 - main library for atomic parsley in gtkpod, shared library
 libgtkpod-dev - main library for the gtkpod package, development kit
 libgtkpod1 - main library for the gtkpod package, shared library
Closes: 718532
Changes: 
 gtkpod (2.1.3-5) unstable; urgency=low
 .
   * debian/control: unversioned b-deps for anjuta and libgpod
   * debian/source/local-options: file removed
   * debian/patches/: patchset updated (Closes: #718532)
     - 0001-Fix_mab2vcard_issue.patch refreshed
     - 0002-Usage_of_anjuta-3.8.patch added
     - 0003-Usage_of_gdl-3.6.patch added
     Thanks to Michael Biebl (biebl) for the hint.
Checksums-Sha1: 
 d8c6cb6725de6d6a2a686b687e4191c7ee5ee39b 2625 gtkpod_2.1.3-5.dsc
 864ba7d64ebb60c67c810faa341bd996bbb2930e 22793 gtkpod_2.1.3-5.debian.tar.gz
 d77a6cba1499990e1fa7fb867846be60f394905b 398614 gtkpod_2.1.3-5_amd64.deb
 fcb3a0863a690c6f18e4fe07781ef994ff718276 1184542 gtkpod-data_2.1.3-5_all.deb
 657aa24fbf649290734a6b3669e3a4ddda973b2a 1636002 gtkpod-dbg_2.1.3-5_amd64.deb
 3d6016904854a425a2c28eb404e4680cc81b21d1 266262 libgtkpod1_2.1.3-5_amd64.deb
 88937b4bdefd3b227f702d771122098267bce0b3 284986 libgtkpod-dev_2.1.3-5_amd64.deb
 b279086096f9ad6dd4270e927fbba4e30ac2df84 211198 
libatomicparsley0_2.1.3-5_amd64.deb
 5364a5fa0b68794244b8f2bdf4df3d51cfb7a06f 152754 
libatomicparsley-dev_2.1.3-5_amd64.deb
Checksums-Sha256: 
 b3aee3ddb74da2e38ff8f5c0f2d669e3cb26c75628b4c3f652a8d1cc5b8321b0 2625 
gtkpod_2.1.3-5.dsc
 9a9fe1f76a321264db6ec2038353c39cb7458521513686e64a5e32abb682ff70 22793 
gtkpod_2.1.3-5.debian.tar.gz
 f5274f1b7e9e5a67f9dbde63a64dfc92a6eed765e217bf06ca1bf945e9467c89 398614 
gtkpod_2.1.3-5_amd64.deb
 ae579bf862304ccc2977729c8fa733883932a5e61fa648293be91a616e1f4bda 1184542 
gtkpod-data_2.1.3-5_all.deb
 74a5c13b453d3df38ea0170de4b8b85229080b4c412c8ac8c4f45703e3eb2991 1636002 
gtkpod-dbg_2.1.3-5_amd64.deb
 34a0c347ba481bafc1f4406b47823a982989d6d92e44a897ba7d0917114f8c57 266262 
libgtkpod1_2.1.3-5_amd64.deb
 1a489cf0c0c5a250350d3741bf9c45c7d4f56232fc23e0247424829a8d14adc3 284986 
libgtkpod-dev_2.1.3-5_amd64.deb
 eb0ab4880c23c5a1a6d18632aaf22d2f92a2d4b0abfc9707fb59e33ed3b2e654 211198 
libatomicparsley0_2.1.3-5_amd64.deb
 91c14d809a0de4afd39f4bdda9c6e25de007bc15308d35a368071625ee79287c 152754 
libatomicparsley-dev_2.1.3-5_amd64.deb
Files: 
 7f979596d1943aff25c749e7b313abbd 2625 sound extra gtkpod_2.1.3-5.dsc
 46177bfbf85ad4a0fc373c5e0d33dcd3 22793 sound extra gtkpod_2.1.3-5.debian.tar.gz
 984cec7719e29732bd105680c3c9ece2 398614 sound extra gtkpod_2.1.3-5_amd64.deb
 2533e89c3816c437ff89d1f969e03788 1184542 sound extra 
gtkpod-data_2.1.3-5_all.deb
 6a67b153e03d3c1f7d45895ebde82020 1636002 debug extra 
gtkpod-dbg_2.1.3-5_amd64.deb
 194224f93ad010a00d6a00f56f5df83d 266262 libs extra libgtkpod1_2.1.3-5_amd64.deb
 92b7d21fcc254c6046474fb3177a17e7 284986 libdevel extra 
libgtkpod-dev_2.1.3-5_amd64.deb
 d53b87f4b0edfbf71d7b0a3460280bef 211198 libs extra 
libatomicparsley0_2.1.3-5_amd64.deb
 c751a6f9ba28cf21e056d0a8a3f6a303 152754 libdevel extra 
libatomicparsley-dev_2.1.3-5_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.14 (GNU/Linux)
Comment: Debian powered!

iQIcBAEBAgAGBQJR+3yDAAoJEIBiOYmDss96oPIP/3c9u7S2qV7wR1+r8763ywuz
mUrnY1i988scCkEG+CovAIPFYaYFOcGikgIKm4+KUz8QRB/d/6snANlzHT926xQI
756+oI1Yj2bBc4/mhqAJZ4YCqn2o4jyGuLjR944aDeU8/vlLX6Lz9xEXdRB6gIou
L38NGXfIU6Db4f5puF4M69hA1KbixpjfZ1c30TevEh4+X65Sgv2IvWUtwBQG25OI
y8Tvv34ZETpS+ABrUmsqtI3mebVDvjxjwvct9lMUlNgGLMfu6wXrnsYvMch6ugs5
RB1pgtjZEI845oEnAcbxxNXQunLbglc65Zqm2Ir+XiSpJU3NjhdYx+12QTeAbbFs
oFNdLF9CI8c+u5oLGXpThk1cfJjLqkTeQNflOzjvvyD+E9/D4EuReE9VtrZmHg+w
Xblv7Svq6gy0fj7EwSnB8yCzHr0lJrOJRc4MbcFjnB37zCEWPa+Xm+eolhj7M6Rj
4uHrxjXcO94GEaGFviOfLVRAD7l3YWy/6vUSgzpUIPnpc6B2RXaEGJwT9ZTbMWWu
TfmrwpawiLVTq6UyD17JBRR+qBEWOD6rMudmzhCUaCq5OnrsZTUWkx0+cpruFo3j
4F88mDRxIdwONjDasHnKJbSApOHxGhQNNs6kzqJQofon1lU369GtLInws8lxTXD8
jNUYHzv6CAHYANGpxfNE
=Abwc
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to