Bug#908013: libindicator FTBFS with glib 2.58

2018-09-05 Thread Adrian Bunk
Source: libindicator
Version: 0.5.0-3
Severity: serious
Tags: ftbfs buster sid

https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/libindicator.html

...
/build/1st/libindicator-0.5.0/./libindicator/indicator-object.c: In function 
'indicator_object_class_init':
/build/1st/libindicator-0.5.0/./libindicator/indicator-object.c:131:2: error: 
'g_type_class_add_private' is deprecated [-Werror=deprecated-declarations]
  g_type_class_add_private (klass, sizeof (IndicatorObjectPrivate));
  ^~~~
In file included from /usr/include/glib-2.0/gobject/gobject.h:24,
 from /usr/include/glib-2.0/gobject/gbinding.h:29,
 from /usr/include/glib-2.0/glib-object.h:23,
 from /usr/include/glib-2.0/gio/gioenums.h:28,
 from /usr/include/glib-2.0/gio/giotypes.h:28,
 from /usr/include/glib-2.0/gio/gio.h:26,
 from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
 from /usr/include/gtk-2.0/gdk/gdk.h:32,
 from /usr/include/gtk-2.0/gtk/gtk.h:32,
 from 
/build/1st/libindicator-0.5.0/./libindicator/indicator.h:26,
 from 
/build/1st/libindicator-0.5.0/./libindicator/indicator-object.c:28:
/usr/include/glib-2.0/gobject/gtype.h:1303:10: note: declared here
 void g_type_class_add_private   (gpointerg_class,
  ^~~~
cc1: all warnings being treated as errors
make[4]: *** [Makefile:643: libindicator_la-indicator-object.lo] Error 1



Bug#894262: marked as done (regexxer: Intent to remove package from Debian)

2018-09-05 Thread Debian Bug Tracking System
Your message dated Wed, 5 Sep 2018 11:01:58 +0300
with message-id <20180905080158.GH31424@localhost>
and subject line gconf has been adopted
has caused the Debian Bug report #894262,
regarding regexxer: Intent to remove package from Debian
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.)


-- 
894262: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=894262
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: regexxer
Version: 0.10-3
Severity: serious
Tags: sid buster

regexxer was orphaned 8 years ago. [1]

Its last upstream release, 0.10, was in 2011.

Although there has been some activity in git [2], I think we can consider this 
software unmaintained if it never does releases.

It is blocking the eventual removal of gconf from Debian. Therefore, I intend 
to file a removal bug for this package soon.

[1] https://bugs.debian.org/569345
[2] https://git.gnome.org/browse/regexxer/log/

Thanks,
Jeremy Bicha
--- End Message ---
--- Begin Message ---
gconf has been adopted, making it a non-issue when a reverse dependency 
depends on it.

cu
Adrian

-- 

   "Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   "Only a promise," Lao Er said.
   Pearl S. Buck - Dragon Seed--- End Message ---


Bug#894262: closed by Adrian Bunk (gconf has been adopted)

2018-09-05 Thread Jeremy Bicha
> From: Adrian Bunk 
> To: 894262-d...@bugs.debian.org
> Cc:
> Bcc:
> Date: Wed, 5 Sep 2018 11:01:58 +0300
> Subject: gconf has been adopted
> gconf has been adopted, making it a non-issue when a reverse dependency
> depends on it.

That only fixes one of the issues I have with the package. It is
unmaintained in Debian and upstream. I would like to reopen this bug
and convert it into a removal bug now.

Thanks,
Jeremy Bicha

> cu
> Adrian
>
> --
>
>"Is there not promise of rain?" Ling Tan asked suddenly out
> of the darkness. There had been need of rain for many days.
>"Only a promise," Lao Er said.
>Pearl S. Buck - Dragon Seed
>
>
> -- Forwarded message --
> From: Jeremy Bicha 
> To: submit 
> Cc:
> Bcc:
> Date: Tue, 27 Mar 2018 17:38:26 -0400
> Subject: regexxer: Intent to remove package from Debian
> Source: regexxer
> Version: 0.10-3
> Severity: serious
> Tags: sid buster
>
> regexxer was orphaned 8 years ago. [1]
>
> Its last upstream release, 0.10, was in 2011.
>
> Although there has been some activity in git [2], I think we can consider 
> this software unmaintained if it never does releases.
>
> It is blocking the eventual removal of gconf from Debian. Therefore, I intend 
> to file a removal bug for this package soon.
>
> [1] https://bugs.debian.org/569345
> [2] https://git.gnome.org/browse/regexxer/log/
>
> Thanks,
> Jeremy Bicha



