Your message dated Mon, 11 Aug 2014 17:34:02 +0000
with message-id <[email protected]>
and subject line Bug#752574: fixed in gdb 7.7.1+dfsg-1
has caused the Debian Bug report #752574,
regarding gdb: FTBFS on Hurd
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 [email protected]
immediately.)


-- 
752574: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752574
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: gdb
Version: 7.7.1-2
Severity: important

Please consider attached debdiff fixing FTBFS on Hurd.
It applies four patches cherry-picked from upstream as pointed out by
Thomas Schwinge at

 https://sourceware.org/ml/gdb-patches/2014-05/msg00056.html

Thanks.
diff -Nru gdb-7.7.1/debian/changelog gdb-7.7.1/debian/changelog
--- gdb-7.7.1/debian/changelog  2014-06-17 23:42:37.000000000 +0000
+++ gdb-7.7.1/debian/changelog  2014-06-24 19:16:14.000000000 +0000
@@ -1,3 +1,14 @@
+gdb (7.7.1-3) UNRELEASED; urgency=medium
+
+  * Fix FTBFS on Hurd.
+    + Cherry-pick from upstream:
+      hurd-new-RPC-reply-stub-functions.patch
+      hurd-adapt-to-changed-MIG-output.patch
+      hurd-adjust-to-startup-with-shell-changes.patch
+      hurd-make-MIG-output-parsing-more-robust.patch
+
+ -- Gabriele Giacone <[email protected]>  Tue, 24 Jun 2014 16:41:28 +0000
+
 gdb (7.7.1-2) unstable; urgency=medium
 
   [ Samuel Bronson ]
