Bug#969273: gnome-shell-extension-weather: Error loading the extension.

2020-09-06 Thread Simon McVittie
Control: retitle -1 gnome-shell-extension-weather: Incompatible with GNOME 
Shell 3.36

On Sun, 30 Aug 2020 at 16:07:45 +0200, Djalil Chafaï wrote:
> The extension is not loaded by Gnome. 
> 
> The gnome-tweaks displays for it a triangle with an exclamation mark.

On Sun, 06 Sep 2020 at 13:55:09 +0800, Paul Wise wrote:
> I have this issue too and I note that GNOME shell Looking Glass gives:
> 
> TypeError: this.actor.reparent is not a function

This extension is currently unmaintained in Debian and has only had
QA uploads since 2016. If you rely on it, please consider taking over
its maintenance, either as part of the GNOME team or independently:
see #828694.

Note that as outlined on #828694, there is more than one possible upstream
developer to be following.
https://extensions.gnome.org/extension/613/weather/ seems to correspond to
https://github.com/Neroth/gnome-shell-extension-weather while
https://extensions.gnome.org/extension/750/openweather/ seems to correspond
to https://gitlab.com/jenslody/gnome-shell-extension-openweather/
(formerly https://github.com/jenslody/gnome-shell-extension-openweather
which no longer exists). I don't know whether they use the same UUID
or different UUIDs.

smcv



Processed: Re: Bug#969273: gnome-shell-extension-weather: Error loading the extension.

2020-09-06 Thread Debian Bug Tracking System
Processing control commands:

> retitle -1 gnome-shell-extension-weather: Incompatible with GNOME Shell 3.36
Bug #969273 [gnome-shell-extension-weather] gnome-shell-extension-weather: 
fails to load: TypeError: this.actor.reparent is not a function
Changed Bug title to 'gnome-shell-extension-weather: Incompatible with GNOME 
Shell 3.36' from 'gnome-shell-extension-weather: fails to load: TypeError: 
this.actor.reparent is not a function'.

-- 
969273: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=969273
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: Bug#958621 marked as pending in schroot

2020-09-06 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #958621 [src:schroot] schroot: Build-Depends on deprecated dh-systemd which 
is going away
Added tag(s) pending.

-- 
958621: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=958621
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#861955: marked as done (canna: please make the output of mkbindic reproducible)

2020-09-06 Thread Debian Bug Tracking System
Your message dated Sun, 06 Sep 2020 15:03:51 +
with message-id 
and subject line Bug#861955: fixed in canna 3.7p3-16
has caused the Debian Bug report #861955,
regarding canna: please make the output of mkbindic reproducible
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.)


-- 
861955: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=861955
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: canna
Version: 3.7p3-13.1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps toolchain
X-Debbugs-Cc: reproducible-b...@lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that canna's mkbindic utility does not generate reproducible
output.

This affects other packages such as canna-shion, but probably
others.

Patch attached.

 [0] https://reproducible-builds.org/


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
diff --git a/cmd/crxdic/crxdic.c b/cmd/crxdic/crxdic.c
index 36d7a1f..4d76eef 100644
--- a/cmd/crxdic/crxdic.c
+++ b/cmd/crxdic/crxdic.c
@@ -31,6 +31,7 @@ static char rcsid[]="@(#) 102.1 $Id: crxdic.c,v 1.11.2.2 
2003/12/27 17:15:21 aid
 #include 
 #include 
 #include 
+#include 
 #include 
 #include "ccompat.h"
 #include "RKindep/file.h"
@@ -932,6 +933,9 @@ makeHeader(dic)
   unsigned i;
   RkiCksumCalc calc;
   unsigned off;
+  char *source_date_epoch;
+  unsigned long long epoch;
+  char *endptr;
 
   if (RkiCksumCRCInit(&calc)
   || RkiCksumAdd(&calc, dic->Dir->buf, dic->Dir->dirsiz)) {
@@ -963,7 +967,32 @@ makeHeader(dic)
 hd.data[HD_CMPV].var = 0x300702L;
 hd.flag[HD_CMPV] = -1;
   }