Bug#908047: Respect DEB_BUILD_OPTIONS='noopt nostrip'

2018-09-05 Thread Sam Morris
Package: swish++
Version: 6.1.5-5
Severity: normal
Tags: patch

The following changes cause the build to respect
DEB_BUILD_OPTIONS='noopt nostrip'.

diff -Nru swish++-6.1.5/debian/rules swish++-6.1.5/debian/rules
--- swish++-6.1.5/debian/rules  2017-08-12 05:07:33.0 +0100
+++ swish++-6.1.5/debian/rules  2018-09-05 13:51:23.0 +0100
@@ -13,12 +13,11 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-# These are probably irrelevant since the source is g++
-CFLAGS = -g -Wall
+OPTIM := -g -Wall
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-CFLAGS += -O0
+OPTIM += -O0
 else
-CFLAGS += -O2
+OPTIM += -O2
 endif
 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
 install_program += -s
@@ -43,7 +42,7 @@
 build-stamp: configure-stamp
dh_testdir
# Add here commands to compile the package.
-   $(MAKE)
+   $(MAKE) "OPTIM=$(OPTIM)"
touch build-stamp
 
 clean: unpatch

-- System Information:
Debian Release: 9.5
  APT prefers stable-updates
  APT policy: (540, 'stable-updates'), (540, 'stable'), (520, 'testing'), (510, 
'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 4.9.0-6-686-pae (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages swish++ depends on:
ii  libc6   2.24-11+deb9u3
ii  libstdc++6  6.3.0-18+deb9u1
ii  perl5.24.1-3+deb9u4
ii  zlib1g  1:1.2.8.dfsg-5

swish++ recommends no packages.

Versions of packages swish++ suggests:
pn  antiword
pn  xpdf-utils  



Processed: tagging 535882

2018-09-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 535882 + security
Bug #535882 [swish++] swish++: insecure temp files handling
Added tag(s) security.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
535882: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=535882
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: tagging 803342

2018-09-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 803342 - moreinfo + patch
Bug #803342 [swish++] dhelp: Weekly cron job terminates, doesn't create 
'documents.index'
Bug #803343 [swish++] dhelp_parse -i terminates, no 'documents.index' created
Removed tag(s) moreinfo.
Removed tag(s) moreinfo.
Bug #803342 [swish++] dhelp: Weekly cron job terminates, doesn't create 
'documents.index'
Bug #803343 [swish++] dhelp_parse -i terminates, no 'documents.index' created
Added tag(s) patch.
Added tag(s) patch.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
803342: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803342
803343: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803343
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#716238: [Mayhem] Bug report on swish++: search++ crashes with exit status 139

2018-09-05 Thread Sam Morris
Package: swish++
Version: 6.1.5-4
Followup-For: Bug #716238

(gdb) bt
#0  0x55b262658592 in index_segment::set_index_file(PJL::mmap_file const&, 
index_segment::segment_id) (this=0x55b262690c60 , file=..., 
id=index_segment::isi_stop_word) at index_segment.c:58
#1  0x55b26266b4e1 in main(int, char**) (argc=1, argv=0x7ffc958b7340) at 
search.c:296

(gdb) info locals
i = 1
c = 0xa0a89246e06ca10 
p = 0xa0a89246e06ca10

Crash occurs in this code:

51  {
52  register mmap_file::const_iterator c = begin_ = file.begin();
53  register size_type const *p = reinterpret_cast( c 
);
54  num_entries_ = p[ 0 ];
55  for ( int i = id; i > 0; --i ) {
56  c += sizeof( num_entries_ ) + num_entries_ * sizeof( off_t );
57  p = reinterpret_cast( c );
58  num_entries_ = p[ 0 ]; // <-- here
59  }
60  offset_ = reinterpret_cast( &p[ 1 ] );
61  }
62  /* vim:set et sw=4 ts=4: */