diff -Nru gdb-7.7.1/debian/patches/hurd-adapt-to-changed-MIG-output.patch 
gdb-7.7.1/debian/patches/hurd-adapt-to-changed-MIG-output.patch
--- gdb-7.7.1/debian/patches/hurd-adapt-to-changed-MIG-output.patch     
1970-01-01 00:00:00.000000000 +0000
+++ gdb-7.7.1/debian/patches/hurd-adapt-to-changed-MIG-output.patch     
2014-06-24 19:07:48.000000000 +0000
@@ -0,0 +1,22 @@
+Description: Fix FTBFS on Hurd.
+ Adapt to changed MIG output.
+ Based on a patch by David Michael <[email protected]>.
+Author: Thomas Schwinge <[email protected]>
+Origin: upstream, 
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commit;h=bae8023e39868ab2065ff05be61e151b3c082492
+
+diff --git a/gdb/reply_mig_hack.awk b/gdb/reply_mig_hack.awk
+index 075ab02..6d27685 100644
+--- a/gdb/reply_mig_hack.awk
++++ b/gdb/reply_mig_hack.awk
+@@ -78,9 +78,9 @@ parse_phase == 4 {
+   print; next;
+ }
+ 
+-parse_phase == 5 && /^[ \t]*(auto|static) const mach_msg_type_t/ {
++parse_phase == 5 && /^[ \t]*(auto |static |)const mach_msg_type_t/ {
+   # The type check structure for an argument.
+-  arg_check_name[num_checks] = $4;
++  arg_check_name[num_checks] = $(NF - 2);
+   num_checks++;
+   print; next;
+ }
diff -Nru 
gdb-7.7.1/debian/patches/hurd-adjust-to-startup-with-shell-changes.patch 
gdb-7.7.1/debian/patches/hurd-adjust-to-startup-with-shell-changes.patch
--- gdb-7.7.1/debian/patches/hurd-adjust-to-startup-with-shell-changes.patch    
1970-01-01 00:00:00.000000000 +0000
+++ gdb-7.7.1/debian/patches/hurd-adjust-to-startup-with-shell-changes.patch    
2014-06-24 19:07:39.000000000 +0000
@@ -0,0 +1,69 @@
+Description: Fix FTBFS on Hurd.
+ Adjust to startup-with-shell changes.
+Author: Thomas Schwinge <[email protected]>
+Origin: upstream, 
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commit;h=c82f56d9d760a9b4034eeaac44f2f0fa5779ff69
+
+diff --git a/gdb/gnu-nat.c b/gdb/gnu-nat.c
+index a3ed0e0..b66a7f0 100644
+--- a/gdb/gnu-nat.c
++++ b/gdb/gnu-nat.c
+@@ -210,9 +210,9 @@ struct inf
+     unsigned int no_wait:1;
+ 
+     /* When starting a new inferior, we don't try to validate threads until 
all
+-       the proper execs have been done.  This is a count of how many execs we
++       the proper execs have been done, which this flag states we still
+        expect to happen.  */
+-    unsigned pending_execs;
++    unsigned int pending_execs:1;
+ 
+     /* Fields describing global state.  */
+ 
+@@ -1568,26 +1568,14 @@ rewait:
+          while execing.  */
+       {
+         w->suppress = 1;
+-        inf_debug (inf, "pending_execs = %d, ignoring minor event",
+-                   inf->pending_execs);
++        inf_debug (inf, "pending_execs, ignoring minor event");
+       }
+       else if (kind == TARGET_WAITKIND_STOPPED
+              && w->status.value.sig == GDB_SIGNAL_TRAP)
+       /* Ah hah!  A SIGTRAP from the inferior while starting up probably
+          means we've succesfully completed an exec!  */
+       {
+-        if (--inf->pending_execs == 0)
+-          /* We're done!  */
+-          {
+-#if 0                         /* do we need this?  */
+-            prune_threads (1);        /* Get rid of the old shell
+-                                         threads.  */
+-            renumber_threads (0);     /* Give our threads reasonable
+-                                         names.  */
+-#endif
+-          }
+-        inf_debug (inf, "pending exec completed, pending_execs => %d",
+-                   inf->pending_execs);
++        inf_debug (inf, "one pending exec completed");
+       }
+       else if (kind == TARGET_WAITKIND_STOPPED)
+       /* It's possible that this signal is because of a crashed process
+@@ -2146,7 +2134,7 @@ gnu_create_inferior (struct target_ops *ops,
+ 
+   push_target (ops);
+ 
+-  inf->pending_execs = 2;
++  inf->pending_execs = 1;
+   inf->nomsg = 1;
+   inf->traced = 1;
+ 
+@@ -2158,7 +2146,8 @@ gnu_create_inferior (struct target_ops *ops,
+   thread_change_ptid (inferior_ptid,
+                     ptid_build (inf->pid, inf_pick_first_thread (), 0));
+ 
+-  startup_inferior (inf->pending_execs);
++  startup_inferior (START_INFERIOR_TRAPS_EXPECTED);
++  inf->pending_execs = 0;
+ 
+   inf_validate_procinfo (inf);
+   inf_update_signal_thread (inf);
diff -Nru 
gdb-7.7.1/debian/patches/hurd-make-MIG-output-parsing-more-robust.patch 
gdb-7.7.1/debian/patches/hurd-make-MIG-output-parsing-more-robust.patch
--- gdb-7.7.1/debian/patches/hurd-make-MIG-output-parsing-more-robust.patch     
1970-01-01 00:00:00.000000000 +0000
+++ gdb-7.7.1/debian/patches/hurd-make-MIG-output-parsing-more-robust.patch     
2014-06-24 19:09:12.000000000 +0000
@@ -0,0 +1,23 @@
+Description: Fix FTBFS on Hurd.
+ Make MIG output parsing more robust.
+ Based on a patch by David Michael <[email protected]>.
+Author: Thomas Schwinge <[email protected]>
+Origin: upstream, 
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commit;h=d47642c93dda6344af12458e4e26587f3353fb44
+
+diff --git a/gdb/reply_mig_hack.awk b/gdb/reply_mig_hack.awk
+index 6d27685..15bfdfb 100644
+--- a/gdb/reply_mig_hack.awk
++++ b/gdb/reply_mig_hack.awk
+@@ -92,6 +92,12 @@ parse_phase == 5 && /^[ \t]*mig_external kern_return_t/ {
+ }
+ 
+ parse_phase == 5 && /^#if[ \t]TypeCheck/ {
++  # Keep going if we have not yet collected the type check structures.
++  if (num_checks == 0)
++    {
++      print; next;
++    }
++
+   # The first args type checking statement; we need to insert our chunk of
+   # code that bypasses all the type checks if this is an error return, after
+   # which we're done until we get to the next function.  Handily, the size
diff -Nru gdb-7.7.1/debian/patches/hurd-new-RPC-reply-stub-functions.patch 
gdb-7.7.1/debian/patches/hurd-new-RPC-reply-stub-functions.patch
--- gdb-7.7.1/debian/patches/hurd-new-RPC-reply-stub-functions.patch    
1970-01-01 00:00:00.000000000 +0000
+++ gdb-7.7.1/debian/patches/hurd-new-RPC-reply-stub-functions.patch    
2014-06-24 19:08:04.000000000 +0000
@@ -0,0 +1,165 @@
+Description: Fix FTBFS on hurd.
+ New RPC reply stub functions.
+ Based on a patch by David Michael <[email protected]>.
+Author: Thomas Schwinge <[email protected]>
+Origin: upstream, 
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commit;h=3398af6aa352b0611bc9d66aed72080a876e42d4
+
+diff --git a/gdb/gnu-nat.c b/gdb/gnu-nat.c
+index efafc35..a3ed0e0 100644
+--- a/gdb/gnu-nat.c
++++ b/gdb/gnu-nat.c
+@@ -1794,43 +1794,23 @@ do_mach_notify_dead_name (mach_port_t notify, 
mach_port_t dead_port)
+ }
+ 
+ 
+-static error_t
+-ill_rpc (char *fun)
+-{
+-  warning (_("illegal rpc: %s"), fun);
+-  return 0;
+-}
+-
+-error_t
+-do_mach_notify_no_senders (mach_port_t notify, mach_port_mscount_t count)
+-{
+-  return ill_rpc ("do_mach_notify_no_senders");
+-}
+-
+-error_t
+-do_mach_notify_port_deleted (mach_port_t notify, mach_port_t name)
+-{
+-  return ill_rpc ("do_mach_notify_port_deleted");
+-}
+-
+-error_t
+-do_mach_notify_msg_accepted (mach_port_t notify, mach_port_t name)
+-{
+-  return ill_rpc ("do_mach_notify_msg_accepted");
+-}
+-
+-error_t
+-do_mach_notify_port_destroyed (mach_port_t notify, mach_port_t name)
+-{
+-  return ill_rpc ("do_mach_notify_port_destroyed");
+-}
+-
+-error_t
+-do_mach_notify_send_once (mach_port_t notify)
+-{
+-  return ill_rpc ("do_mach_notify_send_once");
+-}
++#define ILL_RPC(fun, ...) \
++  kern_return_t fun (__VA_ARGS__) \
++  { \
++    warning (_("illegal rpc: %s"), #fun); \
++    return 0; \
++  }
+ 
++ILL_RPC (do_mach_notify_no_senders,
++       mach_port_t notify, mach_port_mscount_t count)
++ILL_RPC (do_mach_notify_port_deleted,
++       mach_port_t notify, mach_port_t name)
++ILL_RPC (do_mach_notify_msg_accepted,
++       mach_port_t notify, mach_port_t name)
++ILL_RPC (do_mach_notify_port_destroyed,
++       mach_port_t notify, mach_port_t name)
++ILL_RPC (do_mach_notify_send_once,
++       mach_port_t notify)
+ 
+ /* Process_reply server routines.  We only use process_wait_reply.  */
+ 
+@@ -1887,19 +1867,66 @@ S_proc_wait_reply (mach_port_t reply, error_t err,
+   return 0;
+ }
+ 
+-error_t
+-S_proc_setmsgport_reply (mach_port_t reply, error_t err,
+-                       mach_port_t old_msg_port)
+-{
+-  return ill_rpc ("S_proc_setmsgport_reply");
+-}
+-
+-error_t
+-S_proc_getmsgport_reply (mach_port_t reply, error_t err, mach_port_t msg_port)
+-{
+-  return ill_rpc ("S_proc_getmsgport_reply");
+-}
+-
++ILL_RPC (S_proc_setmsgport_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       mach_port_t oldmsgport)
++ILL_RPC (S_proc_getmsgport_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       mach_port_t msgports)
++ILL_RPC (S_proc_pid2task_reply,
++       mach_port_t reply_port, kern_return_t return_code, mach_port_t task)
++ILL_RPC (S_proc_task2pid_reply,
++       mach_port_t reply_port, kern_return_t return_code, pid_t pid)
++ILL_RPC (S_proc_task2proc_reply,
++       mach_port_t reply_port, kern_return_t return_code, mach_port_t proc)
++ILL_RPC (S_proc_proc2task_reply,
++       mach_port_t reply_port, kern_return_t return_code, mach_port_t task)
++ILL_RPC (S_proc_pid2proc_reply,
++       mach_port_t reply_port, kern_return_t return_code, mach_port_t proc)
++ILL_RPC (S_proc_getprocinfo_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       int flags, procinfo_t procinfo, mach_msg_type_number_t procinfoCnt,
++       data_t threadwaits, mach_msg_type_number_t threadwaitsCnt)
++ILL_RPC (S_proc_getprocargs_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       data_t procargs, mach_msg_type_number_t procargsCnt)
++ILL_RPC (S_proc_getprocenv_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       data_t procenv, mach_msg_type_number_t procenvCnt)
++ILL_RPC (S_proc_getloginid_reply,
++       mach_port_t reply_port, kern_return_t return_code, pid_t login_id)
++ILL_RPC (S_proc_getloginpids_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       pidarray_t pids, mach_msg_type_number_t pidsCnt)
++ILL_RPC (S_proc_getlogin_reply,
++       mach_port_t reply_port, kern_return_t return_code, string_t logname)
++ILL_RPC (S_proc_getsid_reply,
++       mach_port_t reply_port, kern_return_t return_code, pid_t sid)
++ILL_RPC (S_proc_getsessionpgids_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       pidarray_t pgidset, mach_msg_type_number_t pgidsetCnt)
++ILL_RPC (S_proc_getsessionpids_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       pidarray_t pidset, mach_msg_type_number_t pidsetCnt)
++ILL_RPC (S_proc_getsidport_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       mach_port_t sessport)
++ILL_RPC (S_proc_getpgrp_reply,
++       mach_port_t reply_port, kern_return_t return_code, pid_t pgrp)
++ILL_RPC (S_proc_getpgrppids_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       pidarray_t pidset, mach_msg_type_number_t pidsetCnt)
++ILL_RPC (S_proc_get_tty_reply,
++       mach_port_t reply_port, kern_return_t return_code, mach_port_t tty)
++ILL_RPC (S_proc_getnports_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       mach_msg_type_number_t nports)
++ILL_RPC (S_proc_is_important_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       boolean_t essential)
++ILL_RPC (S_proc_get_code_reply,
++       mach_port_t reply_port, kern_return_t return_code,
++       vm_address_t start_code, vm_address_t end_code)
+ 
+ /* Msg_reply server routines.  We only use msg_sig_post_untraced_reply.  */
+ 
+@@ -1933,12 +1960,8 @@ S_msg_sig_post_untraced_reply (mach_port_t reply, 
error_t err)
+   return 0;
+ }
+ 
+-error_t
+-S_msg_sig_post_reply (mach_port_t reply, error_t err)
+-{
+-  return ill_rpc ("S_msg_sig_post_reply");
+-}
+-
++ILL_RPC (S_msg_sig_post_reply,
++       mach_port_t reply, error_t err)
+ 
+ /* Returns the number of messages queued for the receive right PORT.  */
+ static mach_port_msgcount_t
diff -Nru gdb-7.7.1/debian/patches/series gdb-7.7.1/debian/patches/series
--- gdb-7.7.1/debian/patches/series     2014-05-29 23:13:49.000000000 +0000
+++ gdb-7.7.1/debian/patches/series     2014-06-24 18:58:49.000000000 +0000
@@ -5,3 +5,7 @@
 python-config.patch
 ppc64le.diff
 gdb-glibc-vdso-workaround.patch
