Processed: pcp: FTBFS on some archs: Cannot find (any matches for) "usr/lib/pcp/pmdas/infiniband[...]

2020-11-13 Thread Debian Bug Tracking System
Processing control commands:

> block 968912 with -1
Bug #968912 [release.debian.org] transition: perl 5.32
968912 was blocked by: 968913 972274 974061 961157 974021 964902 961208 974134 
974058 974055 972275 974143 961154 961152 973010 974063 974574 960863 961155 
974170
968912 was not blocking any bugs.
Added blocking bug(s) of 968912: 974704

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



Processed: Re: Bug#970884: transition: Evolution 3.38

2020-11-13 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + confirmed
Bug #970884 [release.debian.org] transition: Evolution 3.38
Added tag(s) confirmed.

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



Bug#970884: transition: Evolution 3.38

2020-11-13 Thread Sebastian Ramacher
Control: tags -1 + confirmed

Hi Sebastien

On 2020-11-09 23:21:46 +0100, Sebastien Bacher wrote:
> Hey there,
> 
> The new evolution 3.38 stack from experimental is ready to upload to
> unstable. The transition has been completed in Ubuntu 20.10 which means
> we have the needed fixes available to complete it in Debian as well, I'm
> happy to help with uploads (NMU if needed)

Please go ahead with the upload to unstable.

Cheers
-- 
Sebastian Ramacher


signature.asc
Description: PGP signature


Bug#974698: RM: freshplayerplugin -- RoQA; Obsolete, Unsupported by browsers, EOL upstream

2020-11-13 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: rm

Quoting from https://bugs.debian.org/966474, i.e. the removal from sid:

On Wed, 29 Jul 2020 00:56:15 +0100 Dimitri John Ledkov  wrote:
> As per Adobe Flash Player EOL [1] flash player is going end of life by
> end of this year. Similar statements are linked from that article by
> Apple, Facebook, Google, Microsoft and Mozilla.
> 
> Currently browsers in Debian have already dropped NPAPI and the
> package itself fails to build from source. [2] [3]
> 
> The time has come to kill Flash and remove this package from the archive.
> 
> 
> [1] 
> https://www.adobe.com/uk/products/flashplayer/end-of-life.html?cq_ck=1591175470736
> 
> [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=947288
> 
> [3] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=949478

The FTBFS is probably not an issue on buster, but the otherwise useless
package should go from stable as well.


Andreas



Bug#974695: buster-pu: package libxml2/2.9.4+dfsg1-7+deb10u1

2020-11-13 Thread Moritz Muehlenhoff
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: mattiadebian.org

This fixes a few low severity security fixes affecting libxml2,
I've tested the package on a buster system with a few rdeps.

Cheers,
Moritz
diff -Nru libxml2-2.9.4+dfsg1/debian/changelog 
libxml2-2.9.4+dfsg1/debian/changelog
--- libxml2-2.9.4+dfsg1/debian/changelog2018-05-26 12:03:44.0 
+0200
+++ libxml2-2.9.4+dfsg1/debian/changelog2020-11-06 18:13:19.0 
+0100
@@ -1,3 +1,14 @@
+libxml2 (2.9.4+dfsg1-7+deb10u1) buster; urgency=medium
+
+  * CVE-2017-18258 (Closes: #895245)
+  * CVE-2018-14404 (Closes: #901817)
+  * CVE-2018-14567
+  * CVE-2019-19956
+  * CVE-2019-20388 (Closes: #949583)
+  * CVE-2020-7595  (Closes: #949582)
+
+ -- Moritz Mühlenhoff   Fri, 06 Nov 2020 18:35:40 +0100
+
 libxml2 (2.9.4+dfsg1-7) unstable; urgency=medium
 
   * Team upload.
diff -Nru libxml2-2.9.4+dfsg1/debian/patches/0020-CVE-2017-18258.patch 
libxml2-2.9.4+dfsg1/debian/patches/0020-CVE-2017-18258.patch
--- libxml2-2.9.4+dfsg1/debian/patches/0020-CVE-2017-18258.patch
1970-01-01 01:00:00.0 +0100
+++ libxml2-2.9.4+dfsg1/debian/patches/0020-CVE-2017-18258.patch
2018-08-10 20:29:49.0 +0200
@@ -0,0 +1,25 @@
+From e2a9122b8dde53d320750451e9907a7dcb2ca8bb Mon Sep 17 00:00:00 2001
+From: Nick Wellnhofer 
+Date: Thu, 7 Sep 2017 18:36:01 +0200
+Subject: [PATCH] Set memory limit for LZMA decompression
+
+Otherwise malicious LZMA compressed files could consume large amounts
+of memory when decompressed.
+
+According to the xz man page, files compressed with `xz -9` currently
+require 65 MB to decompress, so set the limit to 100 MB.
+
+Should fix bug 786696.
+diff --git a/xzlib.c b/xzlib.c
+index 782957f..f43632b 100644
+--- a/xzlib.c
 b/xzlib.c
+@@ -408,7 +408,7 @@ xz_head(xz_statep state)
+ state->strm = init;
+ state->strm.avail_in = 0;
+ state->strm.next_in = NULL;
+-if (lzma_auto_decoder(&state->strm, UINT64_MAX, 0) != LZMA_OK) {
++if (lzma_auto_decoder(&state->strm, 1, 0) != LZMA_OK) {
+ xmlFree(state->out);
+ xmlFree(state->in);
+ state->size = 0;
diff -Nru libxml2-2.9.4+dfsg1/debian/patches/0021-CVE-2018-14404.patch 
libxml2-2.9.4+dfsg1/debian/patches/0021-CVE-2018-14404.patch
--- libxml2-2.9.4+dfsg1/debian/patches/0021-CVE-2018-14404.patch
1970-01-01 01:00:00.0 +0100
+++ libxml2-2.9.4+dfsg1/debian/patches/0021-CVE-2018-14404.patch
2018-08-10 20:30:01.0 +0200
@@ -0,0 +1,47 @@
+From a436374994c47b12d5de1b8b1d191a098fa23594 Mon Sep 17 00:00:00 2001
+From: Nick Wellnhofer 
+Date: Mon, 30 Jul 2018 12:54:38 +0200
+Subject: [PATCH] Fix nullptr deref with XPath logic ops
+
+If the XPath stack is corrupted, for example by a misbehaving extension
+function, the "and" and "or" XPath operators could dereference NULL
+pointers. Check that the XPath stack isn't empty and optimize the
+logic operators slightly.
+
+Closes: https://gitlab.gnome.org/GNOME/libxml2/issues/5
+
+Also see
+https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=901817
+https://bugzilla.redhat.com/show_bug.cgi?id=1595985
+
+This is CVE-2018-14404.
+
+Thanks to Guy Inbar for the report.
+diff --git a/xpath.c b/xpath.c
+index 1787be1..13e0812 100644
+--- a/xpath.c
 b/xpath.c
+@@ -13320,9 +13320,8 @@ xmlXPathCompOpEval(xmlXPathParserContextPtr ctxt, 
xmlXPathStepOpPtr op)
+   return(0);
+   }
+ xmlXPathBooleanFunction(ctxt, 1);
+-arg1 = valuePop(ctxt);
+-arg1->boolval &= arg2->boolval;
+-valuePush(ctxt, arg1);
++if (ctxt->value != NULL)
++ctxt->value->boolval &= arg2->boolval;
+   xmlXPathReleaseObject(ctxt->context, arg2);
+ return (total);
+ case XPATH_OP_OR:
+@@ -13346,9 +13345,8 @@ xmlXPathCompOpEval(xmlXPathParserContextPtr ctxt, 
xmlXPathStepOpPtr op)
+   return(0);
+   }
+ xmlXPathBooleanFunction(ctxt, 1);
+-arg1 = valuePop(ctxt);
+-arg1->boolval |= arg2->boolval;
+-valuePush(ctxt, arg1);
++if (ctxt->value != NULL)
++ctxt->value->boolval |= arg2->boolval;
+   xmlXPathReleaseObject(ctxt->context, arg2);
+ return (total);
+ case XPATH_OP_EQUAL:
diff -Nru libxml2-2.9.4+dfsg1/debian/patches/0022-CVE-2018-14567.patch 
libxml2-2.9.4+dfsg1/debian/patches/0022-CVE-2018-14567.patch
--- libxml2-2.9.4+dfsg1/debian/patches/0022-CVE-2018-14567.patch
1970-01-01 01:00:00.0 +0100
+++ libxml2-2.9.4+dfsg1/debian/patches/0022-CVE-2018-14567.patch
2018-08-10 20:30:14.0 +0200
@@ -0,0 +1,43 @@
+From 2240fbf5912054af025fb6e01e26375100275e74 Mon Sep 17 00:00:00 2001
+From: Nick Wellnhofer 
+Date: Mon, 30 Jul 2018 13:14:11 +0200
+Subject: [PATCH] Fix infinite loop in LZMA decompression

NEW changes in stable-new

2020-11-13 Thread Debian FTP Masters
Processing changes file: dav4tbsync_1.21-1~deb10u1_all.changes
  ACCEPT
Processing changes file: eas4tbsync_1.20-1~deb10u1_all.changes
  ACCEPT
Processing changes file: tbsync_2.18-1~deb10u1_all.changes
  ACCEPT



Bug#972796: buster-pu: package gajim-omemo/2.6.27-1+deb10u1

2020-11-13 Thread Martin
On 2020-11-13 10:55, Adam D. Barratt wrote:
> On Fri, 2020-10-23 at 22:52 +0200, Martin wrote:
> Well, except for:
> 
> > Packaging changes:
> > 
> > Move from debian/compat to debhelper-compat.
> 
> Why was that included in a stable update? While it might make no
> functional difference, it also fixes no bug that I can see and isn't
> related to the bug you're addressing.

No, I see this as a minor cleanup.
But of course, I can leave this out. NP!

> As a general note, as a user-facing item:
>
> +  * add patch: Switch to 12 byte IV
>
> it would have been worth specifying _why_ this change was applied, i.e.
> that it improves compatibility with clients.

Also true! I'll try to find some words about it.
Suggestions, esp. by native speakers, welcome!



Processed: reopening 971807, tagging 971807, tagging 971808, tagging 971809

2020-11-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 971807
Bug #971807 {Done: Mechtilde Stehmann } 
[release.debian.org] buster-pu: package tbsync
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions tbsync/2.16.1-1~deb10u1.
> tags 971807 + pending
Bug #971807 [release.debian.org] buster-pu: package tbsync
Added tag(s) pending.
> tags 971808 + pending
Bug #971808 [release.debian.org] buster-pu: package dav4tbsync
Added tag(s) pending.
> tags 971809 + pending
Bug #971809 [release.debian.org] buster-pu: package eas4tbsync
Added tag(s) pending.
> thanks
Stopping processing here.

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



NEW changes in stable-new

2020-11-13 Thread Debian FTP Masters
Processing changes file: moin_1.9.9-1+deb10u1_sourceonly.changes
  ACCEPT
Processing changes file: moin_1.9.9-1+deb10u1_all.changes
  ACCEPT
Processing changes file: tbsync_2.16.1-1~deb10u1_source.changes
  ACCEPT
Processing changes file: tbsync_2.18-1~deb10u1_source.changes
  ACCEPT



Bug#971807: marked as done (buster-pu: package tbsync)

2020-11-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Nov 2020 15:17:08 +
with message-id 
and subject line Bug#971807: fixed in tbsync 2.16.1-1~deb10u1
has caused the Debian Bug report #971807,
regarding buster-pu: package tbsync
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.)


-- 
971807: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=971807
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Version:
Severity: grave

Hello,

I prepare an update of webext-tbsync for buster with version 2.16.1+deb10u1.

It is needed tobe uploaded to sstable-update because of the Update of
thunderbird 68 to 78.

This fixed the incompatibility (#968102). It is now uploaded to unstable
after being two months in experimental.

I will also fill two further bug reports for DAV-4-TbSync and
EAS-4-Tbsync which are dependencies aof TbSyc


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

Kernel: 5.8.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8),
LANGUAGE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled



-- 
Mechtilde Stehmann
## Debian Developer
## PGP encryption welcome
## F0E3 7F3D C87A 4998 2899  39E7 F287 7BBA 141A AD7F



signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: tbsync
Source-Version: 2.16.1-1~deb10u1
Done: Mechtilde Stehmann 

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

Debian distribution maintenance software
pp.
Mechtilde Stehmann  (supplier of updated tbsync 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: Sat, 10 Oct 2020 21:09:09 +0200
Source: tbsync
Architecture: source
Version: 2.16.1-1~deb10u1
Distribution: buster
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Mechtilde Stehmann 
Closes: 971807
Changes:
 tbsync (2.16.1-1~deb10u1) buster; urgency=medium
 .
   * Rebuild for buster to fit compatibility with Tb 78.x
 + (Closes:#971807)
Checksums-Sha1:
 0ede9ffd8b72fec538d98ae95cdc3323500a2dba 1973 tbsync_2.16.1-1~deb10u1.dsc
 ed4f88be9ec3b41984a06873e3b0ba28c7dd6907 9780 
tbsync_2.16.1-1~deb10u1.debian.tar.xz
 43efd0d6710acfcc68825b614acf3e3bc96523f4 5447 
tbsync_2.16.1-1~deb10u1_amd64.buildinfo
Checksums-Sha256:
 d4c4415adb3a2f4391a590ad450ac8b832b70f8afa649b441588db61e42ae80a 1973 
tbsync_2.16.1-1~deb10u1.dsc
 73ee9916fdb77e885d27f0d77aabebbb1d9e80572dc1571d934f2869b454262e 9780 
tbsync_2.16.1-1~deb10u1.debian.tar.xz
 33e440451b1746d4dd278eef122cb5376f54d4bd6ae0df1ff9213be1df6e 5447 
tbsync_2.16.1-1~deb10u1_amd64.buildinfo
Files:
 5a0a1d3b71fbc331053425d5c6336394 1973 mail optional tbsync_2.16.1-1~deb10u1.dsc
 3b2d63d020a9af2fba4277b540bfc504 9780 mail optional 
tbsync_2.16.1-1~deb10u1.debian.tar.xz
 756ee5f57f0df6bc198da5ee87e33368 5447 mail optional 
tbsync_2.16.1-1~deb10u1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE8ON/Pch6SZgomTnn8od7uhQarX8FAl+CCJoACgkQ8od7uhQa
rX/3+A//W30CfEpf+L6E3l91Zb4mkR9KC3r6AN1DxvfsXUY+72A44o6d6boSnbDy
vr9+QULPzwhyarB2LRD/NT8fwnx/1+XjC/8F5AsRC+QeT1m6KJh3k1Ai5HG17mhV
aHoRx5rrITd8/58jtqHfm8Mb4VV4eWO4D7aJaQ2QRx6OgEY0Kme+VJm+mGSQvxFI
RHaoHmek8t80IJ07c26fivO0KFUnMMMssNizAJ++zVd9mkHD20YCZGeEbXcXikFy
iaad6ZqxtQuwJ14htDQQQyp766QGg2KER/zqaOXE1bStq9wA6YOQPr5ayef2F5KG
FQ2NcA6Yj/o4CP1WIixtejAFfylZjcCSLRvII6KAUyCL7/qFEF1e/H4Uqq140kRb
AmfbWXXZAm6RD1XjnZko16nkMCIJMwY1ZF1HjCwq3aIPtXVtz+mq+dKpw/gLDSRC
i4wTxfpxSiVL9BcySrHfzCC85GluirCVpExBtcb5zIe4pE/s3uyI8IchUxhIWbOm
QJUKVLwzQJuR2ds2Hkmr15f6ZOkDaDFejqT3CDOWg4pWMua0ZsL0LdEoTRXV73fR
kIaBpTCUTl72g4ACEmkQYpMbZ0vI06FQv21zofrNv1teZG21TTexAZPVY0FyKBbX
9YvJwaWzm+YIpy+lKP79awZqouA4bFuaNwPU0kzWG8TFPhV25Dg=
=CO5P
-END PGP SIGNATURE End Message ---


NEW changes in stable-new

2020-11-13 Thread Debian FTP Masters
Processing changes file: dav4tbsync_1.16-1~deb10u1_source.changes
  ACCEPT
Processing changes file: dav4tbsync_1.21-1~deb10u1_source.changes
  ACCEPT
Processing changes file: eas4tbsync_1.16-1~deb10u1_source.changes
  ACCEPT
Processing changes file: eas4tbsync_1.20-1~deb10u1_source.changes
  ACCEPT



Processed: reopening 971808

2020-11-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 971808
Bug #971808 {Done: Mechtilde Stehmann } 
[release.debian.org] buster-pu: package dav4tbsync
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions dav4tbsync/1.16-1~deb10u1.
> thanks
Stopping processing here.

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



Processed: notfound 971807 in 971808

2020-11-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> notfound 971807 971808
Bug #971807 [release.debian.org] buster-pu: package tbsync
There is no source info for the package 'release.debian.org' at version 
'971808' with architecture ''
Unable to make a source version for version '971808'
Ignoring request to alter found versions of bug #971807 to the same values 
previously set
> thanks
Stopping processing here.

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



Processed: reopening 971809

2020-11-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 971809
Bug #971809 {Done: Mechtilde Stehmann } 
[release.debian.org] buster-pu: package eas4tbsync
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions eas4tbsync/1.16-1~deb10u1.
> thanks
Stopping processing here.

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



Processed: tbsync 2.16.1-1~deb10u1 flagged for acceptance

2020-11-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> package release.debian.org
Limiting to bugs with field 'package' containing at least one of 
'release.debian.org'
Limit currently set to 'package':'release.debian.org'

> tags 971807 = buster pending
Bug #971807 [release.debian.org] buster-pu: package tbsync
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#971809: marked as done (buster-pu: package eas4tbsync)

2020-11-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Nov 2020 15:02:36 +
with message-id 
and subject line Bug#971809: fixed in eas4tbsync 1.16-1~deb10u1
has caused the Debian Bug report #971809,
regarding buster-pu: package eas4tbsync
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.)


-- 
971809: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=971809
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Version:
Severity: grave

Hello,

I prepare an update of webext-eas4tbsync for buster with version
1.16+deb10u1. This is a dependency for TbSync 2.16.1


It is needed to be uploaded to stable-update because of the update of
thunderbird 68 to 78.

This fixed the incompatibility (#971771). It is now uploaded to unstable
after being two months in experimental.

There are two further bug reports for TbSync and
DAV-4-Tbsync which is dependency of TbSync


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

Kernel: 5.8.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8),
LANGUAGE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled



-- 
Mechtilde Stehmann
## Debian Developer
## PGP encryption welcome
## F0E3 7F3D C87A 4998 2899  39E7 F287 7BBA 141A AD7F







signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: eas4tbsync
Source-Version: 1.16-1~deb10u1
Done: Mechtilde Stehmann 

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

Debian distribution maintenance software
pp.
Mechtilde Stehmann  (supplier of updated eas4tbsync 
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: Sat, 10 Oct 2020 20:48:43 +0200
Source: eas4tbsync
Architecture: source
Version: 1.16-1~deb10u1
Distribution: buster
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Mechtilde Stehmann 
Closes: 971809
Changes:
 eas4tbsync (1.16-1~deb10u1) buster; urgency=medium
 .
   * [b87d1b6] Bumped to version 1.16 to fit compatibility
 + to thunderbird version 78.x (Closes:#971809)
Checksums-Sha1:
 f96fc3f87593c61ecf04fbec359a70d3829ffead 2009 eas4tbsync_1.16-1~deb10u1.dsc
 66be436a3af17c3ba12b88143aa351e81d04b7de 9772 
eas4tbsync_1.16-1~deb10u1.debian.tar.xz
 f8bec49eb6bf379d9b775fd1257143bec2be2354 5467 
eas4tbsync_1.16-1~deb10u1_amd64.buildinfo
Checksums-Sha256:
 dc0837d7509c357f241c5fa573a9f1c42b299fd90df807b2c051dab7c2875055 2009 
eas4tbsync_1.16-1~deb10u1.dsc
 e3a805d8fa2d8a17886fdc53405a936b5ce5d9eab1d854731d4c6681f67306cd 9772 
eas4tbsync_1.16-1~deb10u1.debian.tar.xz
 3651d208dcc161a5ba27415dd003f365e2bc64b97c3d6ee7d8469f1e4afea716 5467 
eas4tbsync_1.16-1~deb10u1_amd64.buildinfo
Files:
 518ca8812b9d6628a2814de9c64f43f8 2009 mail optional 
eas4tbsync_1.16-1~deb10u1.dsc
 39a7efd86942c80aa6fdf1acb6f62f2c 9772 mail optional 
eas4tbsync_1.16-1~deb10u1.debian.tar.xz
 3c661f6f1b136e17755b2cfcdbcea83f 5467 mail optional 
eas4tbsync_1.16-1~deb10u1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE8ON/Pch6SZgomTnn8od7uhQarX8FAl+CAv8ACgkQ8od7uhQa
rX/zfRAAnswub6WbR4OmSTHE2DjdnzcVmtAdt4mkt68yM12NYxvs9uttmIs9TxmD
YWe8eywpO6WNvI2CaWT1XX7Mnea/Zk6xRDJdwhP+017A3UwFX7qMVzG2f9jrv5ms
x+UY2U6FhpYgv8IJnDZMuVZDU20zi/GRpFsPt1zRsgDhswnZF94xem8zFZfTtSFj
ovb3y6dWwIp37LFBt0wGB8yUJ1DvdaNE9RvNDgI35s8KJOb92eOOPCC0ErXJHBwT
BOR/rHHVDwNmG1sBc6oC2tiD67ayUnfyHNCOnCoS4iY3JY1qRq8oFMwRvwe7FxNZ
T/16//rgwCuXZ7hERTJtpWHt60hLLr44mO9hFIXBLoAKMBDOLNcx+q6ZHjCdbWBZ
I451e8DmRUID6J3zkpu9SZpUVlXVV8MHJXnncw3U5vXqbCuf4GM/aYGzQbVrYoE/
6CgtMUbQyMyi9YEf59L981VYUb96izpY9CeU3Tj1nKDj3LObKVFbxvbOjbqO1RQa
lPwa1hn5OorTAfwoffbhlxyFtN6NX2b9HV/UTHGTL38cUuUGJN7mkGznS1CURh5C
kAYkL0PFahYbWJ2CyCVxxXGcBw4bGUoVMWhBebp9zLVaMsni5B76TNoxMp7qbwBz
BRapMyYGmu+h43YVGOoC6jH5hQHUBvnlggAAfPl6uyCiA4DhGa0=
=PCOh
-END PGP SIGNATURE End Message ---


Bug#971808: marked as done (buster-pu: package dav4tbsync)

2020-11-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Nov 2020 15:02:36 +
with message-id 
and subject line Bug#971808: fixed in dav4tbsync 1.16-1~deb10u1
has caused the Debian Bug report #971808,
regarding buster-pu: package dav4tbsync
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.)


-- 
971808: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=971808
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Version:
Severity: grave

Hello,

I prepare an update of webext-dav4tbsync for buster with version
1.16+deb10u1. This is a dependency for TbSync 2.16.1


It is needed tobe uploaded to stable-update because of the update of
thunderbird 68 to 78.

This fixed the incompatibility (#971770). It is now uploaded to unstable
after being two months in experimental.

There are two further bug reports for TbSync and
EAS-4-Tbsync which is dependencies of TbSync


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

Kernel: 5.8.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8),
LANGUAGE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled



-- 
Mechtilde Stehmann
## Debian Developer
## PGP encryption welcome
## F0E3 7F3D C87A 4998 2899  39E7 F287 7BBA 141A AD7F





signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: dav4tbsync
Source-Version: 1.16-1~deb10u1
Done: Mechtilde Stehmann 

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

Debian distribution maintenance software
pp.
Mechtilde Stehmann  (supplier of updated dav4tbsync 
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: Sat, 10 Oct 2020 20:57:57 +0200
Source: dav4tbsync
Architecture: source
Version: 1.16-1~deb10u1
Distribution: buster
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Mechtilde Stehmann 
Closes: 971808
Changes:
 dav4tbsync (1.16-1~deb10u1) buster; urgency=medium
 .
   * [bc487f4] Bumped to version 1.16 to fit compatibility
 + to thunderbird version 78.x (Closes:#971808)
Checksums-Sha1:
 9677730cabf1b01e43a3fee8086db0e94fd7cda3 2012 dav4tbsync_1.16-1~deb10u1.dsc
 574ff9b9f4b887e1a1afc215c296399eb102b52e 10052 
dav4tbsync_1.16-1~deb10u1.debian.tar.xz
 a4a706b72c67991895536afea48d98cd9e4d9f76 5467 
dav4tbsync_1.16-1~deb10u1_amd64.buildinfo
Checksums-Sha256:
 aa77c8e7f8c1de010be932568acc757ab6ed38596f61a8abcf03cad719ed7f61 2012 
dav4tbsync_1.16-1~deb10u1.dsc
 d8b22dc3009fb535decdc0aec5176f487ea5ed1041292bdab2763dde65fe3137 10052 
dav4tbsync_1.16-1~deb10u1.debian.tar.xz
 fe3a999b976057b837f3ddc978c7ea753cc328b69f66d6788427a95f42356a8a 5467 
dav4tbsync_1.16-1~deb10u1_amd64.buildinfo
Files:
 0894e13c9e549c236b27d4d692e866df 2012 mail optional 
dav4tbsync_1.16-1~deb10u1.dsc
 ff39bdbfdacc8d050c41faddcac07c11 10052 mail optional 
dav4tbsync_1.16-1~deb10u1.debian.tar.xz
 7427299e88f5c2d2d78ec216d01bb2da 5467 mail optional 
dav4tbsync_1.16-1~deb10u1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE8ON/Pch6SZgomTnn8od7uhQarX8FAl+CBS0ACgkQ8od7uhQa
rX9rrg//fZhG9DBMwoXawJwWZniIP9cXU/yP33IRUmey5pdGviXH3MGtshmESYrP
7VG/4coZSoAUxpnILUUvpiPYe1xgTWtag3EZSXicKPImiCqPgdabiFqDkhL2ngif
L/bfPcrYsVqs6K2t4drEtUNnnz4eJDj0ve2CJqXjAfAyL0Sug0FyiVgdo6/zRm0M
iJCd/xHGXj8Ng+EJRJnwU7BQk3n+Tl7jrAAy1bQ/dodf1ZEqmf6DLEzIZLsVZlr1
qRP0lp1TgrSFC9iKrqTs3Q2r8MdEmOIVBFA47/1RumEPc1ORpyhV80PqzSQP/Rqv
8Z9qm+rRdAW3nzCVGN+mx1/XuzpSD/sH65cse7y6+RoilKxArN3iHlirI+rb2Bz+
y1VCQOK4fn1Y4YPaLkuk7mrpE6nbrCwoe+hpH8umxBv9tC3mOBfOoBpra7au+mS1
Uke5inLoC44G53FD0R1Vi26CK19Aa6ipBSIHvAvNViwXVyi/yaF4VOU7hYYP4KVS
/ZdHEf2kvgSNvefkRIO80p20egu4Wr5hw1j08VojC3vYpChNgDsKnWlBq7Jm1tV2
wm2cHOeQvEmZluoX0/KaZROL27k9AvrDk0EsXZvq0+LHBx+xZaM0WFIH9EL/pb7S
Q98ls0JIm6RrX5yKVmsihntvtfhZ5MmifLFFukm4QpxNJC8UeXU=
=uPvB
-END PGP SIGNATURE End Message ---


Processed: dav4tbsync 1.21-1~deb10u1 flagged for acceptance

2020-11-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> package release.debian.org
Limiting to bugs with field 'package' containing at least one of 
'release.debian.org'
Limit currently set to 'package':'release.debian.org'

> tags 971808 = buster pending
Bug #971808 [release.debian.org] buster-pu: package dav4tbsync
Ignoring request to alter tags of bug #971808 to the same tags previously set
> thanks
Stopping processing here.

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



Processed: eas4tbsync 1.20-1~deb10u1 flagged for acceptance

2020-11-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> package release.debian.org
Limiting to bugs with field 'package' containing at least one of 
'release.debian.org'
Limit currently set to 'package':'release.debian.org'

> tags 971809 = buster pending
Bug #971809 [release.debian.org] buster-pu: package eas4tbsync
Ignoring request to alter tags of bug #971809 to the same tags previously set
> thanks
Stopping processing here.

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



Processed: eas4tbsync 1.16-1~deb10u1 flagged for acceptance

2020-11-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> package release.debian.org
Limiting to bugs with field 'package' containing at least one of 
'release.debian.org'
Limit currently set to 'package':'release.debian.org'

> tags 971809 = buster pending
Bug #971809 [release.debian.org] buster-pu: package eas4tbsync
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#971808: dav4tbsync 1.16-1~deb10u1 flagged for acceptance

2020-11-13 Thread Adam D Barratt
package release.debian.org
tags 971808 = buster pending
thanks

Hi,

The upload referenced by this bug report has been flagged for acceptance into 
the proposed-updates queue for Debian buster.

Thanks for your contribution!

Upload details
==

Package: dav4tbsync
Version: 1.16-1~deb10u1

Explanation: new upstream release, compatible with newer Thunderbird versions



Processed: dav4tbsync 1.16-1~deb10u1 flagged for acceptance

2020-11-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> package release.debian.org
Limiting to bugs with field 'package' containing at least one of 
'release.debian.org'
Limit currently set to 'package':'release.debian.org'

> tags 971808 = buster pending
Bug #971808 [release.debian.org] buster-pu: package dav4tbsync
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#971809: eas4tbsync 1.16-1~deb10u1 flagged for acceptance

2020-11-13 Thread Adam D Barratt
package release.debian.org
tags 971809 = buster pending
thanks

Hi,

The upload referenced by this bug report has been flagged for acceptance into 
the proposed-updates queue for Debian buster.

Thanks for your contribution!

Upload details
==

Package: eas4tbsync
Version: 1.16-1~deb10u1

Explanation: new upstream release, compatible with newer Thunderbird versions



Bug#971809: eas4tbsync 1.20-1~deb10u1 flagged for acceptance

2020-11-13 Thread Adam D Barratt
package release.debian.org
tags 971809 = buster pending
thanks

Hi,

The upload referenced by this bug report has been flagged for acceptance into 
the proposed-updates queue for Debian buster.

Thanks for your contribution!

Upload details
==

Package: eas4tbsync
Version: 1.20-1~deb10u1

Explanation: new upstream release, compatible with newer Thunderbird versions



Processed: tbsync 2.18-1~deb10u1 flagged for acceptance

2020-11-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> package release.debian.org
Limiting to bugs with field 'package' containing at least one of 
'release.debian.org'
Limit currently set to 'package':'release.debian.org'

> tags 971807 = buster pending
Bug #971807 [release.debian.org] buster-pu: package tbsync
Ignoring request to alter tags of bug #971807 to the same tags previously set
> thanks
Stopping processing here.

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



Bug#971808: dav4tbsync 1.21-1~deb10u1 flagged for acceptance

2020-11-13 Thread Adam D Barratt
package release.debian.org
tags 971808 = buster pending
thanks

Hi,

The upload referenced by this bug report has been flagged for acceptance into 
the proposed-updates queue for Debian buster.

Thanks for your contribution!

Upload details
==

Package: dav4tbsync
Version: 1.21-1~deb10u1

Explanation: new upstream release, compatible with newer Thunderbird versions



Bug#971807: tbsync 2.16.1-1~deb10u1 flagged for acceptance

2020-11-13 Thread Adam D Barratt
package release.debian.org
tags 971807 = buster pending
thanks

Hi,

The upload referenced by this bug report has been flagged for acceptance into 
the proposed-updates queue for Debian buster.

Thanks for your contribution!

Upload details
==

Package: tbsync
Version: 2.16.1-1~deb10u1

Explanation: new upstream release, compatible with newer Thunderbird versions



Bug#971807: tbsync 2.18-1~deb10u1 flagged for acceptance

2020-11-13 Thread Adam D Barratt
package release.debian.org
tags 971807 = buster pending
thanks

Hi,

The upload referenced by this bug report has been flagged for acceptance into 
the proposed-updates queue for Debian buster.

Thanks for your contribution!

Upload details
==

Package: tbsync
Version: 2.18-1~deb10u1

Explanation: new upstream release, compatible with newer Thunderbird versions



Processed: Re: Bug#974588: openvswitch: DPDK 20.11 support and transition for bullseye

2020-11-13 Thread Debian Bug Tracking System
Processing control commands:

> clone -1 -2
Bug #974588 [src:openvswitch] openvswitch: DPDK 20.11 support and transition 
for bullseye
Bug 974588 cloned as bug 974667
> retitle -2 transition: dpdk
Bug #974667 [src:openvswitch] openvswitch: DPDK 20.11 support and transition 
for bullseye
Changed Bug title to 'transition: dpdk' from 'openvswitch: DPDK 20.11 support 
and transition for bullseye'.
> reassign -2 release.debian.org
Bug #974667 [src:openvswitch] transition: dpdk
Bug reassigned from package 'src:openvswitch' to 'release.debian.org'.
No longer marked as found in versions openvswitch/2.13.0+dfsg1-12.
Ignoring request to alter fixed versions of bug #974667 to the same values 
previously set
> affects -2 -1
Bug #974667 [release.debian.org] transition: dpdk
Removed indication that 974667 affects 

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



Bug#972253: transition: python3.9 as default

2020-11-13 Thread Matthias Klose
as outlined in
https://lists.debian.org/debian-python/2020/07/msg00023.html

it's now time to go ahead with the 3.9 defaults change.

https://lists.debian.org/debian-python/2020/11/msg00012.html
has a status update about outstanding issues, focusing on the key packages.
While not every fix is available in unstable, there is upstream support for
those key packages, and the status is covered in bug reports.

this transition should be less dependent on other transitions as we already have
3.8 and 3.9 extensions migrated to testing.  The only entanglement should be
with packages only supporting to build with the default python3 version, and
introducing a transition themself.  It might be good to wait on finishing the
perl transition, but currently there's no entanglement at this point.

Matthias



Processed: Re: Bug#974649: release.debian.org: new libnifti2 broke runtime (see #968730)

2020-11-13 Thread Debian Bug Tracking System
Processing control commands:

> block -1 by 968730
Bug #974649 [release.debian.org] release.debian.org: new libnifti2 broke 
runtime (see #968730)
974649 was not blocked by any bugs.
974649 was not blocking any bugs.
Added blocking bug(s) of 974649: 968730
> tags -1 + moreinfo
Bug #974649 [release.debian.org] release.debian.org: new libnifti2 broke 
runtime (see #968730)
Added tag(s) moreinfo.

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



Bug#974649: release.debian.org: new libnifti2 broke runtime (see #968730)

2020-11-13 Thread Sebastian Ramacher
Control: block -1 by 968730
Control: tags -1 + moreinfo

On 2020-11-13 11:29:40, Gianfranco Costamagna wrote:
> Package: release.debian.org
> Severity: normal
> 
> Hello, looks like new libnifti2 changed the runtime library name without 
> changing soname (See #968730 for underground issue), so
> now reverse-dependencies are having troubles to start without a binNMU.
> 
> We might just ask libnifti2 people to restore a symlink for compatibility, 
> but I think its better to just binNMU reverse-dependencies and then break old 
> version to ensure good upgrade paths.

This package is currently broken. I cannot judge if the ABI actually
changed or not and the SONAME changes are desired, but please get this
fixed in libnifti first. binNMUs would just paper over the underlying
problem.

Once that's fixed, we can still do a proper transition if necessary.

Cheers

> 
> This is the list of stuff that needs binNMUs
> 
> reverse-depends -r hirsute -b libnifti-dev
> Reverse-Build-Depends
> * dicomnifti
> * elastix
> * fsl
> * gifticlib
> * insighttoolkit4
> * libminc
> * mia
> * minc-tools
> * odin
> * xmedcon
> 
> thanks
> 
> Gianfranco
> 

-- 
Sebastian Ramacher



NEW changes in stable-new

2020-11-13 Thread Debian FTP Masters
Processing changes file: codemirror-js_5.43.0-1+deb10u1_amd64.changes
  ACCEPT
Processing changes file: firefox-esr_78.4.1esr-1~deb10u1_source.changes
  ACCEPT
Processing changes file: firefox-esr_78.4.1esr-1~deb10u1_all.changes
  ACCEPT
Processing changes file: firefox-esr_78.4.1esr-1~deb10u1_amd64-buildd.changes
  ACCEPT
Processing changes file: firefox-esr_78.4.1esr-1~deb10u1_arm64-buildd.changes
  ACCEPT
Processing changes file: firefox-esr_78.4.1esr-1~deb10u1_armhf-buildd.changes
  ACCEPT
Processing changes file: firefox-esr_78.4.1esr-1~deb10u1_i386.changes
  ACCEPT
Processing changes file: firefox-esr_78.4.1esr-1~deb10u1_mips-buildd.changes
  ACCEPT
Processing changes file: firefox-esr_78.4.1esr-1~deb10u1_mips64el-buildd.changes
  ACCEPT
Processing changes file: firefox-esr_78.4.1esr-1~deb10u1_mipsel-buildd.changes
  ACCEPT
Processing changes file: firefox-esr_78.4.1esr-1~deb10u1_ppc64el-buildd.changes
  ACCEPT
Processing changes file: firefox-esr_78.4.1esr-1~deb10u1_s390x.changes
  ACCEPT
Processing changes file: libexif_0.6.21-5.1+deb10u5_amd64.changes
  ACCEPT
Processing changes file: libexif_0.6.21-5.1+deb10u5_arm64-buildd.changes
  ACCEPT
Processing changes file: libexif_0.6.21-5.1+deb10u5_armel-buildd.changes
  ACCEPT
Processing changes file: libexif_0.6.21-5.1+deb10u5_armhf-buildd.changes
  ACCEPT
Processing changes file: libexif_0.6.21-5.1+deb10u5_i386-buildd.changes
  ACCEPT
Processing changes file: libexif_0.6.21-5.1+deb10u5_mips-buildd.changes
  ACCEPT
Processing changes file: libexif_0.6.21-5.1+deb10u5_mips64el-buildd.changes
  ACCEPT
Processing changes file: libexif_0.6.21-5.1+deb10u5_mipsel-buildd.changes
  ACCEPT
Processing changes file: libexif_0.6.21-5.1+deb10u5_ppc64el-buildd.changes
  ACCEPT
Processing changes file: libexif_0.6.21-5.1+deb10u5_s390x.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_sourceonly.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_all.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_amd64-buildd.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_arm64-buildd.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_armel-buildd.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_armhf-buildd.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_i386.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_mips-buildd.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_mips64el-buildd.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_mipsel-buildd.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_ppc64el-buildd.changes
  ACCEPT
Processing changes file: raptor2_2.0.14-1.1~deb10u1_s390x.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_sourceonly.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_all-buildd.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_amd64.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_arm64-buildd.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_armel-buildd.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_armhf-buildd.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_i386.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_mips-buildd.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_mips64el-buildd.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_mipsel-buildd.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_ppc64el-buildd.changes
  ACCEPT
Processing changes file: sddm_0.18.0-1+deb10u1_s390x-buildd.changes
  ACCEPT
Processing changes file: wordpress_5.0.11+dfsg1-0+deb10u1_source.changes
  ACCEPT
Processing changes file: wordpress_5.0.11+dfsg1-0+deb10u1_all-buildd.changes
  ACCEPT



Bug#972796: buster-pu: package gajim-omemo/2.6.27-1+deb10u1

2020-11-13 Thread Adam D. Barratt
On Fri, 2020-10-23 at 22:52 +0200, Martin wrote:
> I like to update the gajim-omemo package, so that it becomes
> compatible with iOS Jabber/XMPP clients.
> 
> Background: iOS devices can only accept a 12 bytes IV in OMEMO,
> because of limitations in system libraries, while most others
> can live with both 12 and 16 bytes. Nowadays, (almost) all XMPP
> clients use 12 bytes, and it would be good, if Debian stable
> would support that.
> 
> (IV = initialization vector for AES-GCM, IIRC)

AIUI 96 bytes (i.e. 12 bytes) is the recommended IV size for AES 128
GCM in any case.

> The same change is in Debian testing since 2020-02-24, but for
> buster I backported only that specific change.

Well, except for:

> Packaging changes:
> 
> Move from debian/compat to debhelper-compat.

Why was that included in a stable update? While it might make no
functional difference, it also fixes no bug that I can see and isn't
related to the bug you're addressing.

As a general note, as a user-facing item:

+  * add patch: Switch to 12 byte IV

it would have been worth specifying _why_ this change was applied, i.e.
that it improves compatibility with clients.

Regards,

Adam



Bug#973407: Help for r-bioc-rhdf5filters needed (Was: Bug#973407: transition: r-api-bioc-3.12)

2020-11-13 Thread Andreas Tille
Hi Sebastian,

On Thu, Nov 12, 2020 at 08:59:32PM +0100, Sebastian Ramacher wrote:
> > 
> > I think we should clarify this before uploading r-bioc-rhdf5 with a
> > broken test which will prevent the migration.
> 
> Is a fix for that issues in sight? Or should we consider removal of the
> r-bioc-rhdf5 and its reverse dependencies to finish the transition once
> r-bioc-genomicfiles, r-bioc-degreport, and r-bioc-dexseq have been
> uploaded to finish the transition?

I do not think that it is necessary to remove reverse dependencies.  The
BioConductor transition is kind of a closed set of packages and it makes
sense to have them migrated together.  But thanks for the idea anyway -
we might come back to this in case it takes longer than expected.

Kind regards

Andreas.


-- 
http://fam-tille.de



Bug#974649: release.debian.org: new libnifti2 broke runtime (see #968730)

2020-11-13 Thread Gianfranco Costamagna
Package: release.debian.org
Severity: normal

Hello, looks like new libnifti2 changed the runtime library name without 
changing soname (See #968730 for underground issue), so
now reverse-dependencies are having troubles to start without a binNMU.

We might just ask libnifti2 people to restore a symlink for compatibility, but 
I think its better to just binNMU reverse-dependencies and then break old 
version to ensure good upgrade paths.

This is the list of stuff that needs binNMUs

reverse-depends -r hirsute -b libnifti-dev
Reverse-Build-Depends
* dicomnifti
* elastix
* fsl
* gifticlib
* insighttoolkit4
* libminc
* mia
* minc-tools
* odin
* xmedcon

thanks

Gianfranco



NEW changes in stable-new

2020-11-13 Thread Debian FTP Masters
Processing changes file: thunderbird_78.4.2-1~deb10u1_source.changes
  ACCEPT
Processing changes file: thunderbird_78.4.2-1~deb10u1_all.changes
  ACCEPT
Processing changes file: thunderbird_78.4.2-1~deb10u1_amd64-buildd.changes
  ACCEPT
Processing changes file: thunderbird_78.4.2-1~deb10u1_arm64-buildd.changes
  ACCEPT
Processing changes file: thunderbird_78.4.2-1~deb10u1_i386.changes
  ACCEPT
Processing changes file: thunderbird_78.4.2-1~deb10u1_mips64el-buildd.changes
  ACCEPT
Processing changes file: thunderbird_78.4.2-1~deb10u1_ppc64el-buildd.changes
  ACCEPT
Processing changes file: thunderbird_78.4.2-1~deb10u1_s390x.changes
  ACCEPT