-- System Information:
Debian Release: 9.5
  APT prefers stable-updates
  APT policy: (540, 'stable-updates'), (540, 'stable'), (520, 'testing'), (510, 
'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 4.9.0-6-686-pae (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages swish++ depends on:
ii  libc6   2.24-11+deb9u3
ii  libstdc++6  6.3.0-18+deb9u1
ii  perl5.24.1-3+deb9u4
ii  zlib1g  1:1.2.8.dfsg-5

swish++ recommends no packages.

Versions of packages swish++ suggests:
pn  antiword
pn  xpdf-utils  



Bug#894262: closed by Adrian Bunk (gconf has been adopted)

2018-09-05 Thread Adrian Bunk
On Wed, Sep 05, 2018 at 07:32:58AM -0400, Jeremy Bicha wrote:
> > From: Adrian Bunk 
> > To: 894262-d...@bugs.debian.org
> > Cc:
> > Bcc:
> > Date: Wed, 5 Sep 2018 11:01:58 +0300
> > Subject: gconf has been adopted
> > gconf has been adopted, making it a non-issue when a reverse dependency
> > depends on it.
> 
> That only fixes one of the issues I have with the package. It is 
> unmaintained in Debian and upstream.
>...

We have (sometimes quite popular) packages that are unmaintained 
upstream for over 20 years - this is not a problem, actually far
less of a problem than active upstreams breaking various stuff.

And the package is not unmaintained in Debian, it is maintained by the
Debian QA Group. This is pretty well maintained by Debian standards,
it doesn't happen here that a trivial one-line FTBFS fix does not get
applied for over half a year.

> Thanks,
> Jeremy Bicha

cu
Adrian

-- 

   "Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   "Only a promise," Lao Er said.
   Pearl S. Buck - Dragon Seed



Bug#894262: closed by Adrian Bunk (gconf has been adopted)

2018-09-05 Thread Jeremy Bicha
On Wed, Sep 5, 2018 at 11:21 AM Adrian Bunk  wrote:
> We have (sometimes quite popular) packages that are unmaintained
> upstream for over 20 years - this is not a problem, actually far
> less of a problem than active upstreams breaking various stuff.
>
> And the package is not unmaintained in Debian, it is maintained by the
> Debian QA Group. This is pretty well maintained by Debian standards,
> it doesn't happen here that a trivial one-line FTBFS fix does not get
> applied for over half a year.

Hmm, so I guess we'll wait 9 months or so and then remove regexxer
from Debian? If so, we could still reopen this bug and just mark it
buster-ignore or something.

Anyway, there are
https://salsa.debian.org/gnome-team/gconf
https://salsa.debian.org/gnome-team/gconf-editor

Let me know where you want those repos to be moved to.

Because of issues with the svn-to-gconf conversion, tagged releases
might not exactly match what was actually uploaded for that version
number.

I don't think it really makes sense to keep gconf-editor in Debian.
Until you pushed stuff back into Testing, there was only one package
in Testing that used gconf (eclipse). Even now, there's really not
enough in Testing to justify needing to use gconf-editor to change
settings.

Thanks,
Jeremy Bicha



Processing of libpam-radius-auth_1.4.0-2_source.changes

2018-09-05 Thread Debian FTP Masters
libpam-radius-auth_1.4.0-2_source.changes uploaded successfully to localhost
along with the files:
  libpam-radius-auth_1.4.0-2.dsc
  libpam-radius-auth_1.4.0-2.debian.tar.xz
  libpam-radius-auth_1.4.0-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



Bug#908006: marked as done (configuration file mismatch)

2018-09-05 Thread Debian Bug Tracking System
Your message dated Wed, 05 Sep 2018 20:42:28 +
with message-id 
and subject line Bug#908006: fixed in libpam-radius-auth 1.4.0-2
has caused the Debian Bug report #908006,
regarding configuration file mismatch
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.)


-- 
908006: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=908006
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libpam-radius-auth
Version: 1.4.0-1

I configured /etc/pam_radius_auth.conf properly, but auth mechanism
doesn't work as I expected.  /var/log/auth.log shows as follows:


|Sep  5 13:58:51 rssrv sshd[6350]: pam_radius_auth: Could not open 
configuration 
|file /etc/raddb/server: No such file or directory


So I copied the config file to /etc/raddb/server, then, it works.

The documentation /usr/share/doc/libpam-radius-auth/README.Debian
says that

|NOTE: The Debian version of libpam-radius-auth uses as default configuration
|file /etc/pam_radius_auth.conf.

which is not match to my case.

On the other hand, "stretch" version (1.3.16-5) works just as
the documentation above.

I'm using Debian 4.17.17-1 (2018-08-18) x86_64 GNU/Linux.

Thank you.
--- End Message ---
--- Begin Message ---
Source: libpam-radius-auth
Source-Version: 1.4.0-2