-  hd.data[HD_TIME].var = tloc = time(0);
+  source_date_epoch = getenv("SOURCE_DATE_EPOCH");
+  if (source_date_epoch) {
+errno = 0;
+epoch = strtoull(source_date_epoch, &endptr, 10);
+if ((errno == ERANGE && (epoch == ULLONG_MAX || epoch == 0))
+|| (errno != 0 && epoch == 0)) {
+fprintf(stderr, "Environment variable $SOURCE_DATE_EPOCH: 
strtoull: %s\n", strerror(errno));
+exit(EXIT_FAILURE);
+}
+if (endptr == source_date_epoch) {
+fprintf(stderr, "Environment variable $SOURCE_DATE_EPOCH: No 
digits were found: %s\n", endptr);
+exit(EXIT_FAILURE);
+}
+if (*endptr != '\0') {
+fprintf(stderr, "Environment variable $SOURCE_DATE_EPOCH: Trailing 
garbage: %s\n", endptr);
+exit(EXIT_FAILURE);
+}
+if (epoch > ULONG_MAX) {
+fprintf(stderr, "Environment variable $SOURCE_DATE_EPOCH: value 
must be smaller than or equal to %lu but was found to be: %llu \n", ULONG_MAX, 
epoch);
+exit(EXIT_FAILURE);
+}
+tloc = epoch;
+  } else {
+tloc = time(0);
+  }
+  hd.data[HD_TIME].var = tloc;
   hd.flag[HD_TIME] = -1;
   hd.data[HD_DMNM].ptr = (unsigned char *)STrdup(dic->name);
   hd.flag[HD_DMNM] = strlen(dic->name);
--- End Message ---
--- Begin Message ---
Source: canna
Source-Version: 3.7p3-16
Done: Francisco Vilmar Cardoso Ruviaro 

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

Debian distribution maintenance software
pp.
Francisco Vilmar Cardoso Ruviaro  (supplier of 
updated canna 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: SHA512

Format: 1.8
Date: Tue, 01 Sep 2020 03:14:05 +
Source: canna
Architecture: source
Version: 3.7p3-16
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Francisco Vilmar Cardoso Ruviaro 
Closes: 861955
Changes:
 canna (3.7p3-16) unstable; urgency=medium
 .
   * QA upload.
   * Configured git-buildpackage for Debian.
   * Ran wrap-and-sort -a.
   * debian/canna.lintian-overrides:
   - Removed unused override 'spelling-error-in-binary'.
   - Renamed tag binary-without-manpage to no-manual-page.
   * debian/canna-utils.lintian-overrides: renamed tag binary-without-manpage to
 no-manual-page.
   * debian/control: added 'Pre-

Processing of canna_3.7p3-16_source.changes

2020-09-06 Thread Debian FTP Masters
canna_3.7p3-16_source.changes uploaded successfully to localhost
along with the files:
  canna_3.7p3-16.dsc
  canna_3.7p3-16.debian.tar.xz
  canna_3.7p3-16_amd64.buildinfo

Greetings,

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



canna_3.7p3-16_source.changes ACCEPTED into unstable

2020-09-06 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 01 Sep 2020 03:14:05 +
Source: canna
Architecture: source
Version: 3.7p3-16
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Francisco Vilmar Cardoso Ruviaro 
Closes: 861955
Changes:
 canna (3.7p3-16) unstable; urgency=medium
 .
   * QA upload.
   * Configured git-buildpackage for Debian.
   * Ran wrap-and-sort -a.
   * debian/canna.lintian-overrides:
   - Removed unused override 'spelling-error-in-binary'.
   - Renamed tag binary-without-manpage to no-manual-page.
   * debian/canna-utils.lintian-overrides: renamed tag binary-without-manpage to
 no-manual-page.
   * debian/control: added 'Pre-Depends: ${misc:Pre-Depends}' as per lintian
 warning.
   * debian/libcanna1g.symbols: added 'Build-Depends-Package' field.
   * debian/patches:
   - 05_hppabuild.patch: removed patch applied by upstream.
   - 06_fix_spelling_error.patch renamed to 05_fix_spelling_error.patch.
   - 07_fix_manpages_error.patch renamed to 06_fix_manpages_error.patch.
   - 08_fix_ftbfs_on_hurd-i386.patch renamed to
 07_fix_ftbfs_on_hurd-i386.patch.
   - 09_fix_format_security.patch renamed to 08_fix_format_security.patch.
   - 10_fix_manpages_error.patch renamed to 09_fix_manpages_error.patch.
   - 11_fix_configure.ac.patch renamed to 10_fix_configure.ac.patch.
   - 11_fix_spelling_error_in_binary.patch: added.
   - 12_make_the_output_of_mkbindic_reproducible.patch: added.
 Thanks to Chris Lamb . (Closes: #861955)
   * debian/po/pt_BR.po: converted from ISO-8859-1 to UTF-8.
   * debian/rules:
   - Removed 'override_dh_auto_clean'.
   - Removed trailing whitespaces.
Checksums-Sha1:
 d2bfbcd833eb5468a4f2655052a337e321c09939 2082 canna_3.7p3-16.dsc
 ccb77dc665caa9b9fdf5ef39d596ccfc9dd925a8 52788 canna_3.7p3-16.debian.tar.xz
 b31bf2fcd8e0abbc5f227890256242981d92f029 9591 canna_3.7p3-16_amd64.buildinfo
Checksums-Sha256:
 98866363f3a775b656eb381413fd5ee38671205a6a1f69e7f17dc0f9f66b652f 2082 
canna_3.7p3-16.dsc
 d45a6ec02e5d0122eaedb42fb2e57b81891dbb03f23e91661852bcbbd25d73f6 52788 
canna_3.7p3-16.debian.tar.xz
 fe76face9e7814f01eb6b2e99e104c3d7f36ab239a342e3af262e8ad86a4 9591 
canna_3.7p3-16_amd64.buildinfo
Files:
 0c0c3193abc3a894d105b47c7e22773f 2082 utils optional canna_3.7p3-16.dsc
 3b9acb0ffa9e72354b02ebb01b91 52788 utils optional 
canna_3.7p3-16.debian.tar.xz
 e6a523e3f57faa346bf0c824915ac643 9591 utils optional 
canna_3.7p3-16_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEBdtqg34QX0sdAsVfu6n6rcz7RwcFAl9U9p4ACgkQu6n6rcz7
Rwd5wQ//QoQD9pvQd4dCzPaqpZDYjARIEkhPEBVNDYTAMVtc38mX7sbKT5oqkhN+
8X4mam/xiJ4X0khuJ5XiVGxNndHF92L1mJRiRCYRwFSRAXCXJHM3yglelb6cxD5L
mjh5s+9BI25C3BObMb6osRSZR60EBVXULWQewzU3nL6RzQ7nzT6klah7q8NV01Kr
LFJVjcQLyQLKNmI/KwR2baMWsgBdN6hbVsZtkmH4Pb84Nt/hs2ySNUn/LX12PsUM
x51J7GmDWnzPSzqSp+8tk3WRyA1hz2O6+/y239lActNRsHlpNJpG/Kj5H2NxLqYI
KUtCCkzg6wdWR+SiUwJfC73oRehl1XR3tSi30MtYbzn6Z0pSSmUHNnoBB11w0zK/
DAweSPM62Hvvw85DFGQBa6TcJC5kceh1kFAW0Q2rC/iT2unXPnABDVzaPSvWOzdn
TWZ+AlwxJibUSEBDH+rYw8/NtYVM9RsQ4FDzYjV3Zyr8furEjhfkcqK6aqJpTKpN
Woijg2V6w7e/F5KpzsIjy4Ct4DFhWA0Ryn9iqomTVhx4JVJq38I1NNugq0quvTdU
R/TYwepBpZLm9oP6oD80gxwgoC+q9iV5AdaPbLa1txPdsOoDm6tdzat0isVCOPYY
cbGmHb2QOrlcg0wUo02Boj23NQZUWO1qTifrqLFJVmMoY5nWJII=
=3mgx
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of schroot_1.6.10-10_source.changes

2020-09-06 Thread Debian FTP Masters
schroot_1.6.10-10_source.changes uploaded successfully to localhost
along with the files:
  schroot_1.6.10-10.dsc
  schroot_1.6.10-10.debian.tar.xz

Greetings,

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



schroot_1.6.10-10_source.changes ACCEPTED into unstable

2020-09-06 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 06 Sep 2020 16:33:58 +0200
Source: schroot
Architecture: source
Version: 1.6.10-10
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Johannes 'josch' Schauer 
Closes: 958621
Changes:
 schroot (1.6.10-10) unstable; urgency=medium
 .
   [ Alexis Murzeau ]
   * QA upload.
   * debian/control:
 + Remove Build-Depends on deprecated dh-systemd and depend on
   debhelper (>= 9.20160709) now that it integrates dh-systemd.
   Closes: #958621.
 .
   [ Johannes 'josch' Schauer ]
   * add debian/salsa-ci.yml
Checksums-Sha1:
 ee0ca358b1418b9dd97d8fd412b1c1a0c55a8d97 2291 schroot_1.6.10-10.dsc
 b8d66726dfe9fbbefb2267dcafb45e73cd2b6d12 82860 schroot_1.6.10-10.debian.tar.xz
Checksums-Sha256:
 a849e5acaa5f216196ff41e509d49079557ae6f74cfc7d024fd39acb597eeaa6 2291 
schroot_1.6.10-10.dsc
 c68b8b520d1bc8e7b6cdeac001f4aaac7ef987adc2019abb6d7d53b7e7f60f90 82860 
schroot_1.6.10-10.debian.tar.xz
Files:
 7192897276ada2e98e8ddbf19631bc5a 2291 admin optional schroot_1.6.10-10.dsc
 402fe3e4537f24c33ed9d17a834f8cd3 82860 admin optional 
schroot_1.6.10-10.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEElFhU6KL81LF4wVq58sulx4+9g+EFAl9U/PQACgkQ8sulx4+9
g+EKTw//cuLPfUZ8Ev1f8Lne+GSJ91/D0OHVYo2RGP3zfaFo+uv4ylXgBDIz9d0j
RJRr4WW2I3XqYhHDmTazvLqdqlM4f9ksb4nVbgDqLpp2dqQ3P1xHdLMZwLJsi93y
6CMt5pXPZ4I6X0F7Nz750URzHWJ23oDroDkxznnqkPdmqXXlHTAm23Nf7lYZmAIY
PfWq5wA0Zn8oM3lDKu97nZ6rzzzHFfy2xsL9uZSv0TDDZPAE4DRnX2o4wuYwH6cb
aXJd5TKcbHX1/FlkgJdC+dh5LKeyM9fZirbY2ApKAr6QhkopMBYgiSRfHE8YPTEv
CgEX77zP5eIJegqrBXzDZT0RsiBxyMhDkNSOq3yStsI2PN5/ThdO99qY19WU1lOb
eJTyjvRDear56nQp5I8DDfbacZEjwKQWriHNnephN7HKkNWFCLNRfOBVM+noiChb
YxNReO1uEgPvYt/LYUx/SD3M664QGT4LOHH3M+1cxbbwJoEkAyZhrUXySEMI8n6Q
uHcmoh/+h+FCQAlGJgp3Ilsidu+jQLdlPZwo+kTCD8iNKOpzeXaSIqALJpp/ULIf
Sra8jJRsR/nzyE7rrludpVeeCy17w/CUKtyixWOHRneYbHzgPxM9HUsqV50+Pk7u
l4ij6XBTHKZeFWRxwvwZ2cFTMaC54Zgad+dcy4EXgIH8a33wcB4=
=EIAX
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#958621: marked as done (schroot: Build-Depends on deprecated dh-systemd which is going away)

2020-09-06 Thread Debian Bug Tracking System
Your message dated Sun, 06 Sep 2020 15:34:53 +
with message-id 
and subject line Bug#958621: fixed in schroot 1.6.10-10
has caused the Debian Bug report #958621,
regarding schroot: Build-Depends on deprecated dh-systemd which is going away
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.)


-- 
958621: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=958621
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: schroot
Severity: normal
User: pkg-systemd-maintain...@lists.alioth.debian.org
Usertags: dh-systemd-removal

Hi,

your package schroot declares a build dependency on dh-systemd.
dh-systemd was merged into debhelper in version 9.20160709 [1] and since
stretch, dh-systemd is an empty transitional package.

For bullseye we intend to drop this empty transitional package.

Once we drop dh-systemd, this bug report will become RC.

Please update your package accordingly. The change should be as simple as
replacing the build dependency on dh-systemd with a build dependency on
debhelper (>= 9.20160709).

Regards,
Michael

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=822670
--- End Message ---
--- Begin Message ---
Source: schroot
Source-Version: 1.6.10-10
Done: Johannes 'josch' Schauer 

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

Debian distribution maintenance software
pp.
Johannes 'josch' Schauer  (supplier of updated schroot 
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: Sun, 06 Sep 2020 16:33:58 +0200
Source: schroot
Architecture: source
Version: 1.6.10-10
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Johannes 'josch' Schauer 
Closes: 958621
Changes:
 schroot (1.6.10-10) unstable; urgency=medium
 .
   [ Alexis Murzeau ]
   * QA upload.
   * debian/control:
 + Remove Build-Depends on deprecated dh-systemd and depend on
   debhelper (>= 9.20160709) now that it integrates dh-systemd.
   Closes: #958621.
 .
   [ Johannes 'josch' Schauer ]
   * add debian/salsa-ci.yml
Checksums-Sha1:
 ee0ca358b1418b9dd97d8fd412b1c1a0c55a8d97 2291 schroot_1.6.10-10.dsc
 b8d66726dfe9fbbefb2267dcafb45e73cd2b6d12 82860 schroot_1.6.10-10.debian.tar.xz
Checksums-Sha256:
 a849e5acaa5f216196ff41e509d49079557ae6f74cfc7d024fd39acb597eeaa6 2291 
schroot_1.6.10-10.dsc
 c68b8b520d1bc8e7b6cdeac001f4aaac7ef987adc2019abb6d7d53b7e7f60f90 82860 
schroot_1.6.10-10.debian.tar.xz
Files:
 7192897276ada2e98e8ddbf19631bc5a 2291 admin optional schroot_1.6.10-10.dsc
 402fe3e4537f24c33ed9d17a834f8cd3 82860 admin optional 
schroot_1.6.10-10.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEElFhU6KL81LF4wVq58sulx4+9g+EFAl9U/PQACgkQ8sulx4+9
g+EKTw//cuLPfUZ8Ev1f8Lne+GSJ91/D0OHVYo2RGP3zfaFo+uv4ylXgBDIz9d0j
RJRr4WW2I3XqYhHDmTazvLqdqlM4f9ksb4nVbgDqLpp2dqQ3P1xHdLMZwLJsi93y
6CMt5pXPZ4I6X0F7Nz750URzHWJ23oDroDkxznnqkPdmqXXlHTAm23Nf7lYZmAIY
PfWq5wA0Zn8oM3lDKu97nZ6rzzzHFfy2xsL9uZSv0TDDZPAE4DRnX2o4wuYwH6cb
aXJd5TKcbHX1/FlkgJdC+dh5LKeyM9fZirbY2ApKAr6QhkopMBYgiSRfHE8YPTEv
CgEX77zP5eIJegqrBXzDZT0RsiBxyMhDkNSOq3yStsI2PN5/ThdO99qY19WU1lOb
eJTyjvRDear56nQp5I8DDfbacZEjwKQWriHNnephN7HKkNWFCLNRfOBVM+noiChb
YxNReO1uEgPvYt/LYUx/SD3M664QGT4LOHH3M+1cxbbwJoEkAyZhrUXySEMI8n6Q
uHcmoh/+h+FCQAlGJgp3Ilsidu+jQLdlPZwo+kTCD8iNKOpzeXaSIqALJpp/ULIf
Sra8jJRsR/nzyE7rrludpVeeCy17w/CUKtyixWOHRneYbHzgPxM9HUsqV50+Pk7u
l4ij6XBTHKZeFWRxwvwZ2cFTMaC54Zgad+dcy4EXgIH8a33wcB4=
=EIAX
-END PGP SIGNATURE End Message ---


Processing of ale_0.9.0.3-5_source.changes

2020-09-06 Thread Debian FTP Masters
ale_0.9.0.3-5_source.changes uploaded successfully to localhost
along with the files:
  ale_0.9.0.3-5.dsc
  ale_0.9.0.3-5.debian.tar.xz
  ale_0.9.0.3-5_source.buildinfo

Greetings,

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



ale_0.9.0.3-5_source.changes ACCEPTED into unstable

2020-09-06 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 05 Sep 2020 19:12:01 +0200
Source: ale
Architecture: source
Version: 0.9.0.3-5
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Adam Borowski 
Changes:
 ale (0.9.0.3-5) unstable; urgency=medium
 .
   * QA upload.
   * Mark the autopkgtest as superficial.
Checksums-Sha1:
 a7bc8517280b5c587fb1ca3b2aa41a2dd73527b0 1711 ale_0.9.0.3-5.dsc
 558a0fbb7dd0a48e96df31395886b8ada241f76c 5916 ale_0.9.0.3-5.debian.tar.xz
 fada9a9b8d2f777ef14b84e311dcbd8ebd4a3249 5052 ale_0.9.0.3-5_source.buildinfo
Checksums-Sha256:
 4707d104c68f0044f7eeab4d8d28c08de1e5e31aef85e2f68bccc4fff9b9abf0 1711 
ale_0.9.0.3-5.dsc
 4c29b1871dece3e160c2301a1b194720193ffdbd3831498d22fb69830acdf7b7 5916 
ale_0.9.0.3-5.debian.tar.xz
 711574b97a3f7a3ac8938cdb7ef3cd638a5486ad6b075b576028e78b95401dc5 5052 
ale_0.9.0.3-5_source.buildinfo
Files:
 c1ef0d25acb52e01d0d89075f2874ecc 1711 graphics optional ale_0.9.0.3-5.dsc
 905ecb43da2532bc6c3c23be8c4688af 5916 graphics optional 
ale_0.9.0.3-5.debian.tar.xz
 53ab05ea52afb52bd2e8029ae5a2c7ae 5052 graphics optional 
ale_0.9.0.3-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEkjZVexcMh/iCHArDweDZLphvfH4FAl9VJ/wACgkQweDZLphv
fH4pHBAA7GrH6yI5NDLW7tXT7um3ZaJcQxe3kPVrF1cZ1Eo/1xFDbvTh+E1HuzfJ
YdHoMbVjXncbsqk7skNoKgEpBMEY09C7rCtG4Rkg3wTnVhl5DUuFSIlzFBpCjwZX
m//ROOJQqfu/laE9HGt7c+8lnV1MguDO9n2UIjf1rAnZDZ6F7QDfRt5ZDbt9Krkz
K/fYdWkU+FBE9bkhhXLtNN2F2z2+ehXcytbn8zOu6dzT6Xo0agDvUnqfjbwiteOn
o1bO9FCaJXCVIVS5s29i6JzUrCmKG8rTHC4wS/75Pm/tXBfblUS+myftjenHyVK/
MZ0S8GQ4mZ8pxsEJ94YCmw3BmC7k2kHYmbrFTmGtFcsFIqbbag+fN2yG5k5oT4sq
XT3oxYZKmM//SwT94KsDtjrDUrxtFln4XDLMsdlE6D6GF+gLpVD9BXyJjb6v8ETQ
YKbvx6CBCmlg2cq16iqjxnFqWeL0wDHa7T57t1ahRcRbVX3LzYTMWAVMijBQZPMc
DrCxXla+dXF15DyFZhnHIaR9IRV32dyjsNmCM+NLdlZqvYwUGtCZ7mfuv9JssYV+
UtkUcFhGIgo57p8SxKC7+kJulGI3+irF22rT+3LiyGxd4snDM3DJOsTvwWJHIzIU
08qjemW4/1yrUa3CfzELZIc0sTFHDV29xnQcsohVGW0UyDkPQ50=
=gaxZ
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of dav-text_0.9.0-2_source.changes

2020-09-06 Thread Debian FTP Masters
dav-text_0.9.0-2_source.changes uploaded successfully to localhost
along with the files:
  dav-text_0.9.0-2.dsc
  dav-text_0.9.0-2.debian.tar.xz
  dav-text_0.9.0-2_amd64.buildinfo

Greetings,

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



dav-text_0.9.0-2_source.changes ACCEPTED into unstable

2020-09-06 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 06 Sep 2020 20:58:14 +0100
Source: dav-text
Architecture: source
Version: 0.9.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Sudip Mukherjee 
Closes: 957119
Changes:
 dav-text (0.9.0-2) unstable; urgency=medium
 .
   * QA upload.
   * Orphan the package. (See: #968355)
   * Fix ftbfs with GCC-10. (Closes: #957119)
   * Update Standards-Version to 4.5.0
   * Update compat level to 13.
   * Remove whitespace from d/changelog.
Checksums-Sha1:
 a9d1ef33c0b1d6eae17dcef8d1aece3472f254b7 1731 dav-text_0.9.0-2.dsc
 19492e08826b8a9ad14f5b176c5a8f5866a2c7ec 3188 dav-text_0.9.0-2.debian.tar.xz
 07a3d3361f2303789fc16081527cee93ac605805 5745 dav-text_0.9.0-2_amd64.buildinfo
Checksums-Sha256:
 8ff5e3e3e682e94aded12dcb9085bc469cb90ce50d57bc16e7babdffa80e7b03 1731 
dav-text_0.9.0-2.dsc
 a360e1350611b2d8c4e7ef3a94be3af9624812162215f954f615cd5a3d1fabc6 3188 
dav-text_0.9.0-2.debian.tar.xz
 e53e5e3da993f36323a27a54c5e0eef9302f820d22cd907cac946756f63c7ee7 5745 
dav-text_0.9.0-2_amd64.buildinfo
Files:
 ba00815ea2ad042e313993ad3be467ba 1731 text optional dav-text_0.9.0-2.dsc
 ed406e394b19c9f9d3e51b5f3c20c2d6 3188 text optional 
dav-text_0.9.0-2.debian.tar.xz
 0583cb27f89df8dca61c22849520cccf 5745 text optional 
dav-text_0.9.0-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEuDQJkCg9jZvBlJrHR5mjUUbRKzUFAl9VQD0ACgkQR5mjUUbR
KzVaHhAAu0c9Xz+/CiZZ6dqf711NV+YRy4MvRY1jlT5LlYydNh1UyCNQgN8QRyUm
Nkt2xeXJtcx+OSbSzpRIFuqvuNDGcvd6nfd+J6+K2G5qCgprHy8v0puDCZj57kqI
sQrjMI8S4NHUH1i7xn/SzVs20eAmT2ncrKqmGcB0imjJLG3PmJlIjflBBRjE84tp
hSLNvVd4ku2HTIrcLvk0dX9iegLSdgU58qJ60oRpent+bsbFcl7prEBaVLIQCEMw
0UPqRy7o/Oc+6YNyC0N0U1WAlwLtK8F65D4wjU24qPAvL8VrKVcuEO+Sq+UqIlwq
JCnpf8NQxhyUiWoOTRd58X+2GCvCVtaE4m+kUpX6h7aQ/hXZF/iqDmPa+kvhCgH2
nIDfPOJTl3ijOVWnoFxRYerAvpIgCSa54F9ZA9Sew9bgeDBpkPzPZlfHl8Ct9FcY
L7zitw8uuY+S8l2kqLMBxg8LX2gJaFit7rV0V8fXv0z0qSuHzRachzkVzWxT0jf9
uJ9qiW/Ame+WViSNLzqe4llJWiWCLGEfVXzW+f/JLJyILNGD7Zo4m0aCgR+Ia7EY
Rl3ZAwYW8rmNAZtX5WoBm8cQx4q6FvY5/TQBYDo1VVoeJhXTFq9lq+E4h4GKaivc
0ivQqUBoHx5/cjbnAj0HgZRzBsgQHG7ASdRaoowhn7IdPP+PaAE=
=3dQ8
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processed: Re: bcolz: FTBFS with newer python3-numpydoc

2020-09-06 Thread Debian Bug Tracking System
Processing control commands:

> retitle -1 bcolz: FTBFS with newer python3-sphinx
Bug #965354 [src:bcolz] bcolz: FTBFS with newer python3-numpydoc
Changed Bug title to 'bcolz: FTBFS with newer python3-sphinx' from 'bcolz: 
FTBFS with newer python3-numpydoc'.

-- 
965354: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=965354
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#965354: bcolz: FTBFS with newer python3-numpydoc

2020-09-06 Thread Christian Kastner
Control: retitle -1 bcolz: FTBFS with newer python3-sphinx

On Mon, 20 Jul 2020 09:51:26 +0200 Christian Kastner wrote:
> Source: bcolz
> Version: 1.2.1+ds2-5
> Severity: serious
> Justification: FTBFS



Bug#965354: marked as done (bcolz: FTBFS with newer python3-sphinx)

2020-09-06 Thread Debian Bug Tracking System
Your message dated Sun, 06 Sep 2020 23:33:29 +
with message-id 
and subject line Bug#965354: fixed in bcolz 1.2.1+ds2-6
has caused the Debian Bug report #965354,
regarding bcolz: FTBFS with newer python3-sphinx
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.)


-- 
965354: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=965354
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: bcolz
Version: 1.2.1+ds2-5
Severity: serious
Justification: FTBFS

Hi,

bcolz FTBFS on amd64 with an updated version of python3-numpydoc.

Here is the tail of the build log. The error seems to originate
during the build of the documentation:


PYTHONPATH=/<>/.pybuild/cpython3_3.8_bcolz/build \
http_proxy='127.0.0.1:9' sphinx-build -N docs/ 
debian/bcolz-doc/usr/share/doc/bcolz-doc/html/
Running Sphinx v2.4.3
making output directory... done
building [mo]: targets for 0 po files that are out of date
building [html]: targets for 7 source files that are out of date
updating environment: [new config] 7 added, 0 changed, 0 removed
reading sources... [ 14%] defaults
reading sources... [ 28%] index
reading sources... [ 42%] install
reading sources... [ 57%] intro
reading sources... [ 71%] opt-tips
reading sources... [ 85%] reference

Exception occurred:
  File "/usr/lib/python3/dist-packages/numpydoc/docscrape.py", line 324, in 
_parse_see_also
raise ParseError("%s is not a item name" % line)
numpydoc.docscrape.ParseError: cparams.setdefaults() is not a item name in 
"cparams(clevel=None, shuffle=None, cname=None, quantize=None)\n\nClass to host 
parameters for compression and other filters.\n\nParameters\n--\nclevel 
: int (0 <= clevel < 10)\nThe compression level.\nshuffle : int\nThe 
shuffle filter to be activated.  Allowed values are\nbcolz.NOSHUFFLE (0), 
bcolz.SHUFFLE (1) and bcolz.BITSHUFFLE (2).  The\ndefault is 
bcolz.SHUFFLE.\ncname : string ('blosclz', 'lz4', 'lz4hc', 'snappy', 'zlib', 
'zstd')\nSelect the compressor to use inside Blosc.\nquantize : int (number 
of significant digits)\nQuantize data to improve (lossy) compression.  Data 
is quantized using\nnp.around(scale*data)/scale, where scale is 2**bits, 
and bits is\ndetermined from the quantize value.  For example, if 
quantize=1, bits\nwill be 4.  0 means that the quantization is 
disabled.\n\nIn case some of the parameters are not passed, they will be\nset 
to a default (see `setdefaults()` method).\n\nSee 
also\n\ncparams.setdefaults()"
The full traceback has been saved in /tmp/sphinx-err-ec7z35mu.log, if you want 
to report the issue to the developers.
Please also report this if it was a user error, so that a better error message 
can be provided next time.
A bug report can be filed in the tracker at 
. Thanks!
make[1]: Leaving directory '/<>'
make[1]: *** [debian/rules:22: override_dh_auto_install] Error 2
make: *** [debian/rules:17: binary] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary subprocess returned exit 
status 2
--- End Message ---
--- Begin Message ---
Source: bcolz
Source-Version: 1.2.1+ds2-6
Done: Christian Kastner 

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

Debian distribution maintenance software
pp.
Christian Kastner  (supplier of updated bcolz 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: SHA512

Format: 1.8
Date: Sun, 06 Sep 2020 23:16:09 +0200
Source: bcolz
Architecture: source
Version: 1.2.1+ds2-6
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Christian Kastner 
Closes: 965354
Changes:
 bcolz (1.2.1+ds2-6) unstable; urgency=medium
 .
   * QA upload.
   * Add Documentation-fixes-for-newer-sphinx.patch (Closes: #965354)
   * Set Rules-Requires-Root: no
   * Bump Standards-Version to 4.5.0
   * Bump d/watch version to 4
   * Switch from d/compat to debhelper-compat
   * Bump debhelper compatibility level to 13
   * autopkgtest: Test all requested versions, not just installed
   * wrap-and-sort
Checksums-Sha1:
 e9125a9e

Processing of bcolz_1.2.1+ds2-6_source.changes

2020-09-06 Thread Debian FTP Masters
bcolz_1.2.1+ds2-6_source.changes uploaded successfully to localhost
along with the files:
  bcolz_1.2.1+ds2-6.dsc
  bcolz_1.2.1+ds2-6.debian.tar.xz
  bcolz_1.2.1+ds2-6_source.buildinfo

Greetings,

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



bcolz_1.2.1+ds2-6_source.changes ACCEPTED into unstable

2020-09-06 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 06 Sep 2020 23:16:09 +0200
Source: bcolz
Architecture: source
Version: 1.2.1+ds2-6
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Christian Kastner 
Closes: 965354
Changes:
 bcolz (1.2.1+ds2-6) unstable; urgency=medium
 .
   * QA upload.
   * Add Documentation-fixes-for-newer-sphinx.patch (Closes: #965354)
   * Set Rules-Requires-Root: no
   * Bump Standards-Version to 4.5.0
   * Bump d/watch version to 4
   * Switch from d/compat to debhelper-compat
   * Bump debhelper compatibility level to 13
   * autopkgtest: Test all requested versions, not just installed
   * wrap-and-sort
Checksums-Sha1:
 e9125a9ee61ef1795f12b3bed58b1ee84a32c3c1 2458 bcolz_1.2.1+ds2-6.dsc
 32aa97724a4ee2b78188201018e99f4cad08c2c8 5916 bcolz_1.2.1+ds2-6.debian.tar.xz
 c0d8e0855db4b45e577b9b77344853c5a7917fcb 7063 
bcolz_1.2.1+ds2-6_source.buildinfo
Checksums-Sha256:
 c67a2b97066267fff07885f8d6575c533433949cb6149b85383db81fccebdcf2 2458 
bcolz_1.2.1+ds2-6.dsc
 ea58147bcbdbf1d2b6b443ab1a5dc0d8cd024aab381e750cc3cb7d78d95766e4 5916 
bcolz_1.2.1+ds2-6.debian.tar.xz
 5ce8257d6527c8b787b5821166b83191aaa1a28f6b30d0d584f15a3ad52982a7 7063 
bcolz_1.2.1+ds2-6_source.buildinfo
Files:
 e4795bb3bf731b33f6aa6053856b3908 2458 science optional bcolz_1.2.1+ds2-6.dsc
 18899d09070a53dca59874ca4862b191 5916 science optional 
bcolz_1.2.1+ds2-6.debian.tar.xz
 a99b9f037c5f0c0b22740a63baf56e81 7063 science optional 
bcolz_1.2.1+ds2-6_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEQZ9+mkfDq5UZ8bCjOZU6N95Os2sFAl9VbjQACgkQOZU6N95O
s2u9qw/9HtIX9fKQWWFBKMwV4K3Xdh8khmXPplL92OYIh7OtiDeczs9XIagax+8F
GSZnXaPb69JcfXqpQvHBkcyfeEL1FMMjAkWqanNJt8XxgWB/6ozeI5L/wVTG4/wr
ATu7waX2WY8xZSq4cx/OebXN1oGfdYDCklNBaXD3BW24YsCsC2eB7xYVp2ksX0a6
FgmjvBDiwF3h8di+E9c8lKzVRoaNjL8+wcyYYVmCaMkyo175q2RcSFyPtlJWp2VL
waMGwnDURheZIo8yQD1Cl7OAyZzX5sa23U0ePXEBeSMecQIW0RW7rqBX6W0aR7LM
UmITUFAA76NngiAHWmJ3VdM6X/9b4s1Hlg+jGPvWqr50CRg2XHMzokcpMJwrHTU5
/x+ATvWGQbPFAD7gc+HXejFuh11QaWhosXpzGqFgGAkWBipOzErhX3AvSg547rm+
8fKa+cOXc22zAHUo3w0LonVOEFlFmwDBLbX1P4GyrWEDlRL948CDi8fA7ApoS3DM
c/iiutIQqmdk88jc3DwgBvnq5/YVHPzB+aP7DlxWRyR8QdMvlNSyC6F+Hx/vFAFV
de4qiDx9Oaq157DRuLvm2Osa7gAGmt4SEtnLqeUugYXmlxLNjRqrEqz+rki9L3rr
X/P+j0vhPeb6UzJ1aTB3mZsVtWe/oWWxVw+Qwf5CWimQLyGdwGY=
=8KLP
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



gnome-shell-extension-weather is marked for autoremoval from testing

2020-09-06 Thread Debian testing autoremoval watch
gnome-shell-extension-weather 0~20170402.git34506a6-2 is marked for autoremoval 
from testing on 2020-09-28

It is affected by these RC bugs:
969273: gnome-shell-extension-weather: Incompatible with GNOME Shell 3.36
 https://bugs.debian.org/969273



This mail is generated by:
https://salsa.debian.org/release-team/release-tools/-/blob/master/mailer/mail_autoremovals.pl

Autoremoval data is generated by:
https://salsa.debian.org/qa/udd/-/blob/master/udd/testing_autoremovals_gatherer.pl