Your message dated Tue, 29 Aug 2017 05:00:15 +0000
with message-id <[email protected]>
and subject line Bug#811078: fixed in gedit-plugins 3.22.0-2
has caused the Debian Bug report #811078,
regarding gedit-plugins: Python related depends too tight: Causes problems 
during transitions
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.)


-- 
811078: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811078
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: gedit-plugins
Version: 3.18.0-1
Severity: important
Tags: patch

Currently, gedit-plugins gets python3 interpreter depends like this (when
built with python3.4 as default python3):

python3 (<< 3.5), python3 (>= 3.4~), python3.4

As a result, gedit-plugins became uninstallable once the default was updated
to python3.5.  While a binNMU corrected this, it's entirely unnecessary. I
looked and there's no compiled python extensions in the plugins, it's all
arch all python that does not need rebuilding when the version changes.

Ths problem is that because dh_python3 was being called for all plugins, some
of which are compiled, dh_python treated them as python3 extensions for
dependency calculation.

Please see the attached patch that addresses this issue.  With it the python3
interpreter depend is:

python3:any (>= 3.3.2-2~)

No more trouble during transitions, the package is always installable.  This
fixes the exact problem that led to #810866 being filed.

Scott K
diff -Nru gedit-plugins-3.18.0/debian/changelog gedit-plugins-3.18.0/debian/changelog
--- gedit-plugins-3.18.0/debian/changelog	2015-09-27 04:17:15.000000000 -0400
+++ gedit-plugins-3.18.0/debian/changelog	2016-01-15 08:21:48.000000000 -0500
@@ -1,3 +1,11 @@
+gedit-plugins (3.18.0-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Relax excessively tight python interpreter depends for gedit-plugins
+    - Only run dh_python3 for plugins with actual python content
+
+ -- Scott Kitterman <[email protected]>  Fri, 15 Jan 2016 08:14:53 -0500
+
 gedit-plugins (3.18.0-1) unstable; urgency=medium
 
   * New upstream release. (Closes: #800053)
diff -Nru gedit-plugins-3.18.0/debian/rules gedit-plugins-3.18.0/debian/rules
--- gedit-plugins-3.18.0/debian/rules	2015-09-27 04:13:33.000000000 -0400
+++ gedit-plugins-3.18.0/debian/rules	2016-01-15 08:36:17.000000000 -0500
@@ -24,6 +24,22 @@
 
 binary-install/gedit-plugins::
 	find debian/$(cdbs_curpkg) -name '*.la' -delete
-	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) --no-ext-rename /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins
-	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) --no-ext-rename /usr/share/gedit/plugins
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/colorpicker.py
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/terminal.py
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/git/
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/codecomment.py
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/colorschemer/
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/charmap/
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/dashboard/
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/multiedit/
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/bracketcompletion.py
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/commander/
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/synctex/
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/joinlines.py
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/gpdefs.py
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/textsize
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/smartspaces.py
+	rm -rf $(CURDIR)/debian/$(cdbs_curpkg)/usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/*.pyc
+	rm -rf $(CURDIR)/debian/$(cdbs_curpkg)/usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins/*.pyo
+	dh_python3 --shebang=/usr/bin/python3 -p$(cdbs_curpkg) /usr/share/gedit/plugins
 

--- End Message ---
--- Begin Message ---
Source: gedit-plugins
Source-Version: 3.22.0-2

We believe that the bug you reported is fixed in the latest version of
gedit-plugins, 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.
Jeremy Bicha <[email protected]> (supplier of updated gedit-plugins 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: Mon, 28 Aug 2017 20:38:00 -0400
Source: gedit-plugins
Binary: gedit-plugins gedit-plugins-common gedit-plugin-bookmarks 
gedit-plugin-bracket-completion gedit-plugin-character-map 
gedit-plugin-code-comment gedit-plugin-color-picker gedit-plugin-color-schemer 
gedit-plugin-commander gedit-plugin-dashboard gedit-plugin-draw-spaces 
gedit-plugin-find-in-files gedit-plugin-git gedit-plugin-join-lines 
gedit-plugin-multi-edit gedit-plugin-smart-spaces gedit-plugin-synctex 
gedit-plugin-terminal gedit-plugin-text-size gedit-plugin-word-completion 
gedit-plugin-zeitgeist
Architecture: source amd64 all
Version: 3.22.0-2
Distribution: unstable
Urgency: medium
Maintainer: Jeremy Bicha <[email protected]>
Changed-By: Jeremy Bicha <[email protected]>
Description:
 gedit-plugin-bookmarks - Bookmarks plugin for gedit
 gedit-plugin-bracket-completion - Bracket Completion plugin for gedit
 gedit-plugin-character-map - Character Map plugin for gedit
 gedit-plugin-code-comment - Code Comment plugin for gedit
 gedit-plugin-color-picker - Color Picker plugin for gedit
 gedit-plugin-color-schemer - Color Schemer plugin for gedit
 gedit-plugin-commander - Commander plugin for gedit
 gedit-plugin-dashboard - Dashboard plugin for gedit
 gedit-plugin-draw-spaces - Draw Spaces plugin for gedit
 gedit-plugin-find-in-files - Find in Files plugin for gedit
 gedit-plugin-git - Git plugin for gedit
 gedit-plugin-join-lines - Join/Split Lines plugin for gedit
 gedit-plugin-multi-edit - Multi Edit plugin for gedit
 gedit-plugin-smart-spaces - Smart Spaces plugin for gedit
 gedit-plugin-synctex - SyncTex plugin for gedit
 gedit-plugin-terminal - Terminal plugin for gedit
 gedit-plugin-text-size - Text Size plugin for gedit
 gedit-plugin-word-completion - Word Completion plugin for gedit
 gedit-plugin-zeitgeist - Zeitgeist plugin for gedit
 gedit-plugins - set of plugins for gedit
 gedit-plugins-common - common files for gedit-plugins
Closes: 811078
Changes:
 gedit-plugins (3.22.0-2) unstable; urgency=medium
 .
   * Split plugins into separate packages so that they can be individually
     installed or uninstalled by appstream clients.
   * debian/rules:
     - Set max-parallel=4 to fix missing translations with extreme
       parallelism. Thanks, Debian Reproducible Builds project.
     - Fix excessively tight python3 depends, thanks Scott Kitterman
       (Closes: #811078)
   * debian/docs: Don't install useless README.
   * Bump Standards-Version to 4.0.1.
Checksums-Sha1:
 30f0257d801ac87511616d4f7c0be1242842a7ad 4099 gedit-plugins_3.22.0-2.dsc
 7909788c4fea66f8b5153dc85c59711805b7693c 8176 
gedit-plugins_3.22.0-2.debian.tar.xz
 66f285ce3516f098d78d52ea9baaa99cd5040591 41208 
gedit-plugin-bookmarks-dbgsym_3.22.0-2_amd64.deb
 789f3254b5d3c100ea9eeeb9eaa433e23099f9b6 28838 
gedit-plugin-bookmarks_3.22.0-2_amd64.deb
 415102c4e06e6b17140b815e488edb8ab7b93cad 17238 
gedit-plugin-bracket-completion_3.22.0-2_amd64.deb
 c870acd85bc1936f572de6cbf2801eaddbcda0ca 20646 
gedit-plugin-character-map_3.22.0-2_amd64.deb
 ee44dba36e0f75b77aed87b463a83dd6fba0b80b 21410 
gedit-plugin-code-comment_3.22.0-2_amd64.deb
 e4660aa09d974622fe403e93a47bffcbc9c8ad5d 23094 
gedit-plugin-color-picker_3.22.0-2_amd64.deb
 83ce0b01ea4a88907d70e1e1c7f70d324ee33c1f 17828 
gedit-plugin-color-schemer_3.22.0-2_amd64.deb
 dce59405b4e2245c8c87a4f854761c42f99138c0 47388 
gedit-plugin-commander_3.22.0-2_amd64.deb
 e33cca6cd1717e1512f23304dbcba9e243c88677 23276 
gedit-plugin-dashboard_3.22.0-2_amd64.deb
 7519343affb783604d239c98233bb4f059c00692 28266 
gedit-plugin-draw-spaces-dbgsym_3.22.0-2_amd64.deb
 f346b763c9070b7229361e39fc38e024c2f4120c 26740 
gedit-plugin-draw-spaces_3.22.0-2_amd64.deb
 fb435b867efde61b2c7ade35c292abb15e515869 111202 
gedit-plugin-find-in-files-dbgsym_3.22.0-2_amd64.deb
 655d9dd0169c6258ce9abe34c9cefd5b1f12b0eb 32122 
gedit-plugin-find-in-files_3.22.0-2_amd64.deb
 ba0ae239ffb59497c37072d3d54805cb036f1027 22604 
gedit-plugin-git_3.22.0-2_amd64.deb
 9cc324b4cabb7908ac4ea7f73424648c5989cc93 20882 
gedit-plugin-join-lines_3.22.0-2_amd64.deb
 f2bbf634c202e323ea3108b1009f48c86c6fa0a0 28046 
gedit-plugin-multi-edit_3.22.0-2_amd64.deb
 a7a8db23e26699db6c5efab1d6ea8cccb913e3b1 11138 
gedit-plugin-smart-spaces_3.22.0-2_amd64.deb
 181a798b2bec4e220cbd791b77d47fc0d41b8d7b 13718 
gedit-plugin-synctex_3.22.0-2_amd64.deb
 be5ecccba67254abd323fff17cf70f97e8b5a6e9 20118 
gedit-plugin-terminal_3.22.0-2_amd64.deb
 7146f9b2cb92d7d927b6836378ba8d3053718ecb 18530 
gedit-plugin-text-size_3.22.0-2_amd64.deb
 7f93febfd691d78812c41fda7d786f2eb3cf18db 19200 
gedit-plugin-word-completion-dbgsym_3.22.0-2_amd64.deb
 41d88faae1f9ba962301bd558bb1ac047801757d 25092 
gedit-plugin-word-completion_3.22.0-2_amd64.deb
 a454719bf8dc0d9f877362d8e11b6b4c83facb78 16564 
gedit-plugin-zeitgeist-dbgsym_3.22.0-2_amd64.deb
 6a5f4bcc534a49c7693653ecfba589de6094967d 18808 
gedit-plugin-zeitgeist_3.22.0-2_amd64.deb
 48f486e38f7c4f0feb490fa2466df7167f80daaf 290922 
gedit-plugins-common_3.22.0-2_amd64.deb
 8f36bc5d8325d4b75a0881504f4085cee40714ff 13094 gedit-plugins_3.22.0-2_all.deb
 9b5096b293ec430fbf9def6644b8bd025a9369fd 24309 
gedit-plugins_3.22.0-2_amd64.buildinfo
Checksums-Sha256:
 d8d6585d3a36c5e9e5d7de614cae4ea5c3ac5fa700303b0c94859097f63a67b8 4099 
gedit-plugins_3.22.0-2.dsc
 f8a7be4e45af486f3ca92958450d8c600336a61294d12aab690793f079c3a355 8176 
gedit-plugins_3.22.0-2.debian.tar.xz
 6d9c020e898f54e8c4a2f163be4ec18dddee9b27b45a2b190d64346567d17118 41208 
gedit-plugin-bookmarks-dbgsym_3.22.0-2_amd64.deb
 10ff535ff324fa80b53f268864c19eaa5d5707ff28424759e9e97e1bee6d1098 28838 
gedit-plugin-bookmarks_3.22.0-2_amd64.deb
 837e87e6fa9a9e79aad3f8076087bb81d4a0ac19f0028a1079567a47ba78c1c5 17238 
gedit-plugin-bracket-completion_3.22.0-2_amd64.deb
 995ef8aaeb0ee3823bff4d7dd884f2a9f9b7bd5c513fe417c8b8d0d980ec8c89 20646 
gedit-plugin-character-map_3.22.0-2_amd64.deb
 c48a3289f8aeeda1db8280d5ade6418fd128aa55e1e523585abae57f6547b3a9 21410 
gedit-plugin-code-comment_3.22.0-2_amd64.deb
 acbe3571e3a51634b7b65a345b25dac1877778721802304ef46be1e1f617f41b 23094 
gedit-plugin-color-picker_3.22.0-2_amd64.deb
 db0c777e9178a9858c4cbef5efb33ccc7a2ee4f738dff174dd76baaaaa979e68 17828 
gedit-plugin-color-schemer_3.22.0-2_amd64.deb
 e656199924d6f094841a3672bddc95ebdd44bb21fcb1d3b292840ff578575f79 47388 
gedit-plugin-commander_3.22.0-2_amd64.deb
 81da20bc25a235f70e8ddbd5edf4e9c48b0f20ecfc92b8566a722f7e69e36879 23276 
gedit-plugin-dashboard_3.22.0-2_amd64.deb
 2b70ba5ac27dc3584ee48ec8b849c5396009956182a1405899e2d3c10b7d6f5d 28266 
gedit-plugin-draw-spaces-dbgsym_3.22.0-2_amd64.deb
 5157256a628946f778d9a574f33ccd33f6826b768f571ded14f1d69a64446bbe 26740 
gedit-plugin-draw-spaces_3.22.0-2_amd64.deb
 608aa940fb40c366a09789df4a21a244ec818411d361c0ed7654328f8cebdad2 111202 
gedit-plugin-find-in-files-dbgsym_3.22.0-2_amd64.deb
 ad77ee4190fa97d797cd73627c056fb7d7027ec4ca0e62076fb4d302c2647181 32122 
gedit-plugin-find-in-files_3.22.0-2_amd64.deb
 e1b474b8c2b08effe86d41cf2e21ab770e3d3535c8c54262106bf46261c8a97d 22604 
gedit-plugin-git_3.22.0-2_amd64.deb
 e0d088ca40aa8db2a09943ae1e798a3a5ca72d1140d764f82e3f99bf93be5b4c 20882 
gedit-plugin-join-lines_3.22.0-2_amd64.deb
 bd5ab5db4604aa5cac726c8291a6159ca7c864aa5306e17d35d1318c9098b8df 28046 
gedit-plugin-multi-edit_3.22.0-2_amd64.deb
 2eaf8da38552899414be215371e044840cae94e3290c806b68fdba94f354716f 11138 
gedit-plugin-smart-spaces_3.22.0-2_amd64.deb
 bb7904c3b7f05e60aa3bfeb9f261a0e0fd8478e8fd2c0866f7b4cc60b01292e2 13718 
gedit-plugin-synctex_3.22.0-2_amd64.deb
 744cec7dedc66f50e8974ad538ee5f85d0e0e81a87bb85c309c654da2f2a3e7c 20118 
gedit-plugin-terminal_3.22.0-2_amd64.deb
 96eb93e9deee8468a1147e6575678b09fa4886528575d3dec19aae4077487010 18530 
gedit-plugin-text-size_3.22.0-2_amd64.deb
 8e46d0b85d3539f6c7cf497282b2e6619fd8d99300fd5613c193802ef63c046c 19200 
gedit-plugin-word-completion-dbgsym_3.22.0-2_amd64.deb
 48042979c8cae9020122d707e27c68f615101dd8b72224f8a0c2363db3c9560c 25092 
gedit-plugin-word-completion_3.22.0-2_amd64.deb
 31810b7ac1b6e6fd27d37f4468fa2608aeb9de01e37b7b5da3e4c0f14364ccf9 16564 
gedit-plugin-zeitgeist-dbgsym_3.22.0-2_amd64.deb
 21f055625cb07d16e31ae210caf38ba302f25d9e3b82006f6774d7dac7b44ad1 18808 
gedit-plugin-zeitgeist_3.22.0-2_amd64.deb
 21f31da57de04131405e31263ed4d05cb2fdfdbfed6ad6973a7042780eab6445 290922 
gedit-plugins-common_3.22.0-2_amd64.deb
 242a63878a6c014aba8e3f6e6e0cf06d81c75135827e3a3a6eb133460c3187e8 13094 
gedit-plugins_3.22.0-2_all.deb
 7cd91536ac3e42bc3c7f280df832b9c55b670da5af0ad226ee9bf1a9cca89f42 24309 
gedit-plugins_3.22.0-2_amd64.buildinfo
Files:
 4ef64443bf8ee016b1f30d629f5cec48 4099 gnome optional gedit-plugins_3.22.0-2.dsc
 fc686331d223a20f3450816ee06b8b96 8176 gnome optional 
gedit-plugins_3.22.0-2.debian.tar.xz
 6e18b7d31b141d0a155ddc8a94dd6632 41208 debug extra 
gedit-plugin-bookmarks-dbgsym_3.22.0-2_amd64.deb
 16df3e3716cdfa8a218c68c614329c54 28838 gnome optional 
gedit-plugin-bookmarks_3.22.0-2_amd64.deb
 5cdedae855f07d2dfb9b99ceec22d3c4 17238 gnome optional 
gedit-plugin-bracket-completion_3.22.0-2_amd64.deb
 dffd60ba6a9e9b9eb8e82ad65fa734fd 20646 gnome optional 
gedit-plugin-character-map_3.22.0-2_amd64.deb
 e7d0f51a501048c276e17a6511622eaa 21410 gnome optional 
gedit-plugin-code-comment_3.22.0-2_amd64.deb
 164c008b48a93177e5b500f30b6a5303 23094 gnome optional 
gedit-plugin-color-picker_3.22.0-2_amd64.deb
 1721a7bc04cd669618a5d1fa24337985 17828 gnome optional 
gedit-plugin-color-schemer_3.22.0-2_amd64.deb
 23d124e2af402a607c2407121f084c26 47388 gnome optional 
gedit-plugin-commander_3.22.0-2_amd64.deb
 d0532103871befb373db512160c5df45 23276 gnome optional 
gedit-plugin-dashboard_3.22.0-2_amd64.deb
 2323a753b0477a574e3e4d147f2d34e4 28266 debug extra 
gedit-plugin-draw-spaces-dbgsym_3.22.0-2_amd64.deb
 8a139f3098b1915fa7c2cebb01bb0f79 26740 gnome optional 
gedit-plugin-draw-spaces_3.22.0-2_amd64.deb
 d2db7333e5d43a9543d43b9f64602cf4 111202 debug extra 
gedit-plugin-find-in-files-dbgsym_3.22.0-2_amd64.deb
 af2bfb27916f5f205af4e99ea9f21da5 32122 gnome optional 
gedit-plugin-find-in-files_3.22.0-2_amd64.deb
 8ec51ae64b9af7243a940f350e55ba02 22604 gnome optional 
gedit-plugin-git_3.22.0-2_amd64.deb
 af21907bad1f47379aec7d5dfe6a5af4 20882 gnome optional 
gedit-plugin-join-lines_3.22.0-2_amd64.deb
 2b03bf8796705eda91885c02580b2590 28046 gnome optional 
gedit-plugin-multi-edit_3.22.0-2_amd64.deb
 0fdc051c480f0929f42e89334704292f 11138 gnome optional 
gedit-plugin-smart-spaces_3.22.0-2_amd64.deb
 d94d1b8d8ef3d2402306c7f470fe8271 13718 gnome optional 
gedit-plugin-synctex_3.22.0-2_amd64.deb
 813452ad95a37bc2914f6027be34d19c 20118 gnome optional 
gedit-plugin-terminal_3.22.0-2_amd64.deb
 158d8f9c24ef9442d632df101178b12e 18530 gnome optional 
gedit-plugin-text-size_3.22.0-2_amd64.deb
 7102c9c0e6ce480af6d7ed92d648bfec 19200 debug extra 
gedit-plugin-word-completion-dbgsym_3.22.0-2_amd64.deb
 48facb64c64c4d5370b1af5321053483 25092 gnome optional 
gedit-plugin-word-completion_3.22.0-2_amd64.deb
 a7d399bbc501df148cc8d45a93d7996c 16564 debug extra 
gedit-plugin-zeitgeist-dbgsym_3.22.0-2_amd64.deb
 9c866d7256c7c2d61af37631c661d662 18808 gnome optional 
gedit-plugin-zeitgeist_3.22.0-2_amd64.deb
 a944a8d25fd654c33b192c1fbe1b16ff 290922 gnome optional 
gedit-plugins-common_3.22.0-2_amd64.deb
 125ba3610c7d01710dbe23be8575fd23 13094 gnome optional 
gedit-plugins_3.22.0-2_all.deb
 f3db3928c86659c98827ac8d89935278 24309 gnome optional 
gedit-plugins_3.22.0-2_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIcBAEBCgAGBQJZpMReAAoJEOZsd1rr/mx93oQQAK0Rcb4uWyTfWuLfFupijvhF
QL4GTJ5SR/20ZZjQlmU7gNVLj6g1qykgOb6gkN7KcVFNvz1Mled/pMiAAzd6sD0p
SqIlGfLq9HOmVaZkFYGb111U8hLtmYZFxXKS6D+fhLobPr84dVEPJONOdLuXBMhI
owWnhyzQ2gJQDVLZDHt52WdlhPF3su45csNEwERUMlzfiD/NjOKvHeO9+nt++sU3
HrlBer0ZgOBCXuwsLnz4en69C7DxVBNlYvxLoYok8LnhLpDLcWi/kDdVSQn3fxeP
Nuq2bbWcwB5icCQHRAtnH6/PiZK02g3Xa9smdbo3f9aQpEgQctFBOnnSEaRPHgl9
5GplG4vgGJFKli8iyaQj9yEkjbJV2d9pFo8nsTQvCRKjvJt140+6pXTa6BjpIrmi
qrf71ygUSx988yUVQ/cussgNCxAtHgCsTv5tm3M2i0yGKlWorxT1kf2jJTuGa55y
SRFA+IkPjiS+942J9mRVx4OVttYWrBivKDVmBdNfr0DumI2hf9pBTp++Ns0ebEqG
L1R1qgT00O44vHQez1I9S4pO+swNeLiCyEciGDiPHpA1+B9p+TjfWf4aRPlhY1jY
0JiYmTaRv6Feu8IbkIIFwqlhewIrSEdrDnDjfFwj4FM1OL2sR0TDECXpIwXbajvW
+CK/BjRAXc60KIlGEpg1
=T2zW
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to