Bug#948401: stretch-pu: package libvncserver/0.9.11+dfsg-1.3~+deb9u3

2020-01-08 Thread Mike Gabriel
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

Dear release team,

a regression in the recent libvncserver stretch-pu (~deb9u2) has been reported.

+  * Regression update.
+
+  * debian/patches: Add use-after-free/{4,5,6}.patch. All cherry-picked from
+upstream. Resolves crashing of x11vnc when vncviewer connects. (Closes:
+#905786).

The just uploaded libvncserver package version (~deb9u3) pulls in three
more patches from upstream that resolve this regression issue.

thanks+greets,
Mike


-- System Information:
Debian Release: 10.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.0-6-amd64 (SMP w/4 CPU cores)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru libvncserver-0.9.11+dfsg/debian/changelog 
libvncserver-0.9.11+dfsg/debian/changelog
--- libvncserver-0.9.11+dfsg/debian/changelog   2019-12-16 11:08:42.0 
+0100
+++ libvncserver-0.9.11+dfsg/debian/changelog   2020-01-08 08:22:51.0 
+0100
@@ -1,3 +1,13 @@
+libvncserver (0.9.11+dfsg-1.3~deb9u3) stretch; urgency=medium
+
+  * Regression update.
+
+  * debian/patches: Add use-after-free/{4,5,6}.patch. All cherry-picked from
+upstream. Resolves crashing of x11vnc when vncviewer connects. (Closes:
+#905786).
+
+ -- Mike Gabriel   Wed, 08 Jan 2020 08:22:51 +0100
+
 libvncserver (0.9.11+dfsg-1.3~deb9u2) stretch; urgency=medium
 
   * CVE-2019-15681:
diff -Nru libvncserver-0.9.11+dfsg/debian/patches/series 
libvncserver-0.9.11+dfsg/debian/patches/series
--- libvncserver-0.9.11+dfsg/debian/patches/series  2019-12-16 
11:08:18.0 +0100
+++ libvncserver-0.9.11+dfsg/debian/patches/series  2020-01-08 
08:22:51.0 +0100
@@ -25,4 +25,7 @@
 use-after-free/1.patch
 use-after-free/2.patch
 use-after-free/3.patch
+use-after-free/4.patch
+use-after-free/5.patch
+use-after-free/6.patch
 0002-set-true-color-flag-to-1.patch
diff -Nru libvncserver-0.9.11+dfsg/debian/patches/use-after-free/4.patch 
libvncserver-0.9.11+dfsg/debian/patches/use-after-free/4.patch
--- libvncserver-0.9.11+dfsg/debian/patches/use-after-free/4.patch  
1970-01-01 01:00:00.0 +0100
+++ libvncserver-0.9.11+dfsg/debian/patches/use-after-free/4.patch  
2020-01-08 08:22:51.0 +0100
@@ -0,0 +1,24 @@
+From 7e63df224aa45a8b541cd63a870594454aba7526 Mon Sep 17 00:00:00 2001
+From: Andrzej Szombierski 
+Date: Tue, 28 May 2019 10:56:47 +0200
+Subject: [PATCH] rfbserver: don't close fd 0 accidentally
+
+pipe_notify_client_thread needs to be initialized to -1
+---
+ libvncserver/rfbserver.c | 5 +
+ 1 file changed, 5 insertions(+)
+
+--- a/libvncserver/rfbserver.c
 b/libvncserver/rfbserver.c
+@@ -462,6 +462,11 @@
+ 
+   cl->lastPtrX = -1;
+ 
++#ifdef LIBVNCSERVER_HAVE_LIBPTHREAD
++  cl->pipe_notify_client_thread[0] = -1;
++  cl->pipe_notify_client_thread[1] = -1;
++#endif
++
+ #ifdef LIBVNCSERVER_WITH_WEBSOCKETS
+   /*
+* Wait a few ms for the client to send one of:
diff -Nru libvncserver-0.9.11+dfsg/debian/patches/use-after-free/5.patch 
libvncserver-0.9.11+dfsg/debian/patches/use-after-free/5.patch
--- libvncserver-0.9.11+dfsg/debian/patches/use-after-free/5.patch  
1970-01-01 01:00:00.0 +0100
+++ libvncserver-0.9.11+dfsg/debian/patches/use-after-free/5.patch  
2020-01-08 08:22:51.0 +0100
@@ -0,0 +1,26 @@
+From d0a76539835d11c0f4723499f8be4bc9c7724eb9 Mon Sep 17 00:00:00 2001
+From: Rajesh Sahoo 
+Date: Tue, 11 Jun 2019 15:13:04 +0530
+Subject: [PATCH] avoid pthread_join if backgroundLoop is FALSE
+
+client_thread is created depending upon backgroundLoop, but joining
+without checking for same condition. so we are trying to join a garbage
+thread_id.
+---
+ libvncserver/main.c | 2 ++
+ 1 file changed, 2 insertions(+)
+
+--- a/libvncserver/main.c
 b/libvncserver/main.c
+@@ -1095,9 +1095,11 @@
+   }
+ 
+ #ifdef LIBVNCSERVER_HAVE_LIBPTHREAD
++if(currentCl->screen->backgroundLoop) {
+   // Notify the thread and join it
+   write(currentCl->pipe_notify_client_thread[1], "\x00", 1);
+   pthread_join(currentCl->client_thread, NULL);
++}
+ #else
+   rfbClientConnectionGone(currentCl);
+ #endif
diff -Nru libvncserver-0.9.11+dfsg/debian/patches/use-after-free/6.patch 
libvncserver-0.9.11+dfsg/debian/patches/use-after-free/6.patch
--- libvncserver-0.9.11+dfsg/debian/patches/use-after-free/6.patch  
1970-01-01 01:00:00.0 +0100
+++ libvncserver-0.9.11+dfsg/debian/patches/use-after-free/6.patch  
2020-01-08 08:22:51.0 +0100
@@ -0,0 +1,30 @@
+From d3a4292aa9ade2a335e0915523506b73e94251d7 Mon Sep 17 00:00:00 2001
+From: C

Processed: retitle #948401

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

> retitle #948401 stretch-pu: package libvncserver/0.9.11+dfsg-1.3~deb9u3
Bug #948401 [release.debian.org] stretch-pu: package 
libvncserver/0.9.11+dfsg-1.3~+deb9u3
Changed Bug title to 'stretch-pu: package libvncserver/0.9.11+dfsg-1.3~deb9u3' 
from 'stretch-pu: package libvncserver/0.9.11+dfsg-1.3~+deb9u3'.
> kthxbye
Stopping processing here.

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



Bug#948400: buster-pu: package libvncserver/0.9.11+dfsg-1.3+deb10u2

2020-01-08 Thread Adam D. Barratt

On 2020-01-08 07:41, Mike Gabriel wrote:
a regression in the recent libvncserver buster-pu (+deb10u1) has been 
reported.


+  * Regression update.
+
+  * debian/patches: Add use-after-free/{4,5,6}.patch. All 
cherry-picked from
+upstream. Resolves crashing of x11vnc when vncviewer connects. 
(Closes:

+#905786).


Do these issues also apply to the package in unstable, or just the 
backported packages?


Regards,

Adam



Bug#948400: buster-pu: package libvncserver/0.9.11+dfsg-1.3+deb10u2

2020-01-08 Thread Mike Gabriel

Hi Adam,

On  Mi 08 Jan 2020 09:41:15 CET, Adam D. Barratt wrote:


On 2020-01-08 07:41, Mike Gabriel wrote:
a regression in the recent libvncserver buster-pu (+deb10u1) has  
been reported.


+  * Regression update.
+
+  * debian/patches: Add use-after-free/{4,5,6}.patch. All  
cherry-picked from

+upstream. Resolves crashing of x11vnc when vncviewer connects. (Closes:
+#905786).


Do these issues also apply to the package in unstable, or just the  
backported packages?


Regards,

Adam


thanks for asking. I double checked, and indeed patch 4 and 5 had not  
been in the 0.9.12 release whereas patch 6 is included.


Thus, I just uploaded 0.9.12+dfsg-7 to unstable adding patch 4 and 5  
cherry-picked from upstream. As said above, patch 6 has already been  
in unstable as part of the 0.9.12 upstream release.


Mike
--

DAS-NETZWERKTEAM
c\o Technik- und Ökologiezentrum Eckernförde
Mike Gabriel, Marienthaler str. 17, 24340 Eckernförde
mobile: +49 (1520) 1976 148
landline: +49 (4351) 850 8940

GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de



pgpHSQutal1by.pgp
Description: Digitale PGP-Signatur


Bug#948199: non-transition: libqt5quick5-gles

2020-01-08 Thread Graham Inggs
Hi Dmitry

On Sun, 5 Jan 2020 at 10:51, Dmitry Shachnev  wrote:
> And binNMU all packages marked as bad.

I only see 8 packages marked bad.

Many of those, e.g. qt-gstreamer and kadu, FTBFS during the previous
rebuild to pick up libqt5gui5-gles.

I've only binNMU'd piperka for now.

Regards
Graham



Bug#948199: non-transition: libqt5quick5-gles

2020-01-08 Thread Dmitry Shachnev
Hi Graham,

On Wed, Jan 08, 2020 at 05:20:31PM +0200, Graham Inggs wrote:
> I only see 8 packages marked bad.

The good rule is: .depends ~ "libqt5gui5-gles"

However it should be: .depends ~ "libqt5quick5-gles", i.e. s/gui/quick/.

After that much more packages should become bad.

--
Dmitry Shachnev


signature.asc
Description: PGP signature


Bug#939989: transition: gdal

2020-01-08 Thread Sebastiaan Couwenberg
On 1/8/20 5:48 AM, Sebastiaan Couwenberg wrote:
> On 1/8/20 5:31 AM, Sebastiaan Couwenberg wrote:
>> On 1/7/20 10:21 PM, Paul Gevers wrote:
>>> I hinted libvigraimpex just now, once it migrates, please go ahead.
>>
>> Today GDAL 3.0.3RC1 will be released, it's probably a good idea to wait
>> for its final release, likely a week later.
> 
> On second thought, let's start this now and have room in experimental
> for 3.0.3~rc1.

gdal (3.0.2+dfsg-1) is now built & installed on all release architectures.

Please schedule the binNMUs.

Kind Regards,

Bas

-- 
 GPG Key ID: 4096R/6750F10AE88D4AF1
Fingerprint: 8182 DE41 7056 408D 6146  50D1 6750 F10A E88D 4AF1



signature.asc
Description: OpenPGP digital signature


Bug#948429: nmu: gtkspellmm_3.0.5+dfsg-2

2020-01-08 Thread Laurent Bigonville
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: binnmu

Hello,

Could you please schedule a binNMU for gtkspellmm?

Rebuilding gtkspellmm will remove the (unneeded) dependency against 
libenchant1c2a

nmu gtkspellmm_3.0.5+dfsg-2 . ANY . unstable . -m "Rebuild to get rid of 
libenchant1c2a dependency"
dw gtkspellmm_3.0.5+dfsg-2 . ANY . -m 'libgtkspell3-3-0 (>= 3.0.10-1)'

Thanks

Laurent Bigonville

-- System Information:
Debian Release: bullseye/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'unstable'), (1, 
'experimental-debug'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 5.4.0-2-amd64 (SMP w/8 CPU cores)
Locale: LANG=fr_BE.UTF-8, LC_CTYPE=fr_BE.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_BE:fr (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: SELinux: enabled - Mode: Permissive - Policy name: refpolicy



Bug#948429: nmu: gtkspellmm_3.0.5+dfsg-2 and gimagereader_3.3.1-1

2020-01-08 Thread Laurent Bigonville
On Wed, 08 Jan 2020 16:56:25 +0100 Laurent Bigonville  
wrote:


>
> Could you please schedule a binNMU for gtkspellmm?
>
> Rebuilding gtkspellmm will remove the (unneeded) dependency against 
libenchant1c2a

>
> nmu gtkspellmm_3.0.5+dfsg-2 . ANY . unstable . -m "Rebuild to get rid 
of libenchant1c2a dependency"

> dw gtkspellmm_3.0.5+dfsg-2 . ANY . -m 'libgtkspell3-3-0 (>= 3.0.10-1)'
>

Could you also add a binNMU for gimagereader?

nmu gimagereader_3.3.1-1 . ANY . unstable . -m "Rebuild to get rid of libenchant1c2a 
dependency"
dw gimagereader_3.3.1-1 . ANY .  -m 'libgtkspell3-3-0 (>= 3.0.10-1)'

Thanks!


Bug#948429: nmu: gtkspellmm_3.0.5+dfsg-2 and gimagereader_3.3.1-1 pan_0.146-1

2020-01-08 Thread Laurent Bigonville

retitle 948429 gtkspellmm_3.0.5+dfsg-2 gimagereader_3.3.1-1 pan_0.146-1
thanks

Le 8/01/20 à 17:15, Laurent Bigonville a écrit :
On Wed, 08 Jan 2020 16:56:25 +0100 Laurent Bigonville 
 wrote:


>
> Could you please schedule a binNMU for gtkspellmm?
>
> Rebuilding gtkspellmm will remove the (unneeded) dependency against 
libenchant1c2a

>
> nmu gtkspellmm_3.0.5+dfsg-2 . ANY . unstable . -m "Rebuild to get 
rid of libenchant1c2a dependency"

> dw gtkspellmm_3.0.5+dfsg-2 . ANY . -m 'libgtkspell3-3-0 (>= 3.0.10-1)'
>

Could you also add a binNMU for gimagereader?

nmu gimagereader_3.3.1-1 . ANY . unstable . -m "Rebuild to get rid of libenchant1c2a 
dependency"
dw gimagereader_3.3.1-1 . ANY .  -m 'libgtkspell3-3-0 (>= 3.0.10-1)'
Thanks!


There these is also pan to binNMU, sorry for the noise

So to recap could you binNMU the following:

nmu gtkspellmm_3.0.5+dfsg-2 . ANY . unstable . -m "Rebuild to get rid of 
libenchant1c2a dependency"
dw gtkspellmm_3.0.5+dfsg-2 . ANY . -m 'libgtkspell3-3-0 (>= 3.0.10-1)'

nmu gimagereader_3.3.1-1 . ANY . unstable . -m "Rebuild to get rid of libenchant1c2a 
dependency"
dw gimagereader_3.3.1-1 . ANY .  -m 'libgtkspell3-3-0 (>= 3.0.10-1)'

nmu pan_0.146-1 . ANY . unstable . -m "Rebuild to get rid of libenchant1c2a 
dependency"
dw pan_0.146-1 . ANY .  -m 'libgtkspell3-3-0 (>= 3.0.10-1)'

Thanks


Processed: retitle 948429 to nmu: gtkspellmm_3.0.5+dfsg-2 gimagereader_3.3.1-1 pan_0.146-1

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

> retitle 948429 nmu: gtkspellmm_3.0.5+dfsg-2 gimagereader_3.3.1-1 pan_0.146-1
Bug #948429 [release.debian.org] nmu: gtkspellmm_3.0.5+dfsg-2
Changed Bug title to 'nmu: gtkspellmm_3.0.5+dfsg-2 gimagereader_3.3.1-1 
pan_0.146-1' from 'nmu: gtkspellmm_3.0.5+dfsg-2'.
> thanks
Stopping processing here.

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



Processed: block 947979 with 948437

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

> block 947979 with 948437
Bug #947979 [release.debian.org] transition: enchant-2
947979 was blocked by: 948352 948351 948106
947979 was not blocking any bugs.
Added blocking bug(s) of 947979: 948437
> thanks
Stopping processing here.

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



Processed: Please switch to enchant-2 instead of enchant(1)

2020-01-08 Thread Debian Bug Tracking System
Processing control commands:

> block 947979 by -1
Bug #947979 [release.debian.org] transition: enchant-2
947979 was blocked by: 948351 948437 948106 948352
947979 was not blocking any bugs.
Added blocking bug(s) of 947979: 948439

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



Bug#948199: non-transition: libqt5quick5-gles

2020-01-08 Thread Paul Gevers
Hi Dmitry,

On 08-01-2020 16:34, Dmitry Shachnev wrote:
> The good rule is: .depends ~ "libqt5gui5-gles"
> 
> However it should be: .depends ~ "libqt5quick5-gles", i.e. s/gui/quick/.
> 
> After that much more packages should become bad.

Good catch. Fixed.

Paul



signature.asc
Description: OpenPGP digital signature


Bug#948446: RM: python-lamson/1.0pre11-1.3 -- RoQA; broken since python-daemon 2.0.5-1

2020-01-08 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: rm
Control: clone -1 -2
Control: tag -2 = stretch
Control: usertag -2 rm

python-lamson is broken since stretch by a change in python-daemon,
but noone noticed it so far (#948443). As it is a leaf package
and already gone from sid (due to python2 removal), I'd suggest to
just remove it from buster and stretch, too.

Andreas



Processed (with 1 error): RM: python-lamson/1.0pre11-1.3 -- RoQA; broken since python-daemon 2.0.5-1

2020-01-08 Thread Debian Bug Tracking System
Processing control commands:

> clone -1 -2
Bug #948446 [release.debian.org] RM: python-lamson/1.0pre11-1.3 -- RoQA; broken 
since python-daemon 2.0.5-1
Bug 948446 cloned as bug 948447
> tag -2 = stretch
Bug #948447 [release.debian.org] RM: python-lamson/1.0pre11-1.3 -- RoQA; broken 
since python-daemon 2.0.5-1
Added tag(s) stretch; removed tag(s) buster.
> usertag -2 rm
Unknown command or malformed arguments to command.


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



Bug#947365: marked as done (transition: libvigraimpex)

2020-01-08 Thread Debian Bug Tracking System
Your message dated Wed, 8 Jan 2020 21:56:46 +0100
with message-id <5126f247-0d39-51fd-cd3b-f723c39b5...@debian.org>
and subject line Re: Bug#947365: transition: libvigraimpex
has caused the Debian Bug report #947365,
regarding transition: libvigraimpex
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.)


-- 
947365: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=947365
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: transition

Hello,

libvigraimpex is marked for autoremoval because of the python2 removal.
This is fixed in experimental, the new version features a soname bump.
this should be a small scale transition. I have successfully [1] rebuilt
3depict enblend-enfuse hugin luminance-hdr saga against -3 in
experimental.


Ben file:

title = "libvigraimpex";
is_affected = .depends ~ "libvigraimpex6" | .depends ~ "libvigraimpex11";
is_good = .depends ~ "libvigraimpex11";
is_bad = .depends ~ "libvigraimpex6";

cu Andreas

[1] 3depic is broken by https://bugs.debian.org/947364
--- End Message ---
--- Begin Message ---
Hi Andreas,

On 03-01-2020 14:51, Andreas Metzler wrote:
> I have just dput-ed. Thanks for the monitoring.

It seems that everything migrated. Closing this bug. Thanks.

Paul



signature.asc
Description: OpenPGP digital signature
--- End Message ---


Bug#940300: marked as done (RM: minetest-mod-torches -- RoM; obsolete and abandoned upstream)

2020-01-08 Thread Debian Bug Tracking System
Your message dated Wed, 08 Jan 2020 21:27:40 +
with message-id 
<87a3edb8ef4b9fee0fdf67192f5a019d455355ed.ca...@adam-barratt.org.uk>
and subject line Re: Bug#940300: RM: minetest-mod-torches -- RoM; obsolete and 
abandoned upstream
has caused the Debian Bug report #940300,
regarding RM: minetest-mod-torches -- RoM; obsolete and abandoned upstream
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.)


-- 
940300: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=940300
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
User: release.debian@packages.debian.org
Usertags: rm


The newer versions of the minetest game have better than what it provides

It's abandoned upstream.

This package has no rdeps.

I'm the package maintainer (within the Debian Games Team), and I'm
proposing to drop it off Debian testing (and unstable, with another bug
report).

JP
--- End Message ---
--- Begin Message ---
On Sun, 2019-09-15 at 20:34 +0200, Paul Gevers wrote:
> Control: tags -1 moreinfo
> 
> Hi Julien,
> 
> On 15-09-2019 13:16, Julien Puydt wrote:
> > I'm the package maintainer (within the Debian Games Team), and I'm
> > proposing to drop it off Debian testing (and unstable, with another
> > bug
> > report).
> 
> Did you already file that bug? Than we can close this bug as testing
> follows unstable automatically. If you haven't filed the bug, we can
> reassign it to ftp.debian.org.
> 

The package is no longer in either testing or unstable, so I'm closing
this bug.

Regards,

Adam--- End Message ---


Processed: tagging 946124

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

> tags 946124 + pending
Bug #946124 [release.debian.org] RM: firetray/0.6.1+dfsg-1.2 -- ROM; Orphaned 
and dead upstream, not needed any more
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#939802: guile-2.2 2.2.4+1-2+deb10u1 flagged for acceptance

2020-01-08 Thread Adam D Barratt
package release.debian.org
tags 939802 = 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: guile-2.2
Version: 2.2.4+1-2+deb10u1

Explanation: fix build failure



Bug#947038: libburn 1.5.0-1+deb10u1 flagged for acceptance

2020-01-08 Thread Adam D Barratt
package release.debian.org
tags 947038 = 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: libburn
Version: 1.5.0-1+deb10u1

Explanation: fix "cdrskin multi-track burning was slow and stalled after track 
1"



Bug#945845: qtwebengine-opensource-src 5.11.3+dfsg-2+deb10u1 flagged for acceptance

2020-01-08 Thread Adam D Barratt
package release.debian.org
tags 945845 = 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: qtwebengine-opensource-src
Version: 5.11.3+dfsg-2+deb10u1

Explanation: fix PDF parsing; disable executable stack



Bug#947125: cyrus-imapd 3.0.8-6+deb10u4 flagged for acceptance

2020-01-08 Thread Adam D Barratt
package release.debian.org
tags 947125 = 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: cyrus-imapd
Version: 3.0.8-6+deb10u4

Explanation: add BACKUP type to cyrus-upgrade-db, fixing upgrade issues



Bug#946559: proftpd-dfsg 1.3.6-4+deb10u3 flagged for acceptance

2020-01-08 Thread Adam D Barratt
package release.debian.org
tags 946559 = 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: proftpd-dfsg
Version: 1.3.6-4+deb10u3

Explanation: fix CRL issues [CVE-2019-19270 CVE-2019-19269]



Bug#945896: ros-ros-comm 1.14.3+ds1-5+deb10u1 flagged for acceptance

2020-01-08 Thread Adam D Barratt
package release.debian.org
tags 945896 = 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: ros-ros-comm
Version: 1.14.3+ds1-5+deb10u1

Explanation: fix security issues [CVE-2019-13566 CVE-2019-13465 CVE-2019-13445]



Bug#946901: unhide 20130526-3+deb10u1 flagged for acceptance

2020-01-08 Thread Adam D Barratt
package release.debian.org
tags 946901 = 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: unhide
Version: 20130526-3+deb10u1

Explanation: fix stack exhaustion



Bug#946841: simplesamlphp 1.16.3-1+deb10u2 flagged for acceptance

2020-01-08 Thread Adam D Barratt
package release.debian.org
tags 946841 = 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: simplesamlphp
Version: 1.16.3-1+deb10u2

Explanation: fix incompatibility with PHP 7.3



Processed: dkimpy 0.9.6-0+deb10u1 flagged for acceptance

2020-01-08 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 947321 = buster pending
Bug #947321 [release.debian.org] buster-pu: package dkimpy/0.9.1-1
Added tag(s) pending; removed tag(s) confirmed.
> thanks
Stopping processing here.

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



Processed: proftpd-dfsg 1.3.6-4+deb10u3 flagged for acceptance

2020-01-08 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 946559 = buster pending
Bug #946559 [release.debian.org] buster-pu: package proftpd-dfsg/1.3.6-4+deb10u3
Added tag(s) pending; removed tag(s) confirmed.
> thanks
Stopping processing here.

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



Processed: unhide 20130526-3+deb10u1 flagged for acceptance

2020-01-08 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 946901 = buster pending
Bug #946901 [release.debian.org] buster-pu: package unhide/20130526-3+deb10u1
Added tag(s) pending; removed tag(s) confirmed.
> thanks
Stopping processing here.

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



Bug#947321: dkimpy 0.9.6-0+deb10u1 flagged for acceptance

2020-01-08 Thread Adam D Barratt
package release.debian.org
tags 947321 = 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: dkimpy
Version: 0.9.6-0+deb10u1

Explanation: new upstream stable release



Processed: simplesamlphp 1.16.3-1+deb10u2 flagged for acceptance

2020-01-08 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 946841 = buster pending
Bug #946841 [release.debian.org] buster-pu: package 
simplesamlphp/1.16.3-1+deb10u2
Added tag(s) pending; removed tag(s) confirmed.
> thanks
Stopping processing here.

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



Processed: guile-2.2 2.2.4+1-2+deb10u1 flagged for acceptance

2020-01-08 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 939802 = buster pending
Bug #939802 [release.debian.org] buster-pu: package guile-2.2/2.2.4+1-2
Added tag(s) pending; removed tag(s) confirmed.
> thanks
Stopping processing here.

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



Processed: cyrus-imapd 3.0.8-6+deb10u4 flagged for acceptance

2020-01-08 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 947125 = buster pending
Bug #947125 [release.debian.org] buster-pu: package cyrus-imapd/3.0.8-6+deb10u4
Added tag(s) pending; removed tag(s) confirmed.
> thanks
Stopping processing here.

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



Processed: libburn 1.5.0-1+deb10u1 flagged for acceptance

2020-01-08 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 947038 = buster pending
Bug #947038 [release.debian.org] buster-pu: package libburn/1.5.0-1
Added tag(s) pending; removed tag(s) confirmed.
> thanks
Stopping processing here.

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



Processed: qtwebengine-opensource-src 5.11.3+dfsg-2+deb10u1 flagged for acceptance

2020-01-08 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 945845 = buster pending
Bug #945845 [release.debian.org] buster-pu: package 
qtwebengine-opensource-src/5.11.3+dfsg-2+deb10u1
Added tag(s) pending; removed tag(s) confirmed.
> thanks
Stopping processing here.

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



Processed: ros-ros-comm 1.14.3+ds1-5+deb10u1 flagged for acceptance

2020-01-08 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 945896 = buster pending
Bug #945896 [release.debian.org] buster-pu: package ros-ros-comm/1.14.3+ds1-5
Added tag(s) pending; removed tag(s) confirmed.
> thanks
Stopping processing here.

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



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_sourceonly.changes
  ACCEPT
Processing changes file: dkimpy_0.9.6-0+deb10u1_source.changes
  ACCEPT
Processing changes file: guile-2.2_2.2.4+1-2+deb10u1_source.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_source.changes
  ACCEPT
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_i386.changes
  ACCEPT
Processing changes file: python-django_1.11.27-1~deb10u1_amd64.changes
  ACCEPT
Processing changes file: 
qtwebengine-opensource-src_5.11.3+dfsg-2+deb10u1_source.changes
  ACCEPT
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_source.changes
  ACCEPT
Processing changes file: simplesamlphp_1.16.3-1+deb10u2_amd64.changes
  ACCEPT
Processing changes file: unhide_20130526-3+deb10u1_source.changes
  ACCEPT
Processing changes file: wordpress_5.0.4+dfsg1-1+deb10u1_amd64.changes
  ACCEPT



NEW changes in oldstable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: netty_4.1.7-2+deb9u1_sourceonly.changes
  ACCEPT
Processing changes file: netty_4.1.7-2+deb9u1_all.changes
  ACCEPT
Processing changes file: python-django_1.10.7-2+deb9u7_amd64.changes
  ACCEPT



Bug#948465: stretch-pu: package pykaraoke/0.7.5-1.2+deb9u1

2020-01-08 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian@packages.debian.org
Usertags: pu

Hi,

pykaraoke has broken symlinks to the fonts it uses (the links are dating
back to the ttf-* age). These prevent the appliation from starting.
#948385

Let's fix the links s.t. the package is usable again in stretch
(it's gone from sid due to being python2 only).

The fix is already uploaded.


Andreas
diff -Nru pykaraoke-0.7.5/debian/changelog pykaraoke-0.7.5/debian/changelog
--- pykaraoke-0.7.5/debian/changelog2016-12-31 09:39:49.0 +0100
+++ pykaraoke-0.7.5/debian/changelog2020-01-08 23:05:38.0 +0100
@@ -1,3 +1,10 @@
+pykaraoke (0.7.5-1.2+deb9u1) stretch; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix path to fonts.  (Closes: #948385)
+
+ -- Andreas Beckmann   Wed, 08 Jan 2020 23:05:38 +0100
+
 pykaraoke (0.7.5-1.2) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru pykaraoke-0.7.5/debian/pykaraoke.links 
pykaraoke-0.7.5/debian/pykaraoke.links
--- pykaraoke-0.7.5/debian/pykaraoke.links  2016-12-31 09:32:30.0 
+0100
+++ pykaraoke-0.7.5/debian/pykaraoke.links  2020-01-08 22:11:43.0 
+0100
@@ -1,4 +1,4 @@
-/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf 
usr/share/pykaraoke/fonts/DejaVuSans.ttf
-/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed.ttf 
usr/share/pykaraoke/fonts/DejaVuSansCondensed.ttf
-/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed-Bold.ttf 
usr/share/pykaraoke/fonts/DejaVuSansCondensed-Bold.ttf
+/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf 
usr/share/pykaraoke/fonts/DejaVuSans.ttf
+/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed.ttf 
usr/share/pykaraoke/fonts/DejaVuSansCondensed.ttf
+/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Bold.ttf 
usr/share/pykaraoke/fonts/DejaVuSansCondensed-Bold.ttf
 


Bug#948464: buster-pu: package pykaraoke/0.7.5-1.2+deb10u1

2020-01-08 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu

Hi,

pykaraoke has broken symlinks to the fonts it uses (the links are dating
back to the ttf-* age). These prevent the appliation from starting. #948385

Let's fix the links s.t. the package is usable again in buster
(it's gone from sid due to being python2 only).

The fix is already uploaded.


Andreas
diff -Nru pykaraoke-0.7.5/debian/changelog pykaraoke-0.7.5/debian/changelog
--- pykaraoke-0.7.5/debian/changelog2016-12-31 09:39:49.0 +0100
+++ pykaraoke-0.7.5/debian/changelog2020-01-08 22:11:59.0 +0100
@@ -1,3 +1,10 @@
+pykaraoke (0.7.5-1.2+deb10u1) buster; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix path to fonts.  (Closes: #948385)
+
+ -- Andreas Beckmann   Wed, 08 Jan 2020 22:11:59 +0100
+
 pykaraoke (0.7.5-1.2) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru pykaraoke-0.7.5/debian/pykaraoke.links 
pykaraoke-0.7.5/debian/pykaraoke.links
--- pykaraoke-0.7.5/debian/pykaraoke.links  2016-12-31 09:32:30.0 
+0100
+++ pykaraoke-0.7.5/debian/pykaraoke.links  2020-01-08 22:11:43.0 
+0100
@@ -1,4 +1,4 @@
-/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf 
usr/share/pykaraoke/fonts/DejaVuSans.ttf
-/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed.ttf 
usr/share/pykaraoke/fonts/DejaVuSansCondensed.ttf
-/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed-Bold.ttf 
usr/share/pykaraoke/fonts/DejaVuSansCondensed-Bold.ttf
+/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf 
usr/share/pykaraoke/fonts/DejaVuSans.ttf
+/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed.ttf 
usr/share/pykaraoke/fonts/DejaVuSansCondensed.ttf
+/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Bold.ttf 
usr/share/pykaraoke/fonts/DejaVuSansCondensed-Bold.ttf
 


Bug#948468: (unplanned) transition: gpsd

2020-01-08 Thread Bernd Zeimetz
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: transition

Hi release team,

unfortunately gpsd upstream missed to change the soname version (seems
its actually mentioned in the commit message, but the change is missing)
and I also missed that one struct changed in a subtle way.
Additionally I've learned that some build-rdeps use parts of libgps
that are not part of the official API. These parts changed, so
there will be some FTBFS. I'll take care of them where necessary,
although I know that some people are already working on fixes (pabs for
example).

gpsd 3.20-2 is in NEW right now and will go to experimental, if you
don't object I'd upload it to unstable to make the mess smaller than it
is now.

I'll also implement a CI check for soname bumps in the gpsd upstream CI
;)


Ben file:

title = "gpsd";
is_affected = .depends ~ /^lib.*gps.*25$/ | .depends ~ /^lib.*gps.*26$/;
is_good = .depends ~ /^lib.*gps.*26$/;
is_bad = .depends ~ /^lib.*gps.*25$/;


Sorry & thanks,

Bernd

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Bug#948472: buster-pu: package tifffile/20181128-1+deb10u1

2020-01-08 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian@packages.debian.org
Usertags: pu

tifffile fails to start due to mixing python2 and python3: #939511, #938668

This trivial fix also causes the following dependency reduction:

Control files: lines which differ (wdiff format)

Depends: python3-numpy (>= [-1:1.14.3),-] {+1:1.16.0~rc1),+} 
python3-numpy-abi9, [-python3:any, python:any-] {+python3:any+}
Version: [-20181128-1-] {+20181128-1+deb10u1+}

The fixed package is already uploaded.

Andreas
diff -Nru tifffile-20181128/debian/changelog tifffile-20181128/debian/changelog
--- tifffile-20181128/debian/changelog  2018-12-01 07:52:43.0 +0100
+++ tifffile-20181128/debian/changelog  2020-01-09 02:44:21.0 +0100
@@ -1,3 +1,13 @@
+tifffile (20181128-1+deb10u1) buster; urgency=medium
+
+  * Non-maintainer upload.
+
+  [ Andreas Tille ]
+  * Fix wrapper script
+Closes: #939511, #938668
+
+ -- Andreas Beckmann   Thu, 09 Jan 2020 02:44:21 +0100
+
 tifffile (20181128-1) unstable; urgency=medium
 
   * New upstream version
diff -Nru tifffile-20181128/debian/tifffile.sh 
tifffile-20181128/debian/tifffile.sh
--- tifffile-20181128/debian/tifffile.sh2018-12-01 07:52:43.0 
+0100
+++ tifffile-20181128/debian/tifffile.sh2020-01-09 02:44:21.0 
+0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 
 import sys
 import tifffile


NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_all.changes
  ACCEPT
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_amd64.changes
  ACCEPT
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_arm64.changes
  ACCEPT
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_ppc64el.changes
  ACCEPT
Processing changes file: dkimpy_0.9.6-0+deb10u1_all.changes
  ACCEPT
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_all.changes
  ACCEPT



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_armel.changes
  ACCEPT
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_armhf.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_arm64.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_ppc64el.changes
  ACCEPT
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_arm64.changes
  ACCEPT
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_ppc64el.changes
  ACCEPT
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_arm64.changes
  ACCEPT
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_ppc64el.changes
  ACCEPT
Processing changes file: unhide_20130526-3+deb10u1_arm64.changes
  ACCEPT
Processing changes file: unhide_20130526-3+deb10u1_ppc64el.changes
  ACCEPT



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_i386.changes
  ACCEPT
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_armhf.changes
  ACCEPT



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_mips64el.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_armel.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_armhf.changes
  ACCEPT
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_armel.changes
  ACCEPT
Processing changes file: unhide_20130526-3+deb10u1_armel.changes
  ACCEPT
Processing changes file: unhide_20130526-3+deb10u1_armhf.changes
  ACCEPT



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_mips.changes
  ACCEPT
Processing changes file: guile-2.2_2.2.4+1-2+deb10u1_all.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_all.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_mips.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_mips64el.changes
  ACCEPT
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_all.changes
  ACCEPT
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_armel.changes
  ACCEPT
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_armhf.changes
  ACCEPT
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_i386.changes
  ACCEPT



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_amd64.changes
  ACCEPT
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_mips.changes
  ACCEPT
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_mips64el.changes
  ACCEPT
Processing changes file: unhide_20130526-3+deb10u1_mips.changes
  ACCEPT



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_s390x.changes
  ACCEPT
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_mips.changes
  ACCEPT
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_mips64el.changes
  ACCEPT
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_s390x.changes
  ACCEPT
Processing changes file: unhide_20130526-3+deb10u1_mips64el.changes
  ACCEPT



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: cyrus-imapd_3.0.8-6+deb10u4_mipsel.changes
  ACCEPT



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: guile-2.2_2.2.4+1-2+deb10u1_amd64.changes
  ACCEPT
Processing changes file: guile-2.2_2.2.4+1-2+deb10u1_i386.changes
  ACCEPT
Processing changes file: guile-2.2_2.2.4+1-2+deb10u1_ppc64el.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_amd64.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_i386.changes
  ACCEPT
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_amd64.changes
  ACCEPT
Processing changes file: 
qtwebengine-opensource-src_5.11.3+dfsg-2+deb10u1_armhf.changes
  ACCEPT
Processing changes file: unhide_20130526-3+deb10u1_amd64.changes
  ACCEPT
Processing changes file: unhide_20130526-3+deb10u1_i386.changes
  ACCEPT



Bug#948474: RM: cain/1.10+dfsg-3

2020-01-08 Thread Sandro Tosi
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: rm

cain is one of the only 2 remaining reverse dependencies of python-scipy in
testing (python-networkx is schedule for RM by ftp.d.o, and i'm working on
scikit-learn right now); while we figure out if it's worth keeping src:cain in
Debian (see #948473), can you please remove it from testing? this will simplify
the work on scipy.

Thanks,
Sandro

-- System Information:
Debian Release: 10.0
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'unstable'), (1, 
'experimental-debug'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.0-5-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE= 
(charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: guile-2.2_2.2.4+1-2+deb10u1_arm64.changes
  ACCEPT
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_i386.changes
  REJECT



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: guile-2.2_2.2.4+1-2+deb10u1_s390x.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_mipsel.changes
  ACCEPT
Processing changes file: libburn_1.5.0-1+deb10u1_s390x.changes
  ACCEPT
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_s390x.changes
  ACCEPT
Processing changes file: 
qtwebengine-opensource-src_5.11.3+dfsg-2+deb10u1_i386.changes
  ACCEPT
Processing changes file: ros-ros-comm_1.14.3+ds1-5+deb10u1_mipsel.changes
  ACCEPT
Processing changes file: unhide_20130526-3+deb10u1_mipsel.changes
  ACCEPT
Processing changes file: unhide_20130526-3+deb10u1_s390x.changes
  ACCEPT



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: 
qtwebengine-opensource-src_5.11.3+dfsg-2+deb10u1_amd64.changes
  ACCEPT



NEW changes in stable-new

2020-01-08 Thread Debian FTP Masters
Processing changes file: proftpd-dfsg_1.3.6-4+deb10u3_mipsel.changes
  ACCEPT
Processing changes file: 
qtwebengine-opensource-src_5.11.3+dfsg-2+deb10u1_all.changes
  ACCEPT



Bug#948477: transition: openbabel

2020-01-08 Thread merkys
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: transition

Hello,

I would like to request a transition slot for openbabel (experimental ->
unstable). Current ben tracker [1] is fine, it just misses avogadrolibs,
which has been recently accepted into unstable.

The status of affected packages:

* Rebuilds without patching: kalzium, avogadrolibs
* Needs patching (I have patches at hand): ghemical, xdrawchem,
gnome-chemistry-utils
* Sid-only (not in testing due to FTBFS): v-sim, mpqc3

As I am team-maintaining most of these packages, I will be able to patch
and upload where needed. xdrawchem is not team-maintained.

Best,
Andrius

[1] https://release.debian.org/transitions/html/auto-openbabel.html



signature.asc
Description: OpenPGP digital signature