We believe that the bug you reported is fixed in the latest version of
libpam-radius-auth, 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 908...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Niels Thykier  (supplier of updated libpam-radius-auth 
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: SHA256

Format: 1.8
Date: Wed, 05 Sep 2018 19:44:07 +
Source: libpam-radius-auth
Binary: libpam-radius-auth
Architecture: source
Version: 1.4.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Niels Thykier 
Description:
 libpam-radius-auth - PAM RADIUS authentication module
Closes: 908006
Changes:
 libpam-radius-auth (1.4.0-2) unstable; urgency=medium
 .
   * QA upload.
   * Fix a regression that made libpam-radius-auth/1.4.0-1 use
 a different configuration file than intended.  This version
 restores /etc/pam_radius_auth.conf as the configuration
 file for Debian package of libpam-radius-auth.
 (Closes: #908006)
   * Use the new "debhelper-compat (= 11)" method for specifying
 debhelper compat version.
Checksums-Sha1:
 aea915dd6e4af8a476aa68ac202c4cca46c99773 1847 libpam-radius-auth_1.4.0-2.dsc
 88a8bc91a171569ed38732784657af25fcd8ac0b 5724 
libpam-radius-auth_1.4.0-2.debian.tar.xz
 0ffc17be1007897478b4b4bb52606f9d7e23e625 5203 
libpam-radius-auth_1.4.0-2_source.buildinfo
Checksums-Sha256:
 ba3ff6e63ad3c6cdc39f49a73506ee08b0ae849d438d1fd9ef6b14092c7624a5 1847 
libpam-radius-auth_1.4.0-2.dsc
 516caf8cd6f0ab65bcfaceadaabf7233e0ac5a65a1ee151c59a1d8eac559f561 5724 
libpam-radius-auth_1.4.0-2.debian.tar.xz
 6ad7ace85f2613eeec5368f80489faf575a928676459708e4933abed794b7a67 5203 
libpam-radius-auth_1.4.0-2_source.buildinfo
Files:
 bd281e29d2c96868652657b5e373d38d 1847 admin optional 
libpam-radius-auth_1.4.0-2.dsc
 5ce7c70c187dbc2b86e86b563c87cea6 5724 admin optional 
libpam-radius-auth_1.4.0-2.debian.tar.xz
 fb16ae8648e90192c35dbb2ca3a6b3f4 5203 admin optional 
libpam-radius-auth_1.4.0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEsxMaRR2/33ygW0GXBUu7n32AZEIFAluQNFYACgkQBUu7n32A
ZEIA4BAAtIM+2MVbW6rdvUMMJJ3+EViPuCywUKsKlCDgPA/gvkuHpWgRfdsJMmsC
jr73zWPtfi3e/1F6eaDyCFEbBURSsDWZZ0WAw+pL9fHX0xNAZ0z1/kYj5b8t0rh/
ztNQt3FqPSIEtsWwDNvXCes63GeWi+ZMy0gnTfGab+gJmUZXdFrJ+x1+6kNuR5bv
J/uUc4lc5lY3HTvpjEv+7E5xRvakIjAjHp0fC2k3YNzJZC88unxxirzgPL3c5NV+
wfnOklGqngP+6AgF6VW8+0s1J06ataXioKlip0PdgK9uKQw6Eblq1KQsjmQ1Zd/6
M5T55XUsdQgwHyVkiPWzqukk1/6kBtP3StZEZVInDIZuSLTcIka+/ZWVy90PXhuR
RD8WTWJbznMK9B9BYKhxiU8+RF0Hzp+8GF8jqzB/IQwMW8GoapLIbIy11EhaO04v
tHPi7xLQGlhDNzZ7l+PmLubeg6ALuFQl0mqAje+lNWFhTH/CFFqZ/XBQZf05f1SP
x+Nl5tNgVZRlZxM3m7ytzy8ukZUMS3pSjxLEcZHcHNt2anynoAFX+Q91PVS/yd2m
cVzaLxLnEARZt/wH7mN+ZvYsWcpow5slsPKOD5hhfhrnPN6AeQyHTO/0YwhBiehJ
kDEuUB5JV+omlNkieJKHfCiG5eTtgGs34xBVuxQ4XYa2FllaYeU=
=E0EG
-END PGP SIGNATURE End Message ---


Bug#908073: difference between manual and program behavior

2018-09-05 Thread -=}\*/{=-
Package: tsocks
Version: 1.8beta5+ds1-1

in tsocks manual says...

   
  create a new shell with LD_PRELOAD including tsocks(8).

but when running tsocks without arguments says...

  /usr/bin/tsocks: insufficient arguments

Using: Linux 4.9.0-8-amd64 #1 SMP Debian 4.9.110-3+deb9u4 (2018-08-21)
x86_64 GNU/Linux



libpam-radius-auth_1.4.0-2_source.changes ACCEPTED into unstable

2018-09-05 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 05 Sep 2018 19:44:07 +
Source: libpam-radius-auth
Binary: libpam-radius-auth
Architecture: source
Version: 1.4.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Niels Thykier 
Description:
 libpam-radius-auth - PAM RADIUS authentication module
Closes: 908006
Changes:
 libpam-radius-auth (1.4.0-2) unstable; urgency=medium
 .
   * QA upload.
   * Fix a regression that made libpam-radius-auth/1.4.0-1 use
 a different configuration file than intended.  This version
 restores /etc/pam_radius_auth.conf as the configuration
 file for Debian package of libpam-radius-auth.
 (Closes: #908006)
   * Use the new "debhelper-compat (= 11)" method for specifying
 debhelper compat version.
Checksums-Sha1:
 aea915dd6e4af8a476aa68ac202c4cca46c99773 1847 libpam-radius-auth_1.4.0-2.dsc
 88a8bc91a171569ed38732784657af25fcd8ac0b 5724 
libpam-radius-auth_1.4.0-2.debian.tar.xz
 0ffc17be1007897478b4b4bb52606f9d7e23e625 5203 
libpam-radius-auth_1.4.0-2_source.buildinfo
Checksums-Sha256:
 ba3ff6e63ad3c6cdc39f49a73506ee08b0ae849d438d1fd9ef6b14092c7624a5 1847 
libpam-radius-auth_1.4.0-2.dsc
 516caf8cd6f0ab65bcfaceadaabf7233e0ac5a65a1ee151c59a1d8eac559f561 5724 
libpam-radius-auth_1.4.0-2.debian.tar.xz
 6ad7ace85f2613eeec5368f80489faf575a928676459708e4933abed794b7a67 5203 
libpam-radius-auth_1.4.0-2_source.buildinfo
Files:
 bd281e29d2c96868652657b5e373d38d 1847 admin optional 
libpam-radius-auth_1.4.0-2.dsc
 5ce7c70c187dbc2b86e86b563c87cea6 5724 admin optional 
libpam-radius-auth_1.4.0-2.debian.tar.xz
 fb16ae8648e90192c35dbb2ca3a6b3f4 5203 admin optional 
libpam-radius-auth_1.4.0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEsxMaRR2/33ygW0GXBUu7n32AZEIFAluQNFYACgkQBUu7n32A
ZEIA4BAAtIM+2MVbW6rdvUMMJJ3+EViPuCywUKsKlCDgPA/gvkuHpWgRfdsJMmsC
jr73zWPtfi3e/1F6eaDyCFEbBURSsDWZZ0WAw+pL9fHX0xNAZ0z1/kYj5b8t0rh/
ztNQt3FqPSIEtsWwDNvXCes63GeWi+ZMy0gnTfGab+gJmUZXdFrJ+x1+6kNuR5bv
J/uUc4lc5lY3HTvpjEv+7E5xRvakIjAjHp0fC2k3YNzJZC88unxxirzgPL3c5NV+
wfnOklGqngP+6AgF6VW8+0s1J06ataXioKlip0PdgK9uKQw6Eblq1KQsjmQ1Zd/6
M5T55XUsdQgwHyVkiPWzqukk1/6kBtP3StZEZVInDIZuSLTcIka+/ZWVy90PXhuR
RD8WTWJbznMK9B9BYKhxiU8+RF0Hzp+8GF8jqzB/IQwMW8GoapLIbIy11EhaO04v
tHPi7xLQGlhDNzZ7l+PmLubeg6ALuFQl0mqAje+lNWFhTH/CFFqZ/XBQZf05f1SP
x+Nl5tNgVZRlZxM3m7ytzy8ukZUMS3pSjxLEcZHcHNt2anynoAFX+Q91PVS/yd2m
cVzaLxLnEARZt/wH7mN+ZvYsWcpow5slsPKOD5hhfhrnPN6AeQyHTO/0YwhBiehJ
kDEuUB5JV+omlNkieJKHfCiG5eTtgGs34xBVuxQ4XYa2FllaYeU=
=E0EG
-END PGP SIGNATURE-


Thank you for your contribution to Debian.