+hurd-new-RPC-reply-stub-functions.patch
+hurd-adapt-to-changed-MIG-output.patch
+hurd-adjust-to-startup-with-shell-changes.patch
+hurd-make-MIG-output-parsing-more-robust.patch

--- End Message ---
--- Begin Message ---
Source: gdb
Source-Version: 7.7.1+dfsg-1

We believe that the bug you reported is fixed in the latest version of
gdb, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Samuel Bronson <[email protected]> (supplier of updated gdb 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 [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sat, 09 Aug 2014 13:11:35 -0400
Source: gdb
Binary: gdb gdb-minimal gdb64 gdb-multiarch gdbserver gdb-source gdb-dbg
Architecture: source all amd64
Version: 7.7.1+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Héctor Orón Martínez <[email protected]>
Changed-By: Samuel Bronson <[email protected]>
Description:
 gdb        - GNU Debugger
 gdb-dbg    - GNU Debugger (debug package)
 gdb-minimal - GNU Debugger (minimal version)
 gdb-multiarch - GNU Debugger (with support for multiple architectures)
 gdb-source - GNU Debugger (source)
 gdb64      - GNU Debugger (64-bit)
 gdbserver  - GNU Debugger (remote server)
Closes: 752295 752317 752390 752574
Changes:
 gdb (7.7.1+dfsg-1) unstable; urgency=medium
 .
   [ Héctor Orón Martínez ]
   * d/changelog: replace nickname by real name in previous block
 .
   [ Gabriele Giacone ]
   * Fix FTBFS on Hurd.
     + Cherry-pick from upstream:
       hurd-new-RPC-reply-stub-functions.patch
       hurd-adapt-to-changed-MIG-output.patch
       hurd-adjust-to-startup-with-shell-changes.patch
       hurd-make-MIG-output-parsing-more-robust.patch
     (Closes: #752574)
 .
   [ Samuel Bronson ]
   * Ship /usr/lib/libinproctrace.so with gdbserver.
     This enables the "agent" features.
   * d/copyright: correct a licensecheck error; add required license 
texts/blurbs
   * d/gdb.install: Include gcore in gdb package (Closes: #752317).
     Thanks to Lorenzo Beretta for the report.
   * New patch to fix the build on kFreeBSD.
     Thanks to Steven Chamberlain for a fix (Closes: #752390, #752295).
   * d/watch: Update to be more flexible about upstream tarball format.
 .
   Last but not least,
   * Use correct tarball, with non-free upstream manpages stripped.
     Restores DFSG-compliance.
 .
   [ Hector Oron ]
   * Rename upstream tarball to not conflict with the one in archive.
Checksums-Sha1:
 300b0eefb226a272f9dda12b38c4c024e49e54b8 2783 gdb_7.7.1+dfsg-1.dsc
 053f37941f74a462a9be86b90949be8df97fa707 17652724 gdb_7.7.1+dfsg.orig.tar.xz
 3582e0a93edf232bc8b2b9e944f60d73269948ee 64020 gdb_7.7.1+dfsg-1.debian.tar.xz
 bc9517982cda0da1826be9eaffb26aa5a0e5fe51 24016272 
gdb-source_7.7.1+dfsg-1_all.deb
 c72a44caef82f7171971995d99bff63b0833b68c 2138490 gdb_7.7.1+dfsg-1_amd64.deb
 a984a4395f3160b26c2128af420a953d198ad2f7 1919694 
gdb-minimal_7.7.1+dfsg-1_amd64.deb
 5d38e0a5348ae3b8932e63b2cb5705b3ff76d097 2778750 
gdb-multiarch_7.7.1+dfsg-1_amd64.deb
 44c1e9291c040bb88cd2886da1fc92e90a939489 242362 
gdbserver_7.7.1+dfsg-1_amd64.deb
 e7aeb3bd5ca22dcb31ce95513b15a7c5059f6b20 18146854 
gdb-dbg_7.7.1+dfsg-1_amd64.deb
Checksums-Sha256:
 a60fbdfaf57c6f7e41970b2acbaf6a8a605315fce74806e5016e83446b06b9d7 2783 
gdb_7.7.1+dfsg-1.dsc
 920326b45d50993f28843f459a28d848e18dd04a73b4ac3ea59cc0929d99d850 17652724 
gdb_7.7.1+dfsg.orig.tar.xz
 dff64e82ee292452fe97addbb9c51dc793945f89eabe4b674e406ccb1f41d114 64020 
gdb_7.7.1+dfsg-1.debian.tar.xz
 d8c2aa9971e0c92ffaa953fdb5cbd87af96d0311986e2c3d3437c290a97261cd 24016272 
gdb-source_7.7.1+dfsg-1_all.deb
 91e7475f55a61773599c62b3c8da27950f5df4da095d2182ed0569b3ef804650 2138490 
gdb_7.7.1+dfsg-1_amd64.deb
 82cde9a28e3ef1d649455f0c46aa41d6a8b8b6f9b78f2eb3687f6302b2001ec8 1919694 
gdb-minimal_7.7.1+dfsg-1_amd64.deb
 c165b1e8ea27a7ca457bb77fd7ae6ad9d28a6a0c83224f88a89a4b5e348b1b99 2778750 
gdb-multiarch_7.7.1+dfsg-1_amd64.deb
 298601be1fbce9a398129cff12a566a5c250d37652c5d8daf2d07cc7bccc4fbf 242362 
gdbserver_7.7.1+dfsg-1_amd64.deb
 eca615608099aadb927aa3ba9b43f6f61f8b4d415e874ac5dc47688f38704bef 18146854 
gdb-dbg_7.7.1+dfsg-1_amd64.deb
Files:
 45b482e165ddba63570e2ad9b658b3d1 24016272 devel optional 
gdb-source_7.7.1+dfsg-1_all.deb
 8e78308d42687debfb4bba390c41bb82 2138490 devel optional 
gdb_7.7.1+dfsg-1_amd64.deb
 a2d957a16b27970c21998b66daf8f1fd 1919694 devel optional 
gdb-minimal_7.7.1+dfsg-1_amd64.deb
 7aa98bad19ea2d54bee238d51eaaf1a7 2778750 devel optional 
gdb-multiarch_7.7.1+dfsg-1_amd64.deb
 11d01b997b3e78a6d7fa6010a1840728 242362 devel optional 
gdbserver_7.7.1+dfsg-1_amd64.deb
 156af8e152aa307d61561b7eac17b4d8 18146854 debug extra 
gdb-dbg_7.7.1+dfsg-1_amd64.deb
 4d80f3ae13ec14c543f714ab91b7c6cf 2783 devel optional gdb_7.7.1+dfsg-1.dsc
 dca63aa70c8f78fccb47a4cb01dc2bb9 17652724 devel optional 
gdb_7.7.1+dfsg.orig.tar.xz
 60a7ff9b5d753d4684a2c24c94fda2a4 64020 devel optional 
gdb_7.7.1+dfsg-1.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCgAGBQJT6PkrAAoJEK8ig6p24qx71Y0P/AlExAOJ/KisRNrRUVpVlzDG
tYwH1wOPPMcrBGhOMrP/vmxB28dM2R1WiPOKZNda8FgeA5JOfStrPwlS/nITctNm
IiGBWBS2c25BQ1zqJAmG2icv6oiwOnedu34qC15aqwsUsRNUSCgO7vo6Qo6GAcpJ
6uoHPgcOhagqKr/DpipQkbgSwGxKBvK/RX/kZlSmHsJJXBhBOW9EVW2BhmUdCo0L
H22huCseLthmwSnt+1leayOefALjEAqANbdCjlRZoPU3i2ECaStbwebttHACLUSE
5oxb1gJ5umBeNL5WJu82u6RZ/EGBUjMlUs6YeJTvrex0XQe1oHq7QKr1/f6hipDM
Z3wV5+A5cH3HFfVFgzS6G1pjRLa/RWigt4PhUPgT0vtUETML7FN3Rf45jJWwREYs
XdHr77fUPy6CFxgTkdWCx1mj3Y9MPlm/9G7lpVUhg8CSLRYdYdwOh8K44odrg/Xs
qEd+bieCEMgEJdWLeurNawaXaw3zsZlEfTSL6CK8reSFBUhKQritoZy+l1CgaaLv
RUKCM6Lr0BaUgzKA7aM9nuYmW7UqwC5UQc6Fg2A7v9SssjCSn9KoDTkK37jlrmy2
/mVLRcluf5qX+XA1Ul9gkyyieq3Jw1DYN98T9mT2C08nN44tYeSfQbW4nTwx0brc
8BQbGfNb12VD1rGHC8IE
=XpIH
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to