Bug#941649: marked as done (lua5.3 FTCBFS: stop using libtool-bin)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 08:44:45 +
with message-id 
and subject line Bug#941649: fixed in lua5.4 5.4.0~alpha-2
has caused the Debian Bug report #941649,
regarding lua5.3 FTCBFS: stop using libtool-bin
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.)


-- 
941649: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941649
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: lua5.3
Version: 5.3.1-1.1
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

lua5.3 fails to cross build from source, because it uses libtool-bin.
The libtool-bin package is meant as a transitional measure until all
users switch over to libtoolize. It also doesn't support cross compiling
at all.

The attached patch libtoolizes a dummy projected to obtain a libtool
that works for lua5.3. Thus the dependency on libtool-bin is avoided and
lua5.3 cross builds. Please consider applying the attached patch.

Please also consider porting it back to lua5.2 and lua5.1, which suffer
from the same problem.

Helmut
diff --minimal -Nru lua5.3-5.3.1/debian/changelog lua5.3-5.3.1/debian/changelog
--- lua5.3-5.3.1/debian/changelog
+++ lua5.3-5.3.1/debian/changelog
@@ -1,3 +1,12 @@
+lua5.3 (5.3.1-1.2) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: (Closes: #-1)
++ libtoolize during build to avoid a dependency on libtool-bin.
++ Use triplet-prefixed tools.
+
+ -- Helmut Grohne   Sat, 29 Oct 2016 13:45:18 +0200
+
 lua5.3 (5.3.1-1.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff --minimal -Nru lua5.3-5.3.1/debian/configure.ac 
lua5.3-5.3.1/debian/configure.ac
--- lua5.3-5.3.1/debian/configure.ac
+++ lua5.3-5.3.1/debian/configure.ac
@@ -0,0 +1,4 @@
+AC_INIT([dummy],[1.0])
+LT_INIT
+AC_PROG_LIBTOOL
+AC_OUTPUT
diff --minimal -Nru lua5.3-5.3.1/debian/control lua5.3-5.3.1/debian/control
--- lua5.3-5.3.1/debian/control
+++ lua5.3-5.3.1/debian/control
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Enrico Tassi 
 Uploaders: 
-Build-Depends: debhelper (>= 9), quilt (>= 0.40), libtool-bin, libreadline-dev
+Build-Depends: debhelper (>= 9), quilt (>= 0.40), libtool, libreadline-dev, 
autoconf
 Standards-Version: 3.9.6
 Vcs-Git: git://git.debian.org/git/pkg-lua/lua5.3.git
 Vcs-Browser: http://git.debian.org/?p=pkg-lua/lua5.3.git
diff --minimal -Nru lua5.3-5.3.1/debian/patches/0001-build-system.patch 
lua5.3-5.3.1/debian/patches/0001-build-system.patch
--- lua5.3-5.3.1/debian/patches/0001-build-system.patch
+++ lua5.3-5.3.1/debian/patches/0001-build-system.patch
@@ -11,15 +11,6 @@
 index 7fa91c8..e669e78 100644
 --- a/Makefile
 +++ b/Makefile
-@@ -1,6 +1,8 @@
- # Makefile for installing Lua
- # See doc/readme.html for installation and customization instructions.
- 
-+export LIBTOOL=libtool --quiet
-+
- # == CHANGE THE SETTINGS BELOW TO SUIT YOUR ENVIRONMENT 
===
- 
- # Your platform. See PLATS for possible values.
 @@ -10,19 +12,20 @@ PLAT= none
  # so take care if INSTALL_TOP is not an absolute path. See the local target.
  # You may want to make INSTALL_LMOD and INSTALL_CMOD consistent with
@@ -84,14 +75,11 @@
 index 2e7a412..993ff15 100644
 --- a/src/Makefile
 +++ b/src/Makefile
-@@ -6,8 +6,10 @@
- # Your platform. See PLATS for possible values.
+@@ -7,7 +7,8 @@
  PLAT= none
  
--CC= gcc -std=gnu99
+ CC= gcc -std=gnu99
 -CFLAGS= -O2 -Wall -Wextra -DLUA_COMPAT_5_2 $(SYSCFLAGS) $(MYCFLAGS)
-+CC= $(CCACHE)gcc -std=gnu99
-+CXX= $(CCACHE)g++
 +CFLAGS= -Wall -Wextra -DLUA_COMPAT_5_2 $(SYSCFLAGS) $(MYCFLAGS)
 +CXXFLAGS= -Wall -Wextra -DLUA_COMPAT_5_2 $(SYSCFLAGS) $(MYCXXFLAGS)
  LDFLAGS= $(SYSLDFLAGS) $(MYLDFLAGS)
diff --minimal -Nru lua5.3-5.3.1/debian/rules lua5.3-5.3.1/debian/rules
--- lua5.3-5.3.1/debian/rules
+++ lua5.3-5.3.1/debian/rules
@@ -3,7 +3,15 @@
 # Uncomment to use ccache
 #export CCACHE=/usr/lib/ccache/
 
-ifeq (hurd,$(shell dpkg-architecture -qDEB_HOST_ARCH_OS))
+include /usr/share/dpkg/architecture.mk
+ifeq ($(origin CC),default)
+CC = $(CCACHE)$(DEB_HOST_GNU_TYPE)-gcc
+endif
+ifeq ($(origin CXX),default)
+CXX = $(CCACHE)$(DEB_HOST_GNU_TYPE)-g++
+endif
+
+ifeq (hurd,$(DEB_HOST_ARCH_OS))
MYLIBS=-lpthread
 endif
 
@@ -29,6 +37,10 @@
dh $@
 
 override_dh_auto_configure:
+   mkdir debian/libtool
+   cp debian/configure.ac debian/libtool/
+   cd debian/libtool && LIBTOOLIZE='libtoolize -i' autoreconf -f -i
+   dh_auto_configure --sourcedirectory=debian/libtool
echo "#ifndef _LUA_DEB_MULTIARCH_" > src/$(LUA_MULTIARCH)
echo "#define _LUA_DEB_MULTIARCH_" >> src/$(LUA_MULTIARCH)
echo "#define 

Bug#938169: marked as done (python-setuptools-git: Python2 removal in sid/bullseye)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 08:46:48 +
with message-id 
and subject line Bug#938169: fixed in python-setuptools-git 1.2-3
has caused the Debian Bug report #938169,
regarding python-setuptools-git: Python2 removal in sid/bullseye
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.)


-- 
938169: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=938169
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:python-setuptools-git
Version: 1.2-2
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:python-setuptools-git

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: python-setuptools-git
Source-Version: 1.2-3

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

Debian distribution maintenance software
pp.
Laszlo Boszormenyi (GCS)  (supplier of updated 
python-setuptools-git package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 13 Oct 2019 07:01:44 +
Source: python-setuptools-git
Architecture: source
Version: 1.2-3
Distribution: unstable
Urgency: medium
Maintainer: Laszlo Boszormenyi (GCS) 
Changed-By: Laszlo Boszormenyi (GCS) 
Closes: 938169
Changes:
 python-setuptools-git (1.2-3) unstable; urgency=medium
 .
   * Update homepage location.
   * Update Standards-Version to 4.4.1 .
 .
   [ Sandro Tosi  ]
   * Drop python2 support (closes: #938169).
Checksums-Sha1:
 869b1b98b9c5b6842cbcc5a3479d53367c71c697 1923 python-setuptools-git_1.2-3.dsc
 528f9630a0da765b8f3d0469ba443b8f4fa285dd 3320 
python-setuptools-git_1.2-3.debian.tar.xz
Checksums-Sha256:
 1c01272652c580343c5a76fd2508b8a17b5ebe2fceacf2f0e10c8dfc7f7cf59e 1923 
python-setuptools-git_1.2-3.dsc
 1878f7e7b1c8384a95a7822d860fc4672218cef1e03f42b252ab6a126ed8c127 3320 
python-setuptools-git_1.2-3.debian.tar.xz
Files:
 

Processed: closing 917974

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

> close 917974 0.81.0-1
Bug #917974 {Done: Salvatore Bonaccorso } [src:poppler] 
poppler: CVE-2018-20650: reachable abort in FileSpec::FileSpec in FileSpec.cc
Ignoring request to alter fixed versions of bug #917974 to the same values 
previously set
Bug #917974 {Done: Salvatore Bonaccorso } [src:poppler] 
poppler: CVE-2018-20650: reachable abort in FileSpec::FileSpec in FileSpec.cc
Bug 917974 is already marked as done; not doing anything.
> thanks
Stopping processing here.

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



Processed: closing 941776

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

> close 941776 0.81.0-1
Bug #941776 [src:poppler] poppler: CVE-2019-9959
Ignoring request to alter fixed versions of bug #941776 to the same values 
previously set
Bug #941776 [src:poppler] poppler: CVE-2019-9959
Marked Bug as done
> thanks
Stopping processing here.

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



Processed: closing 933812

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

> close 933812 0.81.0-1
Bug #933812 [src:poppler] poppler: CVE-2019-14494
Marked as fixed in versions poppler/0.81.0-1.
Bug #933812 [src:poppler] poppler: CVE-2019-14494
Marked Bug as done
> thanks
Stopping processing here.

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



Processed: closing 926721

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

> close 926721 0.81.0-1
Bug #926721 [src:poppler] poppler: CVE-2019-11026
Marked as fixed in versions poppler/0.81.0-1.
Bug #926721 [src:poppler] poppler: CVE-2019-11026
Marked Bug as done
> thanks
Stopping processing here.

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



Bug#938405: marked as done (ros-vision-opencv: Python2 removal in sid/bullseye)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 12:36:51 +
with message-id 
and subject line Bug#938405: fixed in ros-vision-opencv 1.13.0+ds-3
has caused the Debian Bug report #938405,
regarding ros-vision-opencv: Python2 removal in sid/bullseye
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.)


-- 
938405: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=938405
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:ros-vision-opencv
Version: 1.13.0+ds-2
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:ros-vision-opencv

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: ros-vision-opencv
Source-Version: 1.13.0+ds-3

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

Debian distribution maintenance software
pp.
Mattia Rizzolo  (supplier of updated ros-vision-opencv 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 13 Oct 2019 13:44:40 +0200
Source: ros-vision-opencv
Architecture: source
Version: 1.13.0+ds-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 

Changed-By: Mattia Rizzolo 
Closes: 938405
Changes:
 ros-vision-opencv (1.13.0+ds-3) unstable; urgency=medium
 .
   * Team upload.
   * Drop Python 2 support.  Closes: #938405
Checksums-Sha1:
 f9f416e06fa6d1648772ec0bd39250fa64f56b97 2645 ros-vision-opencv_1.13.0+ds-3.dsc
 66236c753797786607ef78424ecd9f7cb7aa6707 5156 
ros-vision-opencv_1.13.0+ds-3.debian.tar.xz
 7df1d3b019b054f8ddeb3d51cbcc3e49b0b893cb 22041 
ros-vision-opencv_1.13.0+ds-3_amd64.buildinfo
Checksums-Sha256:
 c200a86472490b20a4bdec3af181fd4119b481f07a759ae3bdbe24cffe891bb4 2645 
ros-vision-opencv_1.13.0+ds-3.dsc
 431342256298f4e40a5dc6d0f3f5631cad5d06bcf3e00efa5247257cbfc13115 5156 
ros-vision-opencv_1.13.0+ds-3.debian.tar.xz
 

Bug#941124: marked as done (elixir-lang (autopkgtest) fails with new erlang)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 07:19:34 +
with message-id 
and subject line Bug#941124: fixed in elixir-lang 1.9.1.dfsg-1.1
has caused the Debian Bug report #941124,
regarding elixir-lang (autopkgtest) fails with new erlang
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.)


-- 
941124: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941124
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: binnmu

nmu elixir-lang_1.9.1.dfsg-1 . ANY . unstable . -m "Rebuild against erlang 22.1"

Hi release team!

Apparently, elixir-land needs to be rebuilt against newer erlang 22.1.
Currently, it doesn't pass autopkgtest (see [1] for details).

There were some internal changes in Erlang re module (regular expressions) which
triggered the test failure. After a simple rebuild all tests pass again.

[1] 
https://ci.debian.net/data/autopkgtest/testing/amd64/e/elixir-lang/3018464/log.gz

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

Kernel: Linux 4.19.0-6-amd64 (SMP w/12 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
--- End Message ---
--- Begin Message ---
Source: elixir-lang
Source-Version: 1.9.1.dfsg-1.1

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

Debian distribution maintenance software
pp.
Sergei Golovan  (supplier of updated elixir-lang package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 09:39:24 +0300
Source: elixir-lang
Architecture: source
Version: 1.9.1.dfsg-1.1
Distribution: unstable
Urgency: medium
Maintainer: Evgeny Golyshev 
Changed-By: Sergei Golovan 
Closes: 941124
Changes:
 elixir-lang (1.9.1.dfsg-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Add a dependency of the elixir binary package on erlang-pcre-
 virtual package to prevent installation when PCRE in Erlang changes,
 invalidating precompiled regexes (closes: #941124).
   * Move to ${erlang:Depends} substitution variable to calculate the
 dependencies automatically.
Checksums-Sha1:
 1c8fd8b15c7f2518349f7b8bde9f76114a3a5626 2157 elixir-lang_1.9.1.dfsg-1.1.dsc
 8d4b4474145d72ea68393b86de3c489de780b2c7 7044 
elixir-lang_1.9.1.dfsg-1.1.debian.tar.xz
 8a17e4c21b29c930340d0e19b7e5fe88fef81e5f 11013 
elixir-lang_1.9.1.dfsg-1.1_amd64.buildinfo
Checksums-Sha256:
 3425265e68894bbd77000c12b4e8eec8fb7048bb292e212384064bf305b45004 2157 
elixir-lang_1.9.1.dfsg-1.1.dsc
 bbc612ceae126f7efe87484a52f18dca8af004f4659a53027a0dffc9acc2f005 7044 
elixir-lang_1.9.1.dfsg-1.1.debian.tar.xz
 0919649ebc862cbf9aeeccf12ae9c26aed01e39b97caef2462c00139ea583c09 11013 
elixir-lang_1.9.1.dfsg-1.1_amd64.buildinfo
Files:
 dce20fd9891c3ea191e8db19cec8599c 2157 interpreters optional 
elixir-lang_1.9.1.dfsg-1.1.dsc
 1213a0fa14da043f58a6c40472c484a4 7044 interpreters optional 
elixir-lang_1.9.1.dfsg-1.1.debian.tar.xz
 4ece7e210a4ed05a2bb4261037f49b99 11013 interpreters optional 
elixir-lang_1.9.1.dfsg-1.1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE/SYPsyDB+ShSnvc4Tyrk60tj54cFAl2iy88ACgkQTyrk60tj
54esyQ/+K1ltcFn9lJytV1YlzQ6T/+fjzJIYrxuj+G81F8uk4a2YQ1esEdls+R3u
/Zb/96S96kYelU5ixRwnO5B/ZzW3a/1vROBZ58KLnWbhiSg+EZZTv8YoErJ5r3cX
oEvj1rxzmhGeTVICt2lCuaFvzt/oGjAPUz+XfZ+24+6yoGs5ydXhHlt6aScuF/g9
OssIaqOJdjICo2w6Mw3nOXz1WfXL5TQwilWJedCY3EACRIvPmHB8nADWq6SnU5Rv
/vi1xGkcAi52Fn8sthqkjsaWUeQUuy5Tlqd1JNgzJX/az2dDd8BckCsLveftBK3M
k824BduYBUxaaDaKGSw26e1JpBciUfydVJbioPQ0vSTn6YaRRaDZXf5t2QOEUUue
KbqkeGevvDwL92ZbEte2ihIepK9tWmDhaBtB+ESUPcfvKVCixWqKp0IA5872GCEx
jzzPomdW5hCT4bskvT6oa1u3qXXmqlWK2OjlpNGfHxpz5jXzBabfHqROmHM/x7pl
MYPuAwtf2TKYEVXN1jbbK0IBVMyqh0fKqn1FSKeDiAGxEQC6SBMaf7mBJaOQMZSx

Bug#925627: marked as done (adplug: ftbfs with GCC-9)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:13 +
with message-id 
and subject line Bug#925627: fixed in adplug 2.3.1+dfsg-1
has caused the Debian Bug report #925627,
regarding adplug: ftbfs with GCC-9
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.)


-- 
925627: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925627
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:adplug
Version: 2.2.1+dfsg3-1
Severity: normal
Tags: sid bullseye
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-9

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

The package fails to build in a test rebuild on at least amd64 with
gcc-9/g++-9, but succeeds to build with gcc-8/g++-8. The
severity of this report will be raised before the bullseye release,
so nothing has to be done for the buster release.

The full build log can be found at:
http://people.debian.org/~doko/logs/gcc9-20190321/adplug_2.2.1+dfsg3-1_unstable_gcc9.log
The last lines of the build log are at the end of this report.

To build with GCC 9, either set CC=gcc-9 CXX=g++-9 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++ 

Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-9/porting_to.html

GCC 9 also passes the linker option --as-needed by default; typical
build issues are passing libraries before object files to the linker,
or underlinking of convenience libraries built from the same source.

[...]
/bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DPACKAGE_NAME=\"adplug\" 
-DPACKAGE_TARNAME=\"adplug\" -DPACKAGE_VERSION=\"2.2.1\" 
-DPACKAGE_STRING=\"adplug\ 2.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" 
-DPACKAGE=\"adplug\" -DVERSION=\"2.2.1\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 
-DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBSTDC__=1 -DHAVE_GETOPT_H=1 
-I.  -Dstricmp=strcasecmp -I/usr/include/libbinio   -g -O2 -c -o dro.lo dro.cpp
libtool: compile:  g++ -DPACKAGE_NAME=\"adplug\" -DPACKAGE_TARNAME=\"adplug\" 
-DPACKAGE_VERSION=\"2.2.1\" "-DPACKAGE_STRING=\"adplug 2.2.1\"" 
-DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"adplug\" 
-DVERSION=\"2.2.1\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 
-DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 
-DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 
-DLT_OBJDIR=\".libs/\" -DHAVE_LIBSTDC__=1 -DHAVE_GETOPT_H=1 -I. 
-Dstricmp=strcasecmp -I/usr/include/libbinio -g -O2 -c dro.cpp  -fPIC -DPIC -o 
.libs/dro.o
libtool: compile:  g++ -DPACKAGE_NAME=\"adplug\" -DPACKAGE_TARNAME=\"adplug\" 
-DPACKAGE_VERSION=\"2.2.1\" "-DPACKAGE_STRING=\"adplug 2.2.1\"" 
-DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"adplug\" 
-DVERSION=\"2.2.1\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 
-DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 
-DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 
-DLT_OBJDIR=\".libs/\" -DHAVE_LIBSTDC__=1 -DHAVE_GETOPT_H=1 -I. 
-Dstricmp=strcasecmp -I/usr/include/libbinio -g -O2 -c dro.cpp -o dro.o 
>/dev/null 2>&1
/bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DPACKAGE_NAME=\"adplug\" 
-DPACKAGE_TARNAME=\"adplug\" -DPACKAGE_VERSION=\"2.2.1\" 
-DPACKAGE_STRING=\"adplug\ 2.2.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" 
-DPACKAGE=\"adplug\" -DVERSION=\"2.2.1\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 
-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 
-DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 
-DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBSTDC__=1 -DHAVE_GETOPT_H=1 
-I.  -Dstricmp=strcasecmp -I/usr/include/libbinio   -g -O2 -c -o lds.lo lds.cpp
libtool: compile:  g++ -DPACKAGE_NAME=\"adplug\" -DPACKAGE_TARNAME=\"adplug\" 
-DPACKAGE_VERSION=\"2.2.1\" "-DPACKAGE_STRING=\"adplug 2.2.1\"" 
-DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"adplug\" 
-DVERSION=\"2.2.1\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 
-DHAVE_STDLIB_H=1 

Bug#930204: marked as done (libadplug-dev: move adplug.pc to a multiarch location)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:13 +
with message-id 
and subject line Bug#930204: fixed in adplug 2.3.1+dfsg-1
has caused the Debian Bug report #930204,
regarding libadplug-dev: move adplug.pc to a multiarch location
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.)


-- 
930204: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=930204
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libadplug-dev
Version: 2.2.1+dfsg3-1
Tags: patch
User: debian-cr...@lists.debian.org
Usertags: ftcbfs
Control: affects -1 + src:adplay

adplay fails to cross build from source, because it does not find
adplug.pc. During cross compilation, pkg-config does not search
/usr/lib/pkgconfig. We'll have to move adplug.pc to
/usr/lib/${DEB_HOST_MULTIARCH}/pkgconfig. Please consider applying the
attached patch.

Helmut
diff --minimal -Nru adplug-2.2.1+dfsg3/debian/changelog 
adplug-2.2.1+dfsg3/debian/changelog
--- adplug-2.2.1+dfsg3/debian/changelog 2019-01-04 23:15:15.0 +0100
+++ adplug-2.2.1+dfsg3/debian/changelog 2019-06-08 08:50:11.0 +0200
@@ -1,3 +1,9 @@
+adplug (2.2.1+dfsg3-2) UNRELEASED; urgency=medium
+
+  * Install adplug.pc to a multiarch location. (Closes: #-1)
+
+ -- Helmut Grohne   Sat, 08 Jun 2019 08:50:11 +0200
+
 adplug (2.2.1+dfsg3-1) unstable; urgency=medium
 
   * Orphan package, previous maintainer hasn't changed the package
diff --minimal -Nru adplug-2.2.1+dfsg3/debian/libadplug-2.2.1-0v5.install 
adplug-2.2.1+dfsg3/debian/libadplug-2.2.1-0v5.install
--- adplug-2.2.1+dfsg3/debian/libadplug-2.2.1-0v5.install   2015-08-21 
17:45:55.0 +0200
+++ adplug-2.2.1+dfsg3/debian/libadplug-2.2.1-0v5.install   2019-06-08 
08:50:02.0 +0200
@@ -1 +1 @@
-/usr/lib/*.so.*
+/usr/lib/*/*.so.*
diff --minimal -Nru adplug-2.2.1+dfsg3/debian/libadplug-dev.install 
adplug-2.2.1+dfsg3/debian/libadplug-dev.install
--- adplug-2.2.1+dfsg3/debian/libadplug-dev.install 2011-05-25 
17:32:57.0 +0200
+++ adplug-2.2.1+dfsg3/debian/libadplug-dev.install 2019-06-08 
08:50:08.0 +0200
@@ -1,4 +1,4 @@
 /usr/include/*
-/usr/lib/*.a
-/usr/lib/*.so
-/usr/lib/pkgconfig/*
+/usr/lib/*/*.a
+/usr/lib/*/*.so
+/usr/lib/*/pkgconfig/*
diff --minimal -Nru adplug-2.2.1+dfsg3/debian/rules 
adplug-2.2.1+dfsg3/debian/rules
--- adplug-2.2.1+dfsg3/debian/rules 2015-05-23 01:00:29.0 +0200
+++ adplug-2.2.1+dfsg3/debian/rules 2019-06-08 08:49:43.0 +0200
@@ -1,3 +1,9 @@
 #!/usr/bin/make -f
+
+include /usr/share/dpkg/architecture.mk
+
 %:
dh $@ --with autoreconf
+
+override_dh_auto_configure:
+   dh_auto_configure -- --libdir='$${prefix}/lib/$(DEB_HOST_MULTIARCH)'
--- End Message ---
--- Begin Message ---
Source: adplug
Source-Version: 2.3.1+dfsg-1

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

Debian distribution maintenance software
pp.
Yangfl  (supplier of updated adplug 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: Fri, 11 Oct 2019 21:35:27 +0800
Source: adplug
Binary: adplug-utils adplug-utils-dbgsym libadplug-2.3.1-0 
libadplug-2.3.1-0-dbgsym libadplug-dev
Architecture: source amd64
Version: 2.3.1+dfsg-1
Distribution: experimental
Urgency: medium
Maintainer: Yangfl 
Changed-By: Yangfl 
Description:
 adplug-utils - free AdLib sound library (utils)
 libadplug-2.3.1-0 - free AdLib sound library
 libadplug-dev - free AdLib sound library (development)
Closes: 918955 925627 930204
Changes:
 adplug (2.3.1+dfsg-1) experimental; urgency=medium
 .
   * New Maintainer (Closes: #918955)
   * New upstream release
 - Fix FTBFS with GCC-9 (Closes: #925627)
 - Move adplug.pc to a multiarch location (Closes: #930204)
   * Bump Standards-Version to 4.4.0
   * Bump debhelper compat to 12
Checksums-Sha1:
 87cc23b57d67bb3bf3ecc01265d0c443e51e1b9f 2015 adplug_2.3.1+dfsg-1.dsc
 a63be14773b42347f350480be6894fb69745ed13 547544 adplug_2.3.1+dfsg.orig.tar.xz
 2362088018e8279b3c0348b377ae2f67b77540c5 9960 adplug_2.3.1+dfsg-1.debian.tar.xz
 

Bug#917611: marked as done (idzebra: Please Build-Depend on libyaz-dev)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:17 +
with message-id 
and subject line Bug#917611: fixed in idzebra 2.1.4-1
has caused the Debian Bug report #917611,
regarding idzebra: Please Build-Depend on libyaz-dev
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.)


-- 
917611: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=917611
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: idzebra
Version: 2.0.59-1
Severity: important

Dear Maintainer,

idzebra currently has a build-dependency on libyaz4-dev. However, this package
will soon be replaced by libyaz-dev during an upcoming transition.

Testing with libyaz-dev 5.27.1-1 installed results in idzebra FTBFS, as it
cannot satisfy its build-dependency on libyaz4-dev.

Please patch idzebra's build-dependency list to use libyaz-dev:

  -  libyaz4-dev | libyaz3-dev (>= 3.0.17), libexpat1-dev, tcl8.6-dev,
libxslt1-dev,
  +  libyaz-dev, libexpat1-dev, tcl8.6-dev, libxslt1-dev,

With this change made, idzebra builds successfully.

Note that libyaz4-dev currently provides libyaz-dev.

Thank you



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

Kernel: Linux 4.19.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_AU:en (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
--- End Message ---
--- Begin Message ---
Source: idzebra
Source-Version: 2.1.4-1

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

Debian distribution maintenance software
pp.
Hugh McMaster  (supplier of updated idzebra 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: Mon, 30 Sep 2019 21:21:11 +1000
Source: idzebra
Binary: idzebra-2.0 idzebra-2.0-common idzebra-2.0-doc idzebra-2.0-examples 
idzebra-2.0-utils idzebra-2.0-utils-dbgsym libidzebra-2.0-0 
libidzebra-2.0-0-dbgsym libidzebra-2.0-dev libidzebra-2.0-mod-alvis 
libidzebra-2.0-mod-alvis-dbgsym libidzebra-2.0-mod-dom 
libidzebra-2.0-mod-dom-dbgsym libidzebra-2.0-mod-grs-marc 
libidzebra-2.0-mod-grs-marc-dbgsym libidzebra-2.0-mod-grs-regx 
libidzebra-2.0-mod-grs-regx-dbgsym libidzebra-2.0-mod-grs-xml 
libidzebra-2.0-mod-grs-xml-dbgsym libidzebra-2.0-mod-safari 
libidzebra-2.0-mod-safari-dbgsym libidzebra-2.0-mod-text 
libidzebra-2.0-mod-text-dbgsym libidzebra-2.0-modules
Architecture: source all amd64
Version: 2.1.4-1
Distribution: experimental
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Hugh McMaster 
Description:
 idzebra-2.0 - IDZebra metapackage (the works)
 idzebra-2.0-common - IDZebra common files
 idzebra-2.0-doc - IDZebra documentation
 idzebra-2.0-examples - IDZebra example configurations
 idzebra-2.0-utils - IDZebra utility programs
 libidzebra-2.0-0 - IDZebra libraries
 libidzebra-2.0-dev - IDZebra development
 libidzebra-2.0-mod-alvis - IDZebra filter alvis (XSLT filter for XML)
 libidzebra-2.0-mod-dom - IDZebra filter 'dom' (XML DOM internal document model 
with XSLT)
 libidzebra-2.0-mod-grs-marc - IDZebra filter grs.marc (ISO2709 MARC reader)
 libidzebra-2.0-mod-grs-regx - IDZebra filters grs.regx, grs.tcl
 libidzebra-2.0-mod-grs-xml - IDZebra filter grs.xml (XML filter)
 libidzebra-2.0-mod-safari - IDZebra filter 'safari' (DBC)
 libidzebra-2.0-mod-text - IDZebra filter text
 libidzebra-2.0-modules - IDZebra modules
Closes: 777515 917611 920343
Changes:
 idzebra (2.1.4-1) experimental; urgency=medium
 .
   * New upstream release (Closes: #777515, #920343).
   * debian/control:
 - Update Build-Depends list.
 - Build-Depend on libyaz-dev (Closes: #917611).
 - Raise Standards-Version to 4.4.1 from 3.9.5 (no changes needed).
 - Drop Build-Conflicts field.
 - Update Vcs-* fields to point to Salsa.
 - Update Homepage URI.
 - Add Rules-Requires-Root field.
 - Mark the 'common', 'docs' and 'examples' packages Multi-Arch: foreign.
   * 

Bug#777515: marked as done (idzebra-2.0: Issue with ICU token processing)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:17 +
with message-id 
and subject line Bug#777515: fixed in idzebra 2.1.4-1
has caused the Debian Bug report #777515,
regarding idzebra-2.0: Issue with ICU token processing
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.)


-- 
777515: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=777515
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: idzebra-2.0
Version: 2.0.59-1
Severity: normal

Dear Maintainer,

Zebra 2.0.59 has an issue where search queries involving hyphens are
tokenised, but only the first token is used for searching. So a search
for "Mont-Royal" will actually just be a search for "Mont". Or a search
for "up-to-date" will just be a search for "up".  This is the case even
when trying to use ICU transformation/transliteration rules to remove
the hyphen before tokenising.

2.0.60 has been released with this fixed. It is also probably possible
to backport the patch:

http://git.indexdata.com/?p=idzebra.git;a=commit;h=704fd190292cb771df94553b0ed6f9f4b71660a6

and the relevant news patch:

http://git.indexdata.com/?p=idzebra.git;a=commitdiff;h=b51184e7cf9eabd2c609f50f721d6568351fbc33

Thanks.

-- System Information:
Debian Release: 8.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages idzebra-2.0 depends on:
ii  idzebra-2.0-common  2.0.59-1
ii  idzebra-2.0-doc 2.0.59-1
ii  idzebra-2.0-utils   2.0.59-1
ii  libidzebra-2.0-dev  2.0.59-1
ii  libidzebra-2.0-modules  2.0.59-1

idzebra-2.0 recommends no packages.

idzebra-2.0 suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: idzebra
Source-Version: 2.1.4-1

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

Debian distribution maintenance software
pp.
Hugh McMaster  (supplier of updated idzebra 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: Mon, 30 Sep 2019 21:21:11 +1000
Source: idzebra
Binary: idzebra-2.0 idzebra-2.0-common idzebra-2.0-doc idzebra-2.0-examples 
idzebra-2.0-utils idzebra-2.0-utils-dbgsym libidzebra-2.0-0 
libidzebra-2.0-0-dbgsym libidzebra-2.0-dev libidzebra-2.0-mod-alvis 
libidzebra-2.0-mod-alvis-dbgsym libidzebra-2.0-mod-dom 
libidzebra-2.0-mod-dom-dbgsym libidzebra-2.0-mod-grs-marc 
libidzebra-2.0-mod-grs-marc-dbgsym libidzebra-2.0-mod-grs-regx 
libidzebra-2.0-mod-grs-regx-dbgsym libidzebra-2.0-mod-grs-xml 
libidzebra-2.0-mod-grs-xml-dbgsym libidzebra-2.0-mod-safari 
libidzebra-2.0-mod-safari-dbgsym libidzebra-2.0-mod-text 
libidzebra-2.0-mod-text-dbgsym libidzebra-2.0-modules
Architecture: source all amd64
Version: 2.1.4-1
Distribution: experimental
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Hugh McMaster 
Description:
 idzebra-2.0 - IDZebra metapackage (the works)
 idzebra-2.0-common - IDZebra common files
 idzebra-2.0-doc - IDZebra documentation
 idzebra-2.0-examples - IDZebra example configurations
 idzebra-2.0-utils - IDZebra utility programs
 libidzebra-2.0-0 - IDZebra libraries
 libidzebra-2.0-dev - IDZebra development
 libidzebra-2.0-mod-alvis - IDZebra filter alvis (XSLT filter for XML)
 libidzebra-2.0-mod-dom - IDZebra filter 'dom' (XML DOM internal document model 
with XSLT)
 libidzebra-2.0-mod-grs-marc - IDZebra filter grs.marc (ISO2709 MARC reader)
 libidzebra-2.0-mod-grs-regx - IDZebra filters grs.regx, grs.tcl
 libidzebra-2.0-mod-grs-xml - IDZebra filter grs.xml (XML filter)
 libidzebra-2.0-mod-safari - IDZebra filter 'safari' (DBC)
 libidzebra-2.0-mod-text - IDZebra filter text
 libidzebra-2.0-modules - IDZebra modules
Closes: 777515 917611 920343
Changes:
 idzebra (2.1.4-1) experimental; urgency=medium
 .
   * New upstream release (Closes: #777515, #920343).
   * debian/control:
 - Update Build-Depends list.
 - Build-Depend on libyaz-dev (Closes: 

Bug#917444: marked as done (net-snmp: Please switch Build-Depends to libsensors-dev from libsensors4-dev)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:23 +
with message-id 
and subject line Bug#917444: fixed in net-snmp 5.8+dfsg-1
has caused the Debian Bug report #917444,
regarding net-snmp: Please switch Build-Depends to libsensors-dev from 
libsensors4-dev
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.)


-- 
917444: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=917444
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: net-snmp
Version: 5.7.3+dfsg-4
Severity: wishlist
User: aure...@debian.org
Usertags: libsensors-dev-transition

Dear maintainer,

net-snmp build-depends on libsensors4-dev, the development package
from lm-sensors. For historical reasons the development package is
versioned. Following the transition of the library to libsensors5,
it makes sense to rename the development package to libsensors-dev.

In that regard a "Provides: libsensors-dev" has been added. Given
net-snmp uses a non-versioned Build-Depends it is already safe
to transition your package to use libsensors-dev instead of
libsensors4-dev.

There is no urgency (yet) to do the change, but it would be nice if
you can piggyback that change in the next upload. It should just be
a matter of running:

  sed -i -e 's/libsensors4-dev/libsensors-dev/g' debian/control

Thanks,
Aurelien
--- End Message ---
--- Begin Message ---
Source: net-snmp
Source-Version: 5.8+dfsg-1

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

Debian distribution maintenance software
pp.
Craig Small  (supplier of updated net-snmp 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: Thu, 10 Oct 2019 22:37:15 +1100
Source: net-snmp
Binary: libsnmp-base libsnmp-dev libsnmp-perl libsnmp-perl-dbgsym libsnmp35 
libsnmp35-dbg snmp snmp-dbgsym snmpd snmpd-dbgsym snmptrapd snmptrapd-dbgsym 
tkmib
Architecture: source all amd64
Version: 5.8+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Net-SNMP Packaging Team 
Changed-By: Craig Small 
Description:
 libsnmp-base - SNMP configuration script, MIBs and documentation
 libsnmp-dev - SNMP (Simple Network Management Protocol) development files
 libsnmp-perl - SNMP (Simple Network Management Protocol) Perl5 support
 libsnmp35  - SNMP (Simple Network Management Protocol) library
 libsnmp35-dbg - SNMP (Simple Network Management Protocol) library debug
 snmp   - SNMP (Simple Network Management Protocol) applications
 snmpd  - SNMP (Simple Network Management Protocol) agents
 snmptrapd  - Net-SNMP notification receiver
 tkmib  - SNMP (Simple Network Management Protocol) MIB browser
Closes: 528103 684721 754955 792623 823201 898399 917444 932775 937131
Changes:
 net-snmp (5.8+dfsg-1) unstable; urgency=medium
 .
   * New upstream release
 - snmplib: handle large amount of file descriptors Closes: #754955
 - BUG: 2815 Display UTF-8 characters again Closes: #898399
   * Update to Debian standards 4.3.0
   * Update debhelper to compat 12
   * snmpd/snmptrapd: Log only warning and above. Closes: #792623
   * snmpd/snmptrapd: Systemd unit logs to stdout
   * Build depend on non-versions libsensors Closes: #917444
   * Library soname updated to 35
   * snmpd: Change pidfile mode to 0644 Closes: #528103
   * Remove python modules Closes: #937131
   * Respect defaults for sysvinit Closes: #932775
   * Added snmpping.1 manpage
   * Reduce logging for subcontainer Closes: #684721
   * Do not enable DISMAN events Closes: #823201
   * Update to standards 4.4.1
Checksums-Sha1:
 9f43c296f13a96a7d794bb3cb0b47aaee2b6c194 2816 net-snmp_5.8+dfsg-1.dsc
 f672ab1eb88af10227cb1ddd669ad971201e3afd 3446028 net-snmp_5.8+dfsg.orig.tar.xz
 b1fbc4c0076db77c50391299dfb25e81b13342f2 64300 
net-snmp_5.8+dfsg-1.debian.tar.xz
 5503976feaf7d8816eab03c964bda06ffc674c96 1670548 
libsnmp-base_5.8+dfsg-1_all.deb
 fe88635e1008ed7a07ab268892e18cc120bbf2c8 1151364 
libsnmp-dev_5.8+dfsg-1_amd64.deb
 e4497a71657ec9531ee1294a7ed9e57d5b87ae82 211880 
libsnmp-perl-dbgsym_5.8+dfsg-1_amd64.deb
 fddf6ee65afd1346454e0d4b2b567812716d84c3 1625720 

Bug#936947: marked as done (limesuite: Python2 removal in sid/bullseye)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:21 +
with message-id 
and subject line Bug#936947: fixed in limesuite 19.04.0+dfsg-2
has caused the Debian Bug report #936947,
regarding limesuite: Python2 removal in sid/bullseye
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.)


-- 
936947: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=936947
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:limesuite
Version: 18.06.0+dfsg-1
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:limesuite

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: limesuite
Source-Version: 19.04.0+dfsg-2

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

Debian distribution maintenance software
pp.
Christoph Berg  (supplier of updated limesuite package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 08 Oct 2019 22:28:56 +0200
Source: limesuite
Binary: liblimesuite-dev liblimesuite-doc liblimesuite19.04-1 
liblimesuite19.04-1-dbgsym limesuite limesuite-dbgsym limesuite-udev 
soapysdr-module-lms7 soapysdr0.7-module-lms7 soapysdr0.7-module-lms7-dbgsym
Architecture: source amd64 all
Version: 19.04.0+dfsg-2
Distribution: experimental
Urgency: medium
Maintainer: Debian Hamradio Maintainers 
Changed-By: Christoph Berg 
Description:
 liblimesuite-dev - library to access LMS7 transceiver based hardware 
(development)
 liblimesuite-doc - liblimesuite development documentation
 liblimesuite19.04-1 - library to access LMS7 transceiver based hardware
 limesuite  - tools to test, control and update LMS7 transceiver based hardware
 limesuite-udev - Lime Suite - USB rules for udev
 soapysdr-module-lms7 - Lime Microsystems LMS7 device support for SoapySDR 
(default versi
 soapysdr0.7-module-lms7 - Lime Microsystems LMS7 device support for 

Bug#920343: marked as done (new version available)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:17 +
with message-id 
and subject line Bug#920343: fixed in idzebra 2.1.4-1
has caused the Debian Bug report #920343,
regarding new version available
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.)


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

Package: idzebra
Version: 2.0.59-1
Severity: wishlist

Could you consider looking at the new upstream version 2.1.4?
It builds fine for me (however I haven't done symbol updates or 
anything): http://phd-sid.ethz.ch/debian/idzebra/


Thank you,
Gürkan
--- End Message ---
--- Begin Message ---
Source: idzebra
Source-Version: 2.1.4-1

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

Debian distribution maintenance software
pp.
Hugh McMaster  (supplier of updated idzebra 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: Mon, 30 Sep 2019 21:21:11 +1000
Source: idzebra
Binary: idzebra-2.0 idzebra-2.0-common idzebra-2.0-doc idzebra-2.0-examples 
idzebra-2.0-utils idzebra-2.0-utils-dbgsym libidzebra-2.0-0 
libidzebra-2.0-0-dbgsym libidzebra-2.0-dev libidzebra-2.0-mod-alvis 
libidzebra-2.0-mod-alvis-dbgsym libidzebra-2.0-mod-dom 
libidzebra-2.0-mod-dom-dbgsym libidzebra-2.0-mod-grs-marc 
libidzebra-2.0-mod-grs-marc-dbgsym libidzebra-2.0-mod-grs-regx 
libidzebra-2.0-mod-grs-regx-dbgsym libidzebra-2.0-mod-grs-xml 
libidzebra-2.0-mod-grs-xml-dbgsym libidzebra-2.0-mod-safari 
libidzebra-2.0-mod-safari-dbgsym libidzebra-2.0-mod-text 
libidzebra-2.0-mod-text-dbgsym libidzebra-2.0-modules
Architecture: source all amd64
Version: 2.1.4-1
Distribution: experimental
Urgency: medium
Maintainer: Vincent Danjean 
Changed-By: Hugh McMaster 
Description:
 idzebra-2.0 - IDZebra metapackage (the works)
 idzebra-2.0-common - IDZebra common files
 idzebra-2.0-doc - IDZebra documentation
 idzebra-2.0-examples - IDZebra example configurations
 idzebra-2.0-utils - IDZebra utility programs
 libidzebra-2.0-0 - IDZebra libraries
 libidzebra-2.0-dev - IDZebra development
 libidzebra-2.0-mod-alvis - IDZebra filter alvis (XSLT filter for XML)
 libidzebra-2.0-mod-dom - IDZebra filter 'dom' (XML DOM internal document model 
with XSLT)
 libidzebra-2.0-mod-grs-marc - IDZebra filter grs.marc (ISO2709 MARC reader)
 libidzebra-2.0-mod-grs-regx - IDZebra filters grs.regx, grs.tcl
 libidzebra-2.0-mod-grs-xml - IDZebra filter grs.xml (XML filter)
 libidzebra-2.0-mod-safari - IDZebra filter 'safari' (DBC)
 libidzebra-2.0-mod-text - IDZebra filter text
 libidzebra-2.0-modules - IDZebra modules
Closes: 777515 917611 920343
Changes:
 idzebra (2.1.4-1) experimental; urgency=medium
 .
   * New upstream release (Closes: #777515, #920343).
   * debian/control:
 - Update Build-Depends list.
 - Build-Depend on libyaz-dev (Closes: #917611).
 - Raise Standards-Version to 4.4.1 from 3.9.5 (no changes needed).
 - Drop Build-Conflicts field.
 - Update Vcs-* fields to point to Salsa.
 - Update Homepage URI.
 - Add Rules-Requires-Root field.
 - Mark the 'common', 'docs' and 'examples' packages Multi-Arch: foreign.
   * debian/patches: Drop all patches (no longer needed).
   * debian/rules:
 - Add 'hardening=+all' to DEB_BUILD_MAINT_OPTIONS
 - Automatically generate the minimum package version for dh_makeshlibs.
 - Remove dh_auto_configure override
 - Remove dh_install override.
 - Remove unused DH_OPTIONS variable.
 - Remove some comments.
 - Remove legacy targets.
   * debian/upstream: Add metadata file.
   * Add new symbols to libidzebra-2.0-0.symbols.
   * libidzebra-2.0-dev:
 - Re-order install file to follow alphabetical sorting order.
 - Update manpages file.
   * idzebra-2.0-utils:
 - Update manpages file.
 - Install idzebra-abs2dom binary and manpage.
   * Add new package: libidzebra-2.0-mod-safari.
Checksums-Sha1:
 0eeb180e0648d2f84f74fecd7d3beb45a149b5e9 3097 idzebra_2.1.4-1.dsc
 83a3db51abeb4dffae05bb04e258365a391a7bae 1907059 

Bug#754955: marked as done (libsnmp-dev: File descriptors larger than FD_SETSIZE crash the init_snmp() function)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:23 +
with message-id 
and subject line Bug#754955: fixed in net-snmp 5.8+dfsg-1
has caused the Debian Bug report #754955,
regarding libsnmp-dev: File descriptors larger than FD_SETSIZE crash the 
init_snmp() function
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.)


-- 
754955: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=754955
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libsnmp-dev
Version: 5.7.2.1~dfsg-5
Severity: important
Tags: patch

Dear Maintainer,

I was debugging a sub agent running on a thread started by a larger
application.
If the process used up more file descriptors than FD_SETSIZE before starting
the thread which was running the sub agent, the sub agent crashed on the
init_snmp() function. This should not be a problem since versions over NetSNMP
5.5 can and should use netsnmp_large_fd_set struct to deal with large file
descriptors.

Debugging the issue I've found that the functions used to manipulate the large
file descriptor sets ( netsnmp_large_fd_setfd(),  netsnmp_large_fd_clr(),
netsnmp_large_fd_is_set(),  netsnmp_large_fd_set_resize() ) use the macros
FD_SET, FD_CLR, FD_ISSET. These macros should be size independent, however in
newer versions of libc library they have an inbuilt buffer overflow protection
which tests agains the FD_SETSIZE, when manipulating a file descriptor from the
set.

Also the functions snmp_synch_response_cb() and snmp_sess_synch_response()
still use the standard fd_set struct, wich causes an infinite loop if the
response is expected on a file descriptor larger than FD_SETSIZE. This is
aready fixed in upstream PATCH 3394386, I've just used the fix.

Attached a suggested patch.

-- System Information:
Debian Release: jessie/sid
  APT prefers trusty-updates
  APT policy: (500, 'trusty-updates'), (500, 'trusty-security'), (500,
'trusty'), (100, 'trusty-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.13.0-30-generic (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libsnmp-dev depends on:
ii  libc6-dev2.19-0ubuntu6
ii  libsensors4-dev  1:3.3.4-2ubuntu1
ii  libsnmp305.7.2.1~dfsg-5
ii  libssl-dev   1.0.1f-1ubuntu2.4
ii  libwrap0-dev 7.6.q-25
ii  procps   1:3.3.9-1ubuntu2

libsnmp-dev recommends no packages.

libsnmp-dev suggests no packages.
commit 530958fd97c34ebb213f4fb82746af126b00eb14
Author: Petr Zajicek 
Date:   Tue Jul 15 15:20:21 2014 +0200

Bug 36980: Improved netsnmp_large_fd_set struct support in sub agents.

Changes to be committed:
	modified:   snmplib/large_fd_set.c
	modified:   snmplib/snmp_client.c

diff --git a/snmplib/large_fd_set.c b/snmplib/large_fd_set.c
index 32f57b3..ffe37f8 100644
--- a/snmplib/large_fd_set.c
+++ b/snmplib/large_fd_set.c
@@ -79,6 +79,10 @@ netsnmp_large_fd_is_set(SOCKET fd, netsnmp_large_fd_set * fdset)
 
 #else
 
+const unsigned int number_of_bits = (8 * (int) sizeof (__fd_mask));
+inline unsigned int pos_in_array( int fd ) { return fd / number_of_bits; }
+inline __fd_mask get_mask_for_fd( int fd ) { return (__fd_mask) ( 1UL << (fd % number_of_bits) ); }
+
 void
 netsnmp_large_fd_setfd(int fd, netsnmp_large_fd_set * fdset)
 {
@@ -87,7 +91,7 @@ netsnmp_large_fd_setfd(int fd, netsnmp_large_fd_set * fdset)
 while (fd >= (int)fdset->lfs_setsize)
 netsnmp_large_fd_set_resize(fdset, 2 * (fdset->lfs_setsize + 1));
 
-FD_SET(fd, fdset->lfs_setptr);
+((__fd_mask*)(fdset->lfs_setptr))[ pos_in_array( fd ) ] |= get_mask_for_fd( fd );
 }
 
 void
@@ -96,7 +100,9 @@ netsnmp_large_fd_clr(int fd, netsnmp_large_fd_set * fdset)
 netsnmp_assert(fd >= 0);
 
 if ((unsigned)fd < fdset->lfs_setsize)
-FD_CLR(fd, fdset->lfs_setptr);
+{
+((__fd_mask*)(fdset->lfs_setptr))[ pos_in_array( fd ) ] &= ~get_mask_for_fd( fd );
+}
 }
 
 int
@@ -104,7 +110,10 @@ netsnmp_large_fd_is_set(int fd, netsnmp_large_fd_set * fdset)
 {
 netsnmp_assert(fd >= 0);
 
-return (unsigned)fd < fdset->lfs_setsize && FD_ISSET(fd, fdset->lfs_setptr);
+if( (unsigned)fd > fdset->lfs_setsize )
+return 0;
+
+return ((__fd_mask*)(fdset->lfs_setptr))[ pos_in_array( fd ) ] & get_mask_for_fd( fd );
 }
 
 #endif
@@ -182,7 +191,7 @@ netsnmp_large_fd_set_resize(netsnmp_large_fd_set * fdset, int setsize)
  * resized *fdset but that were not defined in the original *fdset.
  */
 for (i = fdset->lfs_setsize; i < setsize; i++)
-

Bug#792623: marked as done (snmpd: Reduce snmpd logging verbosity (currently logs every single query))

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:23 +
with message-id 
and subject line Bug#792623: fixed in net-snmp 5.8+dfsg-1
has caused the Debian Bug report #792623,
regarding snmpd: Reduce snmpd logging verbosity (currently logs every single 
query)
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.)


-- 
792623: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=792623
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: snmpd
Severity: important
Tags: patch

Dear Maintainer,

the `/etc/default/snmpd` included in the current version of the "snmpd"
package launches snmpd with the option "-Lsd", which makes it log
everything with a priority >= LOG_NOTICE — which includes the message
"Connection from UDP: [198.51.100.1]:50955->[203.0.113.1]" for every
single query made to the SNMP server.

It would be preferable to have the logging verbosity default to >=
LOG_WARNING to avoid cluttering the syslog.

I have attached a patch that changes all relevant occurences of "-Lsd"
(log >= notice) to "-LSwd" (log >= warning).


-- System Information:
[Removed, since I'm reporting this bug from an Ubuntu system that isn't
actually running snmpd.]
I have confirmed that the excessively verbose logging option is used by
the current snmpd versions in wheezy (5.4.3~dfsg-2.8+deb7u1) and sid
(5.7.3+dfsg).
diff -r a/debian/snmpd.default b/debian/snmpd.default
11c11
< SNMPDOPTS='-Lsd -Lf /dev/null -u snmp -g snmp -I -smux,mteTrigger,mteTriggerConf -p /run/snmpd.pid'
---
> SNMPDOPTS='-LSwd -Lf /dev/null -u snmp -g snmp -I -smux,mteTrigger,mteTriggerConf -p /run/snmpd.pid'
diff -r a/debian/snmpd.init b/debian/snmpd.init
29c29
< SNMPDOPTS="-Lsd -Lf /dev/null -p $SNMP_PID"
---
> SNMPDOPTS="-LSwd -Lf /dev/null -p $SNMP_PID"
diff -r a/debian/snmptrapd.default b/debian/snmptrapd.default
9c9
< TRAPDOPTS='-Lsd -p /run/snmptrapd.pid'
---
> TRAPDOPTS='-LSwd -p /run/snmptrapd.pid'
diff -r a/debian/snmptrapd.init b/debian/snmptrapd.init
29c29
< TRAPDOPTS="-Lsd -p $TRAPD_PID"
---
> TRAPDOPTS="-LSwd -p $TRAPD_PID"
--- End Message ---
--- Begin Message ---
Source: net-snmp
Source-Version: 5.8+dfsg-1

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

Debian distribution maintenance software
pp.
Craig Small  (supplier of updated net-snmp 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: Thu, 10 Oct 2019 22:37:15 +1100
Source: net-snmp
Binary: libsnmp-base libsnmp-dev libsnmp-perl libsnmp-perl-dbgsym libsnmp35 
libsnmp35-dbg snmp snmp-dbgsym snmpd snmpd-dbgsym snmptrapd snmptrapd-dbgsym 
tkmib
Architecture: source all amd64
Version: 5.8+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Net-SNMP Packaging Team 
Changed-By: Craig Small 
Description:
 libsnmp-base - SNMP configuration script, MIBs and documentation
 libsnmp-dev - SNMP (Simple Network Management Protocol) development files
 libsnmp-perl - SNMP (Simple Network Management Protocol) Perl5 support
 libsnmp35  - SNMP (Simple Network Management Protocol) library
 libsnmp35-dbg - SNMP (Simple Network Management Protocol) library debug
 snmp   - SNMP (Simple Network Management Protocol) applications
 snmpd  - SNMP (Simple Network Management Protocol) agents
 snmptrapd  - Net-SNMP notification receiver
 tkmib  - SNMP (Simple Network Management Protocol) MIB browser
Closes: 528103 684721 754955 792623 823201 898399 917444 932775 937131
Changes:
 net-snmp (5.8+dfsg-1) unstable; urgency=medium
 .
   * New upstream release
 - snmplib: handle large amount of file descriptors Closes: #754955
 - BUG: 2815 Display UTF-8 characters again Closes: #898399
   * Update to Debian standards 4.3.0
   * Update debhelper to compat 12
   * snmpd/snmptrapd: Log only warning and above. Closes: #792623
   * snmpd/snmptrapd: Systemd unit logs to stdout
   * Build depend on non-versions libsensors Closes: #917444
   * Library soname updated to 35
   * snmpd: Change pidfile mode to 0644 Closes: #528103
   * Remove python modules Closes: #937131
   * Respect defaults for sysvinit Closes: #932775
  

Bug#823201: marked as done (snmpd: Configuration errors on a fresh install)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:23 +
with message-id 
and subject line Bug#823201: fixed in net-snmp 5.8+dfsg-1
has caused the Debian Bug report #823201,
regarding snmpd: Configuration errors on a fresh install
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.)


-- 
823201: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=823201
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: snmpd
Version: 5.7.3+dfsg-1.3
Severity: normal

Dear Maintainer,

I just installed "snmpd" from testing, and did systemctl status
snmpd.service
which gives lines like this:

/etc/snmp/snmpd.conf: line 145: Warning: Unknown token: defaultMonitors.
/etc/snmp/snmpd.conf: line 147: Warning: Unknown token:
linkUpDownNotifications.

The daemon appears to be running just fine, but I assume there
must be some migration issues, probably these settings have
been removed/renamed upstream.

Of course, the default configuration should not have such errors.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (900, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.5.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages snmpd depends on:
ii  adduser3.114
ii  debconf [debconf-2.0]  1.5.59
ii  libc6  2.22-7
ii  libsnmp-base   5.7.3+dfsg-1.3
ii  libsnmp30  5.7.3+dfsg-1.3
ii  lsb-base   9.20160110

snmpd recommends no packages.

Versions of packages snmpd suggests:
pn  snmptrapd  

-- Configuration Files:
/etc/snmp/snmpd.conf [Errno 13] Keine Berechtigung: u'/etc/snmp/snmpd.conf'

-- debconf information:
  snmpd/upgradefrom521:
--- End Message ---
--- Begin Message ---
Source: net-snmp
Source-Version: 5.8+dfsg-1

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

Debian distribution maintenance software
pp.
Craig Small  (supplier of updated net-snmp 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: Thu, 10 Oct 2019 22:37:15 +1100
Source: net-snmp
Binary: libsnmp-base libsnmp-dev libsnmp-perl libsnmp-perl-dbgsym libsnmp35 
libsnmp35-dbg snmp snmp-dbgsym snmpd snmpd-dbgsym snmptrapd snmptrapd-dbgsym 
tkmib
Architecture: source all amd64
Version: 5.8+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Net-SNMP Packaging Team 
Changed-By: Craig Small 
Description:
 libsnmp-base - SNMP configuration script, MIBs and documentation
 libsnmp-dev - SNMP (Simple Network Management Protocol) development files
 libsnmp-perl - SNMP (Simple Network Management Protocol) Perl5 support
 libsnmp35  - SNMP (Simple Network Management Protocol) library
 libsnmp35-dbg - SNMP (Simple Network Management Protocol) library debug
 snmp   - SNMP (Simple Network Management Protocol) applications
 snmpd  - SNMP (Simple Network Management Protocol) agents
 snmptrapd  - Net-SNMP notification receiver
 tkmib  - SNMP (Simple Network Management Protocol) MIB browser
Closes: 528103 684721 754955 792623 823201 898399 917444 932775 937131
Changes:
 net-snmp (5.8+dfsg-1) unstable; urgency=medium
 .
   * New upstream release
 - snmplib: handle large amount of file descriptors Closes: #754955
 - BUG: 2815 Display UTF-8 characters again Closes: #898399
   * Update to Debian standards 4.3.0
   * Update debhelper to compat 12
   * snmpd/snmptrapd: Log only warning and above. Closes: #792623
   * snmpd/snmptrapd: Systemd unit logs to stdout
   * Build depend on non-versions libsensors Closes: #917444
   * Library soname updated to 35
   * snmpd: Change pidfile mode to 0644 Closes: #528103
   * Remove python modules Closes: #937131
   * Respect defaults for sysvinit Closes: #932775
   * Added snmpping.1 manpage
   * Reduce logging for subcontainer Closes: #684721
   * Do not enable DISMAN events Closes: #823201
   * Update to standards 4.4.1
Checksums-Sha1:
 9f43c296f13a96a7d794bb3cb0b47aaee2b6c194 2816 

Bug#528103: marked as done (please make PID file world readable)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:23 +
with message-id 
and subject line Bug#528103: fixed in net-snmp 5.8+dfsg-1
has caused the Debian Bug report #528103,
regarding please make PID file world readable
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.)


-- 
528103: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=528103
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: snmpd
Version: 5.4.1~dfsg-12
Severity: wishlist

Please make the PID file /var/run/snmpd.pid world-readable.  There is nothing 
secret in there, and all other PID files, including /var/run/snmptrapd.pid, 
are mode 644.  World-readable PID files make it more convenient to inquire 
about the status of daemon processes without requiring special privileges.


--- End Message ---
--- Begin Message ---
Source: net-snmp
Source-Version: 5.8+dfsg-1

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

Debian distribution maintenance software
pp.
Craig Small  (supplier of updated net-snmp 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: Thu, 10 Oct 2019 22:37:15 +1100
Source: net-snmp
Binary: libsnmp-base libsnmp-dev libsnmp-perl libsnmp-perl-dbgsym libsnmp35 
libsnmp35-dbg snmp snmp-dbgsym snmpd snmpd-dbgsym snmptrapd snmptrapd-dbgsym 
tkmib
Architecture: source all amd64
Version: 5.8+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Net-SNMP Packaging Team 
Changed-By: Craig Small 
Description:
 libsnmp-base - SNMP configuration script, MIBs and documentation
 libsnmp-dev - SNMP (Simple Network Management Protocol) development files
 libsnmp-perl - SNMP (Simple Network Management Protocol) Perl5 support
 libsnmp35  - SNMP (Simple Network Management Protocol) library
 libsnmp35-dbg - SNMP (Simple Network Management Protocol) library debug
 snmp   - SNMP (Simple Network Management Protocol) applications
 snmpd  - SNMP (Simple Network Management Protocol) agents
 snmptrapd  - Net-SNMP notification receiver
 tkmib  - SNMP (Simple Network Management Protocol) MIB browser
Closes: 528103 684721 754955 792623 823201 898399 917444 932775 937131
Changes:
 net-snmp (5.8+dfsg-1) unstable; urgency=medium
 .
   * New upstream release
 - snmplib: handle large amount of file descriptors Closes: #754955
 - BUG: 2815 Display UTF-8 characters again Closes: #898399
   * Update to Debian standards 4.3.0
   * Update debhelper to compat 12
   * snmpd/snmptrapd: Log only warning and above. Closes: #792623
   * snmpd/snmptrapd: Systemd unit logs to stdout
   * Build depend on non-versions libsensors Closes: #917444
   * Library soname updated to 35
   * snmpd: Change pidfile mode to 0644 Closes: #528103
   * Remove python modules Closes: #937131
   * Respect defaults for sysvinit Closes: #932775
   * Added snmpping.1 manpage
   * Reduce logging for subcontainer Closes: #684721
   * Do not enable DISMAN events Closes: #823201
   * Update to standards 4.4.1
Checksums-Sha1:
 9f43c296f13a96a7d794bb3cb0b47aaee2b6c194 2816 net-snmp_5.8+dfsg-1.dsc
 f672ab1eb88af10227cb1ddd669ad971201e3afd 3446028 net-snmp_5.8+dfsg.orig.tar.xz
 b1fbc4c0076db77c50391299dfb25e81b13342f2 64300 
net-snmp_5.8+dfsg-1.debian.tar.xz
 5503976feaf7d8816eab03c964bda06ffc674c96 1670548 
libsnmp-base_5.8+dfsg-1_all.deb
 fe88635e1008ed7a07ab268892e18cc120bbf2c8 1151364 
libsnmp-dev_5.8+dfsg-1_amd64.deb
 e4497a71657ec9531ee1294a7ed9e57d5b87ae82 211880 
libsnmp-perl-dbgsym_5.8+dfsg-1_amd64.deb
 fddf6ee65afd1346454e0d4b2b567812716d84c3 1625720 
libsnmp-perl_5.8+dfsg-1_amd64.deb
 96e7cbb0adb187eba881666825f93db1fc6fe0a5 2050808 
libsnmp35-dbg_5.8+dfsg-1_amd64.deb
 c4dcaeae5033faf21a00937e934e45900faabae5 2459444 libsnmp35_5.8+dfsg-1_amd64.deb
 342706cea19b7ba45bd8be1b57c6b4c8308f0c32 9703 
net-snmp_5.8+dfsg-1_amd64.buildinfo
 8c77438a6680fc0c33e2517c49fe16156a90962d 219700 
snmp-dbgsym_5.8+dfsg-1_amd64.deb
 e3c650f055893c803788edb732dba799c350504d 167184 snmp_5.8+dfsg-1_amd64.deb
 f2d8aa9550b71e2de81d0c37a7656d6ade96deb7 23604 
snmpd-dbgsym_5.8+dfsg-1_amd64.deb
 

Bug#684721: marked as done (snmpd: Lots of errors in syslog : error on subcontainer 'ia_addr' insert (-1))

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:23 +
with message-id 
and subject line Bug#684721: fixed in net-snmp 5.8+dfsg-1
has caused the Debian Bug report #684721,
regarding snmpd: Lots of errors in syslog : error on subcontainer 'ia_addr' 
insert (-1)
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.)


-- 
684721: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=684721
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: snmpd
Version: 5.4.3~dfsg-2.5

Hi,

The bug #559109 is not fixed in the snmpd package for wheezy. I have
installed 3 wheezy installations. Two of them are physical
machines. One is a VM. Both physical machines have a bonding
configured. The error described here seems to only affect the 2
physical machines. The VM is not affected but has the same snmpd
version installed. After applying the steps mentioned by Chris
Zubrzycki in the bug #559109 the problem seems to be fixed.

I created a patch and attached it to this email.

Please reopen the bug #559109 because the bug seems not to be fixed in
the version installed in wheezy.

Thanks


Mario Koppensteiner

diff -Naur orig/etc/default/snmpd new/etc/default/snmpd
--- orig/etc/default/snmpd	2011-01-05 12:12:04.0 +
+++ new/etc/default/snmpd	2012-08-13 11:24:14.0 +
@@ -8,7 +8,7 @@
 SNMPDRUN=yes
 
 # snmpd options (use syslog, close stdin/out/err).
-SNMPDOPTS='-Lsd -Lf /dev/null -u snmp -g snmp -I -smux -p /var/run/snmpd.pid'
+SNMPDOPTS='-LS6d -Lf /dev/null -u snmp -g snmp -I -smux -p /var/run/snmpd.pid'
 
 # snmptrapd control (yes means start daemon).  As of net-snmp version
 # 5.0, master agentx support must be enabled in snmpd before snmptrapd
@@ -16,7 +16,7 @@
 TRAPDRUN=no
 
 # snmptrapd options (use syslog).
-TRAPDOPTS='-Lsd -p /var/run/snmptrapd.pid'
+TRAPDOPTS='-LS6d -p /var/run/snmptrapd.pid'
 
 # create symlink on Debian legacy location to official RFC path
 SNMPDCOMPAT=yes


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: net-snmp
Source-Version: 5.8+dfsg-1

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

Debian distribution maintenance software
pp.
Craig Small  (supplier of updated net-snmp 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: Thu, 10 Oct 2019 22:37:15 +1100
Source: net-snmp
Binary: libsnmp-base libsnmp-dev libsnmp-perl libsnmp-perl-dbgsym libsnmp35 
libsnmp35-dbg snmp snmp-dbgsym snmpd snmpd-dbgsym snmptrapd snmptrapd-dbgsym 
tkmib
Architecture: source all amd64
Version: 5.8+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Net-SNMP Packaging Team 
Changed-By: Craig Small 
Description:
 libsnmp-base - SNMP configuration script, MIBs and documentation
 libsnmp-dev - SNMP (Simple Network Management Protocol) development files
 libsnmp-perl - SNMP (Simple Network Management Protocol) Perl5 support
 libsnmp35  - SNMP (Simple Network Management Protocol) library
 libsnmp35-dbg - SNMP (Simple Network Management Protocol) library debug
 snmp   - SNMP (Simple Network Management Protocol) applications
 snmpd  - SNMP (Simple Network Management Protocol) agents
 snmptrapd  - Net-SNMP notification receiver
 tkmib  - SNMP (Simple Network Management Protocol) MIB browser
Closes: 528103 684721 754955 792623 823201 898399 917444 932775 937131
Changes:
 net-snmp (5.8+dfsg-1) unstable; urgency=medium
 .
   * New upstream release
 - snmplib: handle large amount of file descriptors Closes: #754955
 - BUG: 2815 Display UTF-8 characters again Closes: #898399
   * Update to Debian standards 4.3.0
   * Update debhelper to compat 12
   * snmpd/snmptrapd: Log only warning and above. Closes: #792623
   * snmpd/snmptrapd: Systemd unit logs to stdout
   * Build depend on non-versions libsensors Closes: #917444
   * Library soname updated to 35
   * snmpd: Change pidfile mode to 0644 Closes: #528103
   * Remove python modules Closes: #937131
   * Respect defaults for sysvinit Closes: #932775
   * Added 

Bug#834394: marked as done (RFA: plastex -- LaTeX document processing framework in Python)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:24 +
with message-id 
and subject line Bug#834394: fixed in plastex 2.0.0+git20190916-1
has caused the Debian Bug report #834394,
regarding RFA: plastex -- LaTeX document processing framework in Python
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.)


-- 
834394: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834394
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: normal

I haven't had time, nor interest to maintain this package, thus I
believe it's best if someone else steps in and take care of it's
maintainance.

Regards,

Carl
--- End Message ---
--- Begin Message ---
Source: plastex
Source-Version: 2.0.0+git20190916-1

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

Debian distribution maintenance software
pp.
Stuart Prescott  (supplier of updated plastex package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 Oct 2019 23:39:12 +1100
Source: plastex
Binary: plastex python-plastex-doc python3-plastex
Architecture: source all
Version: 2.0.0+git20190916-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Stuart Prescott 
Description:
 plastex- LaTeX document processing framework in Python
 python-plastex-doc - LaTeX document processing framework in Python - 
documentation
 python3-plastex - LaTeX document processing framework in Python - modules
Closes: 834394
Changes:
 plastex (2.0.0+git20190916-1) experimental; urgency=medium
 .
   [ Ondřej Nový ]
   * Use debhelper-compat instead of debian/compat.
   * Bump Standards-Version to 4.4.0.
 .
   [ Stuart Prescott ]
   * New upstream release / git snapshot.
 - refresh patches
   * Add myself to Uploaders.
   * Remove Carl Fürstenberg, with thanks for previous maintenance of this
 package (Closes: #834394).
   * Switch to Python 3.
 - create binary package plastex for the command line utility
 - create python3-plastex for the modules
   * Add autopkgtest tests.
   * Add missing source for JQuery and use libjs-jquery package instead.
   * Bump Standards-Version to 4.4.1.
Checksums-Sha1:
 808c77a98c6536c9242ed1716245afec6e66abc7 2479 plastex_2.0.0+git20190916-1.dsc
 0ba5d2411058f17f33eed68ea18d3141e999f1d7 953903 
plastex_2.0.0+git20190916.orig.tar.gz
 39d322290e32447824c924b0b2efe65b6d15f9a7 86272 
plastex_2.0.0+git20190916-1.debian.tar.xz
 0378a2bf29e3469a8a7a5910d924aa4ed528d1b7 12248 
plastex_2.0.0+git20190916-1_all.deb
 d6595d0d27337815c91321e127b6bb54eb42d83b 9522 
plastex_2.0.0+git20190916-1_amd64.buildinfo
 f76b73087163df07bed88a5c519fa00eb6adb0a5 243840 
python-plastex-doc_2.0.0+git20190916-1_all.deb
 fd2e16fb78bd2a95a4a01700e71dfa4c2107cdc0 411676 
python3-plastex_2.0.0+git20190916-1_all.deb
Checksums-Sha256:
 3434c66561ce387e9d328f6cf0502e1c90c23fb25e47e41e4c51c855522f745f 2479 
plastex_2.0.0+git20190916-1.dsc
 5cbb1938e417be58b78b71a02ffee1be669b7b3aeb4ff5c760328a21f76de2e9 953903 
plastex_2.0.0+git20190916.orig.tar.gz
 f7fd10123be25fa139d11a8666ae1b767c1bbbda2fce8f3ac795a4cd7d4e789f 86272 
plastex_2.0.0+git20190916-1.debian.tar.xz
 6bde62823cfcf14e988d928843b7e68276c6b637926458f9d574db9a3835c030 12248 
plastex_2.0.0+git20190916-1_all.deb
 30239116d699ed862c6974c5ce0abf125f9cad9cd5540e7a9dc4437a9b3e89b9 9522 
plastex_2.0.0+git20190916-1_amd64.buildinfo
 fe57876531412ad949a0ca737be8c03e200dcdb5ec996d815828edb0a1a1d21c 243840 
python-plastex-doc_2.0.0+git20190916-1_all.deb
 e58e25ebba152cb3496bbf7307e34e1a26e03dbed08dec2e08f1e571a370b2ae 411676 
python3-plastex_2.0.0+git20190916-1_all.deb
Files:
 a0d71b58fc4976a1ef5be36eff360831 2479 python optional 
plastex_2.0.0+git20190916-1.dsc
 27ac2e0c7a556c3191f6741ada5b8dac 953903 python optional 
plastex_2.0.0+git20190916.orig.tar.gz
 42f032bfb6773c741b7d9a6223050d8d 86272 python optional 
plastex_2.0.0+git20190916-1.debian.tar.xz
 4ec6e7445179c1772d1294a15aebc8bd 12248 tex optional 
plastex_2.0.0+git20190916-1_all.deb
 76ce6f360a3c70e5af681d2756ea9906 9522 python optional 

Bug#932775: marked as done (snmpd: init script does not respect /etc/default/snmpd)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:23 +
with message-id 
and subject line Bug#932775: fixed in net-snmp 5.8+dfsg-1
has caused the Debian Bug report #932775,
regarding snmpd: init script does not respect /etc/default/snmpd
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.)


-- 
932775: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=932775
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: snmpd
Version: 5.7.3+dfsg-5
Severity: important

Hi,

first of all, I'm running sysvinit, not systemd.

The init script shipped with snmpd is broken as it does not respect 
/etc/default/snmpd. The code which handled this in the stretch version is 
missing from the buster version:

-8<--
# Reads config file (will override defaults above)
[ -r /etc/default/snmpd ] && . /etc/default/snmpd
-8<--


Thanks,

Daniel

-- System Information:
Versions of packages snmpd depends on:
ii  adduser3.118
ii  debconf [debconf-2.0]  1.5.71
ii  libc6  2.28-10
ii  libmariadb31:10.3.15-1
ii  libsnmp-base   5.7.3+dfsg-5
ii  libsnmp30  5.7.3+dfsg-5
ii  libssl1.1  1.1.1c-1
ii  lsb-base   10.2019051400
ii  zlib1g 1:1.2.11.dfsg-1
--- End Message ---
--- Begin Message ---
Source: net-snmp
Source-Version: 5.8+dfsg-1

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

Debian distribution maintenance software
pp.
Craig Small  (supplier of updated net-snmp 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: Thu, 10 Oct 2019 22:37:15 +1100
Source: net-snmp
Binary: libsnmp-base libsnmp-dev libsnmp-perl libsnmp-perl-dbgsym libsnmp35 
libsnmp35-dbg snmp snmp-dbgsym snmpd snmpd-dbgsym snmptrapd snmptrapd-dbgsym 
tkmib
Architecture: source all amd64
Version: 5.8+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Net-SNMP Packaging Team 
Changed-By: Craig Small 
Description:
 libsnmp-base - SNMP configuration script, MIBs and documentation
 libsnmp-dev - SNMP (Simple Network Management Protocol) development files
 libsnmp-perl - SNMP (Simple Network Management Protocol) Perl5 support
 libsnmp35  - SNMP (Simple Network Management Protocol) library
 libsnmp35-dbg - SNMP (Simple Network Management Protocol) library debug
 snmp   - SNMP (Simple Network Management Protocol) applications
 snmpd  - SNMP (Simple Network Management Protocol) agents
 snmptrapd  - Net-SNMP notification receiver
 tkmib  - SNMP (Simple Network Management Protocol) MIB browser
Closes: 528103 684721 754955 792623 823201 898399 917444 932775 937131
Changes:
 net-snmp (5.8+dfsg-1) unstable; urgency=medium
 .
   * New upstream release
 - snmplib: handle large amount of file descriptors Closes: #754955
 - BUG: 2815 Display UTF-8 characters again Closes: #898399
   * Update to Debian standards 4.3.0
   * Update debhelper to compat 12
   * snmpd/snmptrapd: Log only warning and above. Closes: #792623
   * snmpd/snmptrapd: Systemd unit logs to stdout
   * Build depend on non-versions libsensors Closes: #917444
   * Library soname updated to 35
   * snmpd: Change pidfile mode to 0644 Closes: #528103
   * Remove python modules Closes: #937131
   * Respect defaults for sysvinit Closes: #932775
   * Added snmpping.1 manpage
   * Reduce logging for subcontainer Closes: #684721
   * Do not enable DISMAN events Closes: #823201
   * Update to standards 4.4.1
Checksums-Sha1:
 9f43c296f13a96a7d794bb3cb0b47aaee2b6c194 2816 net-snmp_5.8+dfsg-1.dsc
 f672ab1eb88af10227cb1ddd669ad971201e3afd 3446028 net-snmp_5.8+dfsg.orig.tar.xz
 b1fbc4c0076db77c50391299dfb25e81b13342f2 64300 
net-snmp_5.8+dfsg-1.debian.tar.xz
 5503976feaf7d8816eab03c964bda06ffc674c96 1670548 
libsnmp-base_5.8+dfsg-1_all.deb
 fe88635e1008ed7a07ab268892e18cc120bbf2c8 1151364 
libsnmp-dev_5.8+dfsg-1_amd64.deb
 e4497a71657ec9531ee1294a7ed9e57d5b87ae82 211880 
libsnmp-perl-dbgsym_5.8+dfsg-1_amd64.deb
 fddf6ee65afd1346454e0d4b2b567812716d84c3 1625720 
libsnmp-perl_5.8+dfsg-1_amd64.deb
 

Bug#898399: marked as done (net-snmp: UTF-8 chars never displayed in walk output for 5.7.3)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:23 +
with message-id 
and subject line Bug#898399: fixed in net-snmp 5.8+dfsg-1
has caused the Debian Bug report #898399,
regarding net-snmp: UTF-8 chars never displayed in walk output for 5.7.3
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.)


-- 
898399: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=898399
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: net-snmp
Severity: normal
Tags: upstream patch

Dear Maintainer,


  In net-snmp 5.7.3 UTF-8 chars was never displayed, since revision [7f05da].
  This is in all debian packages for 5.7.3.

  Issue was fixed in upstream for upcoming releases.
  Original upstream issue: https://sourceforge.net/p/net-snmp/bugs/2815/
  There also more detailed issue description.

 Included patch tested with latest net-snmp packages in debian/ubuntu. 

-- System Information:
Debian Release: 8.10
  APT prefers oldstable-updates
  APT policy: (500, 'oldstable-updates'), (500, 'oldstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.4.117-1-pve (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
Description: BUG: 2815: Display UTF-8 characters again
 Before commit 7f05daa8e0e0 sprint_realloc_octet_string() used memcpy()
 for ASCII strings. That caused the output to be truncated if a '\0' was
 embedded in an octet string. Commit 7f05daa8e0e0 fixed that issue but
 broke UTF-8 support. Restore UTF-8 support by only using
 sprint_realloc_asciistring() if the octet string contains a '\0'.
 .
 net-snmp (5.7.3+dfsg-1ubuntu4.1) xenial; urgency=medium
 .
   * d/snmpd.init: also match start-stop-daemon against pidfile to avoid
 killing extra snmpd processes for example in container (LP: #1720109)
Author: Christian Ehrhardt 
Bug-Ubuntu: https://bugs.launchpad.net/bugs/1720109

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: https://sourceforge.net/p/net-snmp/code/ci/4b518ed4971126dd874f64e0058347e9d622471b/tree/snmplib/mib.c?diff=40c09d42cad956eb0698c0e01ece9412f42966ed
Bug: https://sourceforge.net/p/net-snmp/bugs/2815/
Bug-Debian: https://bugs.debian.org/
Bug-Ubuntu: https://launchpad.net/bugs/
Forwarded: 
Reviewed-By: 
Last-Update: 

--- net-snmp-5.7.3+dfsg.orig/snmplib/mib.c
+++ net-snmp-5.7.3+dfsg/snmplib/mib.c
@@ -570,10 +570,20 @@ sprint_realloc_octet_string(u_char ** bu
 break;
 case 't': /* new in rfc 3411 */
 case 'a':
+/* A string hint gives the max size - we may not need this much */
 cnt = SNMP_MIN(width, ecp - cp);
-if (!sprint_realloc_asciistring(buf, buf_len, out_len,
-allow_realloc, cp, cnt))
+while ((*out_len + cnt + 1) > *buf_len) {
+if (!allow_realloc || !snmp_realloc(buf, buf_len))
+return 0;
+}
+if (memchr(cp, '\0', cnt) == NULL) {
+/* No embedded '\0' - use strlcpy to preserve UTF-8 */
+strlcpy((char *)(*buf + *out_len), (char *)cp, cnt + 1);
+*out_len += cnt;
+} else if (!sprint_realloc_asciistring(buf, buf_len,
+ out_len, allow_realloc, cp, cnt)) {
 return 0;
+}
 cp += cnt;
 break;
 default:
--- End Message ---
--- Begin Message ---
Source: net-snmp
Source-Version: 5.8+dfsg-1

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

Debian distribution maintenance software
pp.
Craig Small  (supplier of updated net-snmp 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: 

Bug#939572: marked as done (ITP: r-cran-fit.models -- Compare Fitted Models)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:26 +
with message-id 
and subject line Bug#939572: fixed in r-cran-fit.models 0.5-14-1
has caused the Debian Bug report #939572,
regarding ITP: r-cran-fit.models -- Compare Fitted Models
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.)


-- 
939572: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=939572
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist

Subject: ITP: r-cran-fit.models -- Compare Fitted Models
Package: wnpp
Owner: Steffen Moeller 
Severity: wishlist

* Package name: r-cran-fit.models
  Version : 0.5
  Upstream Author : Copyright: (FIXME: year)-2017 Kjell Konis 
.
* URL : https://cran.r-project.org/package=fit.models
* License : GPL
  Programming Lang: GNU R
  Description : Compare Fitted Models
 The fit.models function and its associated methods (coefficients, print,
 summary, plot, etc.) were originally provided in the robust package to
 compare robustly and classically fitted model objects. The aim of the
 fit.models package is to separate this fitted model object comparison
 functionality from the robust package and to extend it to support
 fitting methods (e.g., classical, robust, Bayesian, regularized, etc.)
 more generally.

Remark: This package is maintained by Debian R Packages Maintainers at
   https://salsa.debian.org/r-pkg-team/r-cran-fit.models
--- End Message ---
--- Begin Message ---
Source: r-cran-fit.models
Source-Version: 0.5-14-1

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

Debian distribution maintenance software
pp.
Steffen Moeller  (supplier of updated r-cran-fit.models 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 05 Sep 2019 15:35:54 +0200
Source: r-cran-fit.models
Binary: r-cran-fit.models
Architecture: source all
Version: 0.5-14-1
Distribution: unstable
Urgency: medium
Maintainer: Debian R Packages Maintainers 
Changed-By: Steffen Moeller 
Description:
 r-cran-fit.models - Compare Fitted Models
Closes: 939572
Changes:
 r-cran-fit.models (0.5-14-1) unstable; urgency=medium
 .
   * Initial release (closes: #939572)
Checksums-Sha1:
 e72d97c7db15cf31d9715fde1e62b5913e4c7f71 2130 r-cran-fit.models_0.5-14-1.dsc
 8374a740dfa114209e97be03e4db35079829d01d 24125 
r-cran-fit.models_0.5-14.orig.tar.gz
 23d02a749f3f94c75b6d2cd8b3551e57d792881f 2120 
r-cran-fit.models_0.5-14-1.debian.tar.xz
 6c1026674c8598eb9b920fa4fa66bf5a80e267ab 100208 
r-cran-fit.models_0.5-14-1_all.deb
 bce38aa5bef628986ce687f17d87275cf74843ec 9083 
r-cran-fit.models_0.5-14-1_amd64.buildinfo
Checksums-Sha256:
 ecdc82cee66802359f1a5f38c5600c622f5aba27d403d5c31979b094674847a8 2130 
r-cran-fit.models_0.5-14-1.dsc
 93b9d119e97b36c648a19c891fc5e69f5306eb5b9bac16bf377555057afd4b6e 24125 
r-cran-fit.models_0.5-14.orig.tar.gz
 d2cc4684e2efa6d4430bea86e92e09ef10c8aafeca6d911418c9bf4675abce54 2120 
r-cran-fit.models_0.5-14-1.debian.tar.xz
 5f0e8815073259713db96d0c9ead0e81dec4464fd304f6be6f062c27dcaca32b 100208 
r-cran-fit.models_0.5-14-1_all.deb
 b4620bd72df5de4eca9f89d23aa92b5b058a025cbe6076aa341c1415f5368e9c 9083 
r-cran-fit.models_0.5-14-1_amd64.buildinfo
Files:
 e24c023be0e3abf7a5d0dbfcb4e8faf3 2130 gnu-r optional 
r-cran-fit.models_0.5-14-1.dsc
 159b5c57953db4c917bc186ddacdff51 24125 gnu-r optional 
r-cran-fit.models_0.5-14.orig.tar.gz
 29d024ee6ad4a42336f54a8fdc81098a 2120 gnu-r optional 
r-cran-fit.models_0.5-14-1.debian.tar.xz
 240d03a19594107e89293055233e6aaf 100208 gnu-r optional 
r-cran-fit.models_0.5-14-1_all.deb
 90033237c27b41df986c8dc0fecb2678 9083 gnu-r optional 
r-cran-fit.models_0.5-14-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJHBAEBCAAxFiEEhMGXeonn7+0+XKYuL9i+2sAg7tEFAl1yXCQTHG1vZWxsZXJA
ZGViaWFuLm9yZwAKCRAv2L7awCDu0TOMD/97GZM4vYrupu2CNsYruEy/4Ioa2gjz
2qTZc4sQk++8NmFUrEY165Bdy+SdBDEBB6a1j1FTJyAbxKK6RK2lons/02e7mqKk
YqodP/YLd3qzON9fG0si1SGFi1+/IXtNkq0F2xEKDPTkwgAzaPk6e+okpfJZYd6z
WLVEe5Bfi4ToznMDl4VoPo5gFUEJ7y/lLdVP2b8H4XiW4pJeuGU5G9Bre+/xY7Wr

Bug#937131: marked as done (net-snmp: Python2 removal in sid/bullseye)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:23 +
with message-id 
and subject line Bug#937131: fixed in net-snmp 5.8+dfsg-1
has caused the Debian Bug report #937131,
regarding net-snmp: Python2 removal in sid/bullseye
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.)


-- 
937131: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=937131
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:net-snmp
Version: 5.7.3+dfsg-5
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:net-snmp

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: net-snmp
Source-Version: 5.8+dfsg-1

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

Debian distribution maintenance software
pp.
Craig Small  (supplier of updated net-snmp 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: Thu, 10 Oct 2019 22:37:15 +1100
Source: net-snmp
Binary: libsnmp-base libsnmp-dev libsnmp-perl libsnmp-perl-dbgsym libsnmp35 
libsnmp35-dbg snmp snmp-dbgsym snmpd snmpd-dbgsym snmptrapd snmptrapd-dbgsym 
tkmib
Architecture: source all amd64
Version: 5.8+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Net-SNMP Packaging Team 
Changed-By: Craig Small 
Description:
 libsnmp-base - SNMP configuration script, MIBs and documentation
 libsnmp-dev - SNMP (Simple Network Management Protocol) development files
 libsnmp-perl - SNMP (Simple Network Management Protocol) Perl5 support
 libsnmp35  - SNMP (Simple Network Management Protocol) library
 libsnmp35-dbg - SNMP (Simple Network Management Protocol) library debug
 snmp   - SNMP (Simple Network Management Protocol) applications
 snmpd  - SNMP (Simple Network Management Protocol) agents
 snmptrapd  - Net-SNMP notification receiver
 tkmib  - SNMP (Simple Network Management Protocol) MIB 

Bug#918955: marked as done (ITA: adplug -- free AdLib sound library)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:13 +
with message-id 
and subject line Bug#918955: fixed in adplug 2.3.1+dfsg-1
has caused the Debian Bug report #918955,
regarding ITA: adplug -- free AdLib sound library
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.)


-- 
918955: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=918955
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: normal

adplug needs a new maintainer:

AdPlug is a free, cross-platform, hardware independent AdLib sound player
library, mainly written in C++ and released under the LGPL. AdPlug plays
sound data, originally created for the AdLib (OPL2) and Sound Blaster
(Dual OPL2/OPL3) audio boards, directly from its original format on top
of an emulator or by using the real hardware. No OPL chip is required
for playback.
  
--- End Message ---
--- Begin Message ---
Source: adplug
Source-Version: 2.3.1+dfsg-1

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

Debian distribution maintenance software
pp.
Yangfl  (supplier of updated adplug 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: Fri, 11 Oct 2019 21:35:27 +0800
Source: adplug
Binary: adplug-utils adplug-utils-dbgsym libadplug-2.3.1-0 
libadplug-2.3.1-0-dbgsym libadplug-dev
Architecture: source amd64
Version: 2.3.1+dfsg-1
Distribution: experimental
Urgency: medium
Maintainer: Yangfl 
Changed-By: Yangfl 
Description:
 adplug-utils - free AdLib sound library (utils)
 libadplug-2.3.1-0 - free AdLib sound library
 libadplug-dev - free AdLib sound library (development)
Closes: 918955 925627 930204
Changes:
 adplug (2.3.1+dfsg-1) experimental; urgency=medium
 .
   * New Maintainer (Closes: #918955)
   * New upstream release
 - Fix FTBFS with GCC-9 (Closes: #925627)
 - Move adplug.pc to a multiarch location (Closes: #930204)
   * Bump Standards-Version to 4.4.0
   * Bump debhelper compat to 12
Checksums-Sha1:
 87cc23b57d67bb3bf3ecc01265d0c443e51e1b9f 2015 adplug_2.3.1+dfsg-1.dsc
 a63be14773b42347f350480be6894fb69745ed13 547544 adplug_2.3.1+dfsg.orig.tar.xz
 2362088018e8279b3c0348b377ae2f67b77540c5 9960 adplug_2.3.1+dfsg-1.debian.tar.xz
 2b4821e36dc7203841e323a3ee868a664ce09d10 47708 
adplug-utils-dbgsym_2.3.1+dfsg-1_amd64.deb
 2671984ffe82db8283a965b30cd2a91999ffe0a3 14096 
adplug-utils_2.3.1+dfsg-1_amd64.deb
 437aa095c71f2ca587e5167dbe4fce9235059cc8 6810 
adplug_2.3.1+dfsg-1_amd64.buildinfo
 e689c87caa6834d2f15695d1419a278a1db51662 1198320 
libadplug-2.3.1-0-dbgsym_2.3.1+dfsg-1_amd64.deb
 7ab94e70fd95c34046fffb94de1c53f8c192ab14 212076 
libadplug-2.3.1-0_2.3.1+dfsg-1_amd64.deb
 6e01100912021d4d1a580cdd9abee85081678860 276660 
libadplug-dev_2.3.1+dfsg-1_amd64.deb
Checksums-Sha256:
 5ff8ccf7db08867f5bec76a32e0386693b90fa1146b90597a1c79594c3b09fc5 2015 
adplug_2.3.1+dfsg-1.dsc
 7444c9c3ee4dbe3d449a75b0ba2318bceaf0e6aa306a029de1fe438d23f33614 547544 
adplug_2.3.1+dfsg.orig.tar.xz
 4f7b2a27997aeb22fad1db501c913b76b2250a61b73580816ad0d4822cd51963 9960 
adplug_2.3.1+dfsg-1.debian.tar.xz
 513a564576a9693b24a799e5ec7970caccb913b9aceab8b48467204f91b1d6b6 47708 
adplug-utils-dbgsym_2.3.1+dfsg-1_amd64.deb
 ff70a7740aeb6ba79b43d86ccf85347c5ec26316b37301bf05875f1293a2526b 14096 
adplug-utils_2.3.1+dfsg-1_amd64.deb
 a7db3f8e2d45f1ff18853964dc7764ae74d0750ca3f2f08cf4d89dda2193fad6 6810 
adplug_2.3.1+dfsg-1_amd64.buildinfo
 fb96299750446959712024d7a158139951462c86ce1c424b015be4ff818f49c2 1198320 
libadplug-2.3.1-0-dbgsym_2.3.1+dfsg-1_amd64.deb
 6f5d8891d728d208e0e246d0c9a062b9c0ef11f7127967babf0d310d1ee5b3af 212076 
libadplug-2.3.1-0_2.3.1+dfsg-1_amd64.deb
 131fc7fc44a51c46a02a323176318c40f9eee9560ce8777bcc5663438658bb8c 276660 
libadplug-dev_2.3.1+dfsg-1_amd64.deb
Files:
 ca937fdaf8a3de3dc85f3a37e518c167 2015 libs optional adplug_2.3.1+dfsg-1.dsc
 5919e7d1ad67effaf5fc1b4d97340f87 547544 libs optional 
adplug_2.3.1+dfsg.orig.tar.xz
 25ed55c141f5c7b08967d48e4c3f94c6 9960 libs optional 
adplug_2.3.1+dfsg-1.debian.tar.xz
 b27b093d2879e254f9e35bb584b424c2 47708 debug optional 

Bug#941852: marked as done (pyqt5webengine: please restore python-pyqt5.qtwebengine (which disappeared without a trace))

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:24 +
with message-id 
and subject line Bug#941852: fixed in pyqt5webengine 5.12.1-3
has caused the Debian Bug report #941852,
regarding pyqt5webengine: please restore python-pyqt5.qtwebengine (which 
disappeared without a trace)
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.)


-- 
941852: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941852
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: pyqt5webengine
Version: 5.12.1-2
Severity: normal

Dear pyqt5webengine maintainer[s],

Unfortunately when this package was broken out of pyqt5 the Python 2
bindings for QtWebEngine disappeared without a trace (no changelog
entry, no NEWS).  This has now caused Bug #941802, and Bug #941806.

Would you please restore this package?  Calibre is migrating towards
Python 3 but still depends on py2.  An up-to-date Calibre package is
needed to retain compatibility with the firmware updates ebook reader
manufacturers regularly push OTA.

Thank you for your consideration,
Nicholas
--- End Message ---
--- Begin Message ---
Source: pyqt5webengine
Source-Version: 5.12.1-3

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

Debian distribution maintenance software
pp.
Dmitry Shachnev  (supplier of updated pyqt5webengine 
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: Wed, 09 Oct 2019 19:09:11 +0300
Source: pyqt5webengine
Binary: python-pyqt5.qtwebengine python-pyqt5.qtwebengine-dbg 
python3-pyqt5.qtwebengine python3-pyqt5.qtwebengine-dbg
Architecture: source amd64
Version: 5.12.1-3
Distribution: experimental
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Dmitry Shachnev 
Description:
 python-pyqt5.qtwebengine - Python 2 bindings for Qt5's WebEngine module
 python-pyqt5.qtwebengine-dbg - Python 2 bindings for Qt5's WebEngine module 
(debug extensions)
 python3-pyqt5.qtwebengine - Python 3 bindings for Qt5's WebEngine module
 python3-pyqt5.qtwebengine-dbg - Python 3 bindings for Qt5's WebEngine module 
(debug extensions)
Closes: 941852
Changes:
 pyqt5webengine (5.12.1-3) experimental; urgency=medium
 .
   * Backport upstream patch to fix build against Qt 5.12.5.
   * Restore the Python 2 packages, needed for Calibre (closes: #941852).
   * Bump Standards-Version to 4.4.1, no changes needed.
Checksums-Sha1:
 323a5331588ff3fe7b77ce06ef1c765f78a35e18 2680 pyqt5webengine_5.12.1-3.dsc
 874a5c9e06dfdf4dcdb821d2bb4769bbcf97fe1b 3900 
pyqt5webengine_5.12.1-3.debian.tar.xz
 712ffb73e8a92cd990bdef9181ace6ebfd9a8c56 16079 
pyqt5webengine_5.12.1-3_amd64.buildinfo
 8bfabb7eea495454eb4e426c582995aefdaddadf 5624620 
python-pyqt5.qtwebengine-dbg_5.12.1-3_amd64.deb
 27ef5aad386cb724430a72983d0aa724b33e8e4d 99260 
python-pyqt5.qtwebengine_5.12.1-3_amd64.deb
 4dbeb9d0c25c0a3aabc37a32e233ce3eaf15be75 5544884 
python3-pyqt5.qtwebengine-dbg_5.12.1-3_amd64.deb
 0e84593bf0cac96c1cf2e749973424081711a9e6 114084 
python3-pyqt5.qtwebengine_5.12.1-3_amd64.deb
Checksums-Sha256:
 77047c0bb4d6b922e31b7d69e5f36b7c63fd68cfb7137fcb07ad779d630b52c5 2680 
pyqt5webengine_5.12.1-3.dsc
 e59e6bbf9d9f318672ec65c9eba17dd8c9a99480de28ce8bff9cf550c524376d 3900 
pyqt5webengine_5.12.1-3.debian.tar.xz
 1e36224365062fa60510415fdec79248a523d6da653eabb347cdc19358aeb37a 16079 
pyqt5webengine_5.12.1-3_amd64.buildinfo
 524d746a049bfe069c0ab4ce4fc30e9280094b6e68cfb71a7b1ffd81e6377f9b 5624620 
python-pyqt5.qtwebengine-dbg_5.12.1-3_amd64.deb
 5d26d3ee1e10245478d54d4b40e1f4735fcc0cd049392c41c44f539d5be88398 99260 
python-pyqt5.qtwebengine_5.12.1-3_amd64.deb
 2a2ec3b2563f5143164a8c7b2e1ef0311ea18022a625c645103ce3fee0edfb48 5544884 
python3-pyqt5.qtwebengine-dbg_5.12.1-3_amd64.deb
 c7932f94af0a5f6d356e0e471c33081bd2bd84b1577de54720b71276c8feaa5c 114084 
python3-pyqt5.qtwebengine_5.12.1-3_amd64.deb
Files:
 086ebb79de5a449b7d6e0e8260ce32b6 2680 python optional 
pyqt5webengine_5.12.1-3.dsc
 e8fd3c2d49a7ce9c21d233e0e98222d4 3900 python optional 
pyqt5webengine_5.12.1-3.debian.tar.xz
 db6c15fcfb5adda063bf793bc1227c55 

Processed: closing 913177

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

> close 913177 0.81.0-1
Bug #913177 [src:poppler] poppler: CVE-2018-19058
Marked as fixed in versions poppler/0.81.0-1.
Bug #913177 [src:poppler] poppler: CVE-2018-19058
Marked Bug as done
> thanks
Stopping processing here.

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



Processed: notfound 926133 in 0.71.0-3, closing 926133

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

> notfound 926133 0.71.0-3
Bug #926133 [src:poppler] poppler: CVE-2019-10018
No longer marked as found in versions poppler/0.71.0-3.
> close 926133 0.57.0-1
Bug #926133 [src:poppler] poppler: CVE-2019-10018
Marked as fixed in versions poppler/0.57.0-1.
Bug #926133 [src:poppler] poppler: CVE-2019-10018
Marked Bug as done
> thanks
Stopping processing here.

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



Bug#878199: marked as done (please drop transitional package libalberta2-dev)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:19:05 +
with message-id 
and subject line Bug#878199: fixed in alberta 3.0.1-2
has caused the Debian Bug report #878199,
regarding please drop transitional package libalberta2-dev
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.)


-- 
878199: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=878199
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libalberta2-dev
Version: 3.0.1-1
Severity: normal
user: qa.debian@packages.debian.org
usertags: transitional

Please drop transitional package  for buster, as it has been released with 
jessie and stretch.

Thanks for maintaining alberta!


-- 
cheers,
Holger


signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: alberta
Source-Version: 3.0.1-2

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

Debian distribution maintenance software
pp.
Ansgar Burchardt  (supplier of updated alberta package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 13 Oct 2019 11:58:26 +0200
Source: alberta
Architecture: source
Version: 3.0.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 

Changed-By: Ansgar Burchardt 
Closes: 878199
Changes:
 alberta (3.0.1-2) unstable; urgency=medium
 .
   * Drop transitional package libalberta2-dev. (Closes: #878199)
   * Switch to automatic -dbgsym packages and drop libalberta-dbg.
   * debian/control: Use `Rules-Requires-Root: no`.
   * debian/control: Update Vcs-* fields for move to salsa.d.o.
   * Bumped Standards-Version to 4.4.1.
Checksums-Sha1:
 4a4463c4bc129a1e52848cc0a9617e1f6505c8f0 2065 alberta_3.0.1-2.dsc
 5d24108cff3eab57eb34c199ffe5fea2f9e6aedb 3988 alberta_3.0.1-2.debian.tar.xz
Checksums-Sha256:
 3f7f04cc899913f4c4dc77d09fb29e1ed513bea72da7a8250f055a4c67997119 2065 
alberta_3.0.1-2.dsc
 17c6fe38a93ebc5c8840ec897e7b1e57b661701e2fbb495fb676665b0f579794 3988 
alberta_3.0.1-2.debian.tar.xz
Files:
 d7192905d921bdebed2e08b1c486784a 2065 libs optional alberta_3.0.1-2.dsc
 6cbd710fdcfdd07e3c828e3a9d9e44a4 3988 libs optional 
alberta_3.0.1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEE6XYjQ9o8g2p4zSVKamMCj1p06JMFAl2i9xISHGFuc2dhckBk
ZWJpYW4ub3JnAAoJEGpjAo9adOiTaQ4P+wUu7DRR2uBr0yh6m+sX3LlNj+QJTtla
9rfhg3Bs0PlgR8jpIA1TWRc6UWvGn89jM9MlgE+066Z+/4ttZxTYIIQkeCWyTjIz
42+Hvqm+VqwiJoKb9wwkgxTvCqM9iUN7Si89i+StimjQx8wVKQmS38vlTazTC9m6
RalpgpHtwsUoCQy96sEha2QoyVNnocJHq0kTC8wDUQJD16vEyTBlLmK0f91Onr/Y
T1bJgBPXu6kv4szYE8GETbtUy7RLr0ylPWK1uQPqpXgkmCXvSYiqY6N+YfD4JI4y
g4KNV+0CUAZ9w7JkOwo1JMASj9s6dCcvThLujWjlpJnA9xIxozncoNTsRwMTil5j
VfinFie5+EWI26rXPMmDLEt5KGkYR2TJvbSiXbZkq61jenIupS4cMQ6Wd2D+ApK7
WsBIu2eUN2RaCQCn/VHSfBxEtUyXdFwuzwGaD15hoOemc3RgltYuaykT+qhtf/qU
SO6PUVyUG0vIdTl/ZdBkPjWC+5vJ0O2G8UG2VWnYwvqDFwUJfKVamjHhQmHZiFtH
EeB5SqMl5d0X3zRRYWmVUBQcNmWYQLTEORZ2qZHRn245U0SriZ7yxwtU8tyaEFHk
NeQzw9TbFm75tw+Ot3//226sSudP54S+vSgIkrcEAC8nsFCU2LURnfvq6ahI18+g
d+qBKT4v3VRU
=Phs0
-END PGP SIGNATURE End Message ---


Bug#931880: marked as done (slurm-llnl: CVE-2019-12838)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 10:00:35 +
with message-id 
and subject line Bug#931880: fixed in slurm-llnl 19.05.3.2-1
has caused the Debian Bug report #931880,
regarding slurm-llnl: CVE-2019-12838
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.)


-- 
931880: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=931880
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: slurm-llnl
Version: 18.08.6.2-1
Severity: grave
Tags: security upstream
Control: found -1 18.08.5.2-1 
Control: found -1 16.05.9-1+deb9u4
Control: found -1 16.05.9-1

Hi,

The following vulnerability was published for slurm-llnl. I'm filling
it with an RC severity to be on safe side, but if you have more
information available and think the RC severity is not warranted
please feel free to then downgrade.

CVE-2019-12838[0]:
| SchedMD Slurm 17.11.x, 18.08.0 through 18.08.7, and 19.05.0 allows SQL
| Injection.


If you fix the vulnerability please also make sure to include the
CVE (Common Vulnerabilities & Exposures) id in your changelog entry.

For further information see:

[0] https://security-tracker.debian.org/tracker/CVE-2019-12838
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12838
[1] https://lists.schedmd.com/pipermail/slurm-announce/2019/25.html

Please adjust the affected versions in the BTS as needed. [1] say that
whilest only 19.05 and 18.08 releases are patched previous releases
were affected as well.

Regards,
Salvatore
--- End Message ---
--- Begin Message ---
Source: slurm-llnl
Source-Version: 19.05.3.2-1

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

Debian distribution maintenance software
pp.
Gennaro Oliva  (supplier of updated slurm-llnl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 08 Oct 2019 18:18:52 +0200
Source: slurm-llnl
Binary: libpam-slurm libpam-slurm-adopt libpmi0 libpmi0-dbgsym libpmi0-dev 
libpmi2-0 libpmi2-0-dbgsym libpmi2-0-dev libslurm-dev libslurm-perl libslurm34 
libslurm34-dbgsym libslurmdb-perl slurm-client slurm-client-dbgsym 
slurm-client-emulator slurm-wlm slurm-wlm-basic-plugins 
slurm-wlm-basic-plugins-dbgsym slurm-wlm-basic-plugins-dev slurm-wlm-doc 
slurm-wlm-emulator slurm-wlm-torque slurmctld slurmctld-dbgsym slurmd 
slurmd-dbgsym slurmdbd slurmdbd-dbgsym sview
Architecture: source amd64 all
Version: 19.05.3.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian HPC Team 
Changed-By: Gennaro Oliva 
Description:
 libpam-slurm - PAM module to authenticate using the SLURM resource manager
 libpam-slurm-adopt - PAM module to authenticate users running a SLURM job and 
track th
 libpmi0- SLURM PMI library implementation
 libpmi0-dev - SLURM PMI library implementation development files
 libpmi2-0  - SLURM PMI2 library implementation
 libpmi2-0-dev - SLURM PMI2 library implementation development files
 libslurm-dev - SLURM development files
 libslurm-perl - Perl API for SLURM
 libslurm34 - Runtime library files for SLURM
 libslurmdb-perl - Perl API for the SLURM database
 slurm-client - SLURM client side commands
 slurm-client-emulator - SLURM client side commands for the emulator
 slurm-wlm  - Simple Linux Utility for Resource Management
 slurm-wlm-basic-plugins - SLURM basic plugins
 slurm-wlm-basic-plugins-dev - SLURM basic plugins development files
 slurm-wlm-doc - SLURM documentation
 slurm-wlm-emulator - SLURM emulator
 slurm-wlm-torque - Torque compatibility wrappers for SLURM
 slurmctld  - SLURM central management daemon
 slurmd - SLURM compute node daemon
 slurmdbd   - Secure enterprise-wide interface to a database for SLURM
 sview  - GUI to view and modify SLURM state
Closes: 931880
Changes:
 slurm-llnl (19.05.3.2-1) unstable; urgency=medium
 .
   * New upstream release fixes CVE-2019-12838 (Closes: #931880)
   * Remove libslurmdb packages as it was merged into libslurm
   * Bump standard version to 4.4.1 (no changes)
   * Update d/copyright
   * Sync configurators with upstream
   * Refresh patches
   * Increase libslurm version to 34
  

Processed: closing 917974

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

> close 917974 0.81.0-1
Bug #917974 [src:poppler] poppler: CVE-2018-20650: reachable abort in 
FileSpec::FileSpec in FileSpec.cc
Marked as fixed in versions poppler/0.81.0-1.
Bug #917974 [src:poppler] poppler: CVE-2018-20650: reachable abort in 
FileSpec::FileSpec in FileSpec.cc
Marked Bug as done
> thanks
Stopping processing here.

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



Processed: closing 925264

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

> close 925264 0.81.0-1
Bug #925264 [src:poppler] poppler: CVE-2019-9903
Marked as fixed in versions poppler/0.81.0-1.
Bug #925264 [src:poppler] poppler: CVE-2019-9903
Marked Bug as done
> thanks
Stopping processing here.

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



Processed: closing 913164

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

> close 913164 0.81.0-1
Bug #913164 [src:poppler] CVE-2018-18897
Marked as fixed in versions poppler/0.81.0-1.
Bug #913164 [src:poppler] CVE-2018-18897
Marked Bug as done
> thanks
Stopping processing here.

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



Processed: closing 926529

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

> close 926529 0.81.0-1
Bug #926529 [src:poppler] poppler: CVE-2019-10871
Marked as fixed in versions poppler/0.81.0-1.
Bug #926529 [src:poppler] poppler: CVE-2019-10871
Marked Bug as done
> thanks
Stopping processing here.

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



Bug#941439: marked as done (Ships obsolete mimelnk directory)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 17:10:02 +
with message-id 
and subject line Bug#941439: fixed in libreoffice 1:6.3.3~rc1-1
has caused the Debian Bug report #941439,
regarding Ships obsolete mimelnk directory
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.)


-- 
941439: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941439
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libreoffice-common
Version: 1:6.3.2-1
Severity: minor

Hi,

libreoffice-common ships an unused, obsolete
/usr/share/mimelnk directory.

Those were used in KDE3 days which is long gone.
This directory can be dropped safely from the package.

Regards,
Michael

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

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

Versions of packages libreoffice-common depends on:
ii  libnumbertext-data 1.0.5-3
ii  libreoffice-style-colibre  1:6.3.2-1
ii  libreoffice-style-tango1:6.3.2-1
ii  ure6.3.2-1

Versions of packages libreoffice-common recommends:
ii  apparmor2.13.3-5
ii  fonts-liberation2   2.00.5-2
ii  libexttextcat-data  3.4.5-1
ii  python3-uno 1:6.3.2-1
ii  xdg-utils   1.1.3-1

Versions of packages libreoffice-common suggests:
ii  libreoffice-style-colibre [libreoffice-style] 1:6.3.2-1
ii  libreoffice-style-elementary [libreoffice-style]  1:6.3.2-1
ii  libreoffice-style-tango [libreoffice-style]   1:6.3.2-1

Versions of packages python3-uno depends on:
ii  libc6 2.29-2
ii  libgcc1   1:9.2.1-8
ii  libpython3.7  3.7.4-4
ii  libreoffice-core  1:6.3.2-1
ii  libstdc++69.2.1-8
ii  python3   3.7.3-1
ii  python3.7 3.7.4-4
ii  uno-libs3 6.3.2-1
ii  ure   6.3.2-1

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: libreoffice
Source-Version: 1:6.3.3~rc1-1

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

Debian distribution maintenance software
pp.
Rene Engelhard  (supplier of updated libreoffice package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 13 Oct 2019 16:39:08 +
Source: libreoffice
Architecture: source
Version: 1:6.3.3~rc1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian LibreOffice Maintainers 
Changed-By: Rene Engelhard 
Closes: 941439 941655
Changes:
 libreoffice (1:6.3.3~rc1-1) unstable; urgency=medium
 .
   * New upstream release candidate
 - fixes images getting black in some circumstances
   (closes: #941655)
 .
   * debian/scripts/gid2pkgdirs.sh:
 - stop installing /usr/share/mimelnk (closes: #941439)
Checksums-Sha1:
 537c98bb54b867cf82a766c5dfbccf2568baaf6c 27068 libreoffice_6.3.3~rc1-1.dsc
 4a19c774750dfd656a7c39912fc8198ac2e10151 12588924 
libreoffice_6.3.3~rc1.orig-helpcontent2.tar.xz
 5271fc8078018594d1f5c99369936c94a959798a 146759852 
libreoffice_6.3.3~rc1.orig-translations.tar.xz
 d238a37bb44a805395cff40fc10746d211b44850 224937884 
libreoffice_6.3.3~rc1.orig.tar.xz
 989b18d25e089aa5c8cd5a1ab85762cfa71b1591 833 
libreoffice_6.3.3~rc1.orig.tar.xz.asc
 f98d72cafabf80bb2c28e1c2f7e243b4ef223508 10691628 
libreoffice_6.3.3~rc1-1.debian.tar.xz
 512e321ec38f3b60bc7bd7a18c63442c0cd44cfd 40179 
libreoffice_6.3.3~rc1-1_source.buildinfo
Checksums-Sha256:
 6ff3836875fbc51c22b805b6cdc7ac389c4ef3579d5532062685b7563c17fb6c 27068 
libreoffice_6.3.3~rc1-1.dsc
 e39e114337aab52733711f4eabc602059c965d823320361ad016c29cfc3f808d 12588924 
libreoffice_6.3.3~rc1.orig-helpcontent2.tar.xz
 24a1cbfb41ec4664ab81ae70b2b16edfabf66b2abe58997645a8afc74c5788bb 146759852 
libreoffice_6.3.3~rc1.orig-translations.tar.xz
 4e39753489049eb2c6a698862b7d465aa98cf53b1d6c32571368d97bc144277a 

Bug#941655: marked as done (libreoffice-impress: Exported html pages have black backgrounds)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 17:10:02 +
with message-id 
and subject line Bug#941655: fixed in libreoffice 1:6.3.3~rc1-1
has caused the Debian Bug report #941655,
regarding libreoffice-impress: Exported html pages have black backgrounds
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.)


-- 
941655: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941655
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libreoffice-impress
Version: 1:6.3.2-1
Severity: normal

Dear Maintainer,

   * What led up to the situation?

Exporting html pages of a libreoffice-impress document

   * What exactly did you do (or not do) that was effective (or
 ineffective)?

For the purpose of this bugreport I created a small .odp file of two slides
Then alt-File, Export, and then pressed Export in the Export window.

   * What was the outcome of this action?

The html versions were saved, but all slides shown in the html files have a
black background 

   * What outcome did you expect instead?

The same background as in the presentation slides. In previous versions 
(version 1:6.1.5-3+deb10u4, the current stable version and before) exporting
html pages of the presentation went flawlessly. 

For your information: the demo slides and exported html pages are available in
https://www.icce.rug.nl/tmp/impress.tgz

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

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

Versions of packages libreoffice-impress depends on:
ii  libc62.29-2
ii  libepoxy01.5.3-0.1
ii  libetonyek-0.1-1 0.1.9-1
ii  libgcc1  1:9.2.1-8
ii  libmwaw-0.3-30.3.15-2
ii  libodfgen-0.1-1  0.1.7-1
ii  libreoffice-core 1:6.3.2-1
ii  libreoffice-draw 1:6.3.2-1
ii  librevenge-0.0-0 0.0.4-6+b1
ii  libstaroffice-0.0-0  0.0.6-1
ii  libstdc++6   9.2.1-8
ii  uno-libs36.3.2-1
ii  ure  6.3.2-1

libreoffice-impress recommends no packages.

Versions of packages libreoffice-impress suggests:
pn  bluez  

Versions of packages libreoffice-core depends on:
ii  fontconfig  2.13.1-2+b1
ii  fonts-opensymbol2:102.11+LibO6.3.2-1
ii  libboost-locale1.67.0   1.67.0-13
ii  libc6   2.29-2
ii  libcairo2   1.16.0-4
ii  libclucene-contribs1v5  2.3.3.4+dfsg-1+b1
ii  libclucene-core1v5  2.3.3.4+dfsg-1+b1
ii  libcmis-0.5-5v5 0.5.2-1
ii  libcups22.3.0-3
ii  libcurl3-gnutls 7.66.0-1
ii  libdbus-1-3 1.12.16-1
ii  libdconf1   0.34.0-1
ii  libeot0 0.01-5+b1
ii  libepoxy0   1.5.3-0.1
ii  libexpat1   2.2.7-2
ii  libexttextcat-2.0-0 3.4.5-1
ii  libfontconfig1  2.13.1-2+b1
ii  libfreetype62.9.1-4
ii  libgcc1 1:9.2.1-8
ii  libglib2.0-02.60.6-2
ii  libgpgmepp6 1.13.1-1
ii  libgraphite2-3  1.3.13-8
ii  libgstreamer-plugins-base1.0-0  1.14.4-2
ii  libgstreamer1.0-0   1.16.1-1
ii  libharfbuzz-icu02.6.1-3
ii  libharfbuzz0b   2.6.1-3
ii  libhunspell-1.7-0   1.7.0-2+b1
ii  libhyphen0  2.8.8-7
ii  libice6 2:1.0.9-2
ii  libicu6363.2-2
ii  libjpeg62-turbo 1:1.5.2-2+b1
ii  liblcms2-2  2.9-3+b1
ii  libldap-2.4-2   2.4.48+dfsg-1
ii  libmythes-1.2-0 2:1.2.4-3+b1
ii  libneon27-gnutls0.30.2-3
ii  libnspr42:4.21-2
ii  libnss3 2:3.45-1
ii  libnumbertext-1.0-0 1.0.5-3
ii  liborcus-0.14-0 0.14.1-6
ii  libpng16-16 1.6.37-1
ii  libpoppler820.71.0-5+b1
ii  librdf0 1.0.17-1.1+b1
ii  libreoffice-common  1:6.3.2-1
ii  librevenge-0.0-00.0.4-6+b1
ii  libsm6  2:1.2.3-1
ii  libstdc++6  9.2.1-8
ii  libx11-62:1.6.8-1
ii  libxext6

Bug#931855: marked as done (rpc.rquotad takes 100% CPU)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:22 +
with message-id 
and subject line Bug#931855: fixed in quota 4.04-2+deb10u1
has caused the Debian Bug report #931855,
regarding rpc.rquotad takes 100% CPU
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.)


-- 
931855: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=931855
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: quota
Version: 4.05-1
Severity: normal

Dear Maintainer,


after upgrading to Buster rcp.rquotad takes 100% CPU.

It's probably the bug reported below:
https://sourceforge.net/p/linuxquota/feature-requests/16/
https://bugs.launchpad.net/ubuntu/+source/quota/+bug/1774431
https://bugzilla.redhat.com/show_bug.cgi?id=1575956

Upgrading to quota 4.05-1 (from SID) fixes the problem.


-- System Information:
Debian Release: 10.0
  APT prefers stable
  APT policy: (500, 'stable'), (400, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-5-amd64 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE=C (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages quota depends on:
ii  debconf [debconf-2.0]  1.5.71
ii  libc6  2.28-10
ii  libcom-err21.44.5-1
ii  libdbus-1-31.12.16-1
ii  libext2fs2 1.44.5-1
ii  libldap-2.4-2  2.4.47+dfsg-3
ii  libnl-3-2003.4.0-1
ii  libnl-genl-3-200   3.4.0-1
ii  libtirpc3  1.1.4-0.4
ii  libwrap0   7.6.q-28
ii  lsb-base   10.2019051400

quota recommends no packages.

Versions of packages quota suggests:
pn  libnet-ldap-perl
ii  postfix [mail-transport-agent]  3.4.5-1
ii  rpcbind 1.2.5-0.3

-- Configuration Files:
/etc/default/quota changed:
run_warnquota=
RPCRQUOTADOPTS="-p 32769"


-- debconf information:
  quota/cc_before:
  quota/group_message:
  quota/subject:
  quota/supportphone:
  quota/charset:
  quota/rquota_setquota:
* quota/run_warnquota: false
  quota/signature:
  quota/mailfrom:
  quota/group_signature:
  quota/message:
  quota/supportemail:
  quota/cc:
--- End Message ---
--- Begin Message ---
Source: quota
Source-Version: 4.04-2+deb10u1

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

Debian distribution maintenance software
pp.
Mark Hymers  (supplier of updated quota package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 11 Sep 2019 20:07:07 +0100
Source: quota
Architecture: source
Version: 4.04-2+deb10u1
Distribution: buster
Urgency: medium
Maintainer: Michael Meskes 
Changed-By: Mark Hymers 
Closes: 931855
Changes:
 quota (4.04-2+deb10u1) buster; urgency=medium
 .
   * With permission of maintainer, backport fix to stable to prevent
 rpc.rquotad spinning at 100% CPU.  Closes: #931855.
Checksums-Sha1:
 bf8a9a5474b9d4bcd2155d9b13131d6f8a451a2d 1871 quota_4.04-2+deb10u1.dsc
 a92302db8b0cc23aa0337e61410b24714f38d019 40452 
quota_4.04-2+deb10u1.debian.tar.xz
 507ce82ad921a9d4835b9fbd05c8cf30577582ee 7134 
quota_4.04-2+deb10u1_source.buildinfo
Checksums-Sha256:
 525a06d641c9ab27ae95d05d116ace5056ca78bf0e5018f6ab6962c0763331b0 1871 
quota_4.04-2+deb10u1.dsc
 508098f991901dbac4ff105c50f5837391ecbba4666b526bc9a370d72b0d49c3 40452 
quota_4.04-2+deb10u1.debian.tar.xz
 36b0e541bd61dc18e3a458e87486517e56312b6bed2a3e4b14eafb687321075c 7134 
quota_4.04-2+deb10u1_source.buildinfo
Files:
 e070fa3febdd2810243dcae9febdc391 1871 admin optional quota_4.04-2+deb10u1.dsc
 4073cfd8aeb002ea8dbec39b72de7de3 40452 admin optional 
quota_4.04-2+deb10u1.debian.tar.xz
 af2fcb74759ac13154600d3f465892e4 7134 admin optional 
quota_4.04-2+deb10u1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEMJkRvqlm0GEwUwRXEbTl/xWw/YIFAl2hvAAACgkQEbTl/xWw
/YKEiBAAgDoMZCkxcxb0r3+kH48fCPy8HIGeX/bYv1FX9aMYQDG+3EmzITGFsifT
Uav/CnCAcw1r9/NB1brTEFCMiOAHmEWwJ9YeC8ez1vO97lxe+uqb2gqHc3VLFIM8
HfTZp56yTBbSVNUc8i/IfZ7EvunQ7JJJz/FGtUGNT9gMgfWO3c/dW2aa0w4fQfhZ

Bug#933163: marked as done (cyrus-imapd: Data loss possible when upgrading to buster)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:08 +
with message-id 
and subject line Bug#933163: fixed in cyrus-imapd 3.0.8-6+deb10u1
has caused the Debian Bug report #933163,
regarding cyrus-imapd: Data loss possible when upgrading to buster
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.)


-- 
933163: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=933163
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: cyrus-imapd
Version: 3.0.8-6
Severity: grave
Tags: upstream

Dear Maintainer,

After upgrading a cyrus-imapd system from 2.4.17 (jessie-era) to 3.0.8 (buster),
I discovered many missing messages.  It appears that index records with MODSEQ 
set
to zero (e.g., records for messages which predated the addition of the MODSEQ 
field)
are being ignored.  The data is still there, but not served to IMAP clients.
Unfortunately, if the 3.0.8 cyrus "reconstruct" is executed to naively try to 
fix
the missing messages, those index records (and the metadata they contain, e.g.,
seen flags) are lost for good!  I tagged this report as "grave" because of the
potential for irreversible data loss.

There may be a one-line fix for this; I have filed an upstream bug report with 
more
details:

https://github.com/cyrusimap/cyrus-imapd/issues/2839

Fortunately, I have backups of the original cyrus.index files and didn't 
permanently
lose any state, but I don't know of any way to safely upgrade to v3.x.x until 
this
issue is fixed.

-m

-- System Information:
Debian Release: 10.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-5-amd64 (SMP w/2 CPU cores)
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

Versions of packages cyrus-imapd depends on:
ii  cyrus-common  3.0.8-6
ii  dpkg  1.19.7
ii  libc6 2.28-10
ii  libcom-err2   1.44.5-1
ii  libsasl2-22.1.27+dfsg-1
ii  libssl1.1 1.1.1c-1
ii  libwrap0  7.6.q-28
ii  zlib1g1:1.2.11.dfsg-1

cyrus-imapd recommends no packages.

cyrus-imapd suggests no packages.

-- Configuration Files:
/etc/pam.d/imap changed [not included]

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: cyrus-imapd
Source-Version: 3.0.8-6+deb10u1

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

Debian distribution maintenance software
pp.
Xavier Guimard  (supplier of updated cyrus-imapd 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: Wed, 09 Oct 2019 22:38:07 +0200
Source: cyrus-imapd
Architecture: source
Version: 3.0.8-6+deb10u1
Distribution: buster
Urgency: medium
Maintainer: Debian Cyrus Team 
Changed-By: Xavier Guimard 
Closes: 933163
Changes:
 cyrus-imapd (3.0.8-6+deb10u1) buster; urgency=medium
 .
   * Add patch to fix data loss on upgrade from versions ≤ 3.0.0
 (Closes: #933163)
Checksums-Sha1: 
 eee2d59d23825ee71f1477a15222e2d6bcab8c82 3157 cyrus-imapd_3.0.8-6+deb10u1.dsc
 8840295493f852b67b5a43b55c6ddbae5c9e4394 92656 
cyrus-imapd_3.0.8-6+deb10u1.debian.tar.xz
Checksums-Sha256: 
 721162a79c90c30c83cf47b2b9b3108e90d26b7cc615c37bcc5fcf36da8679f3 3157 
cyrus-imapd_3.0.8-6+deb10u1.dsc
 22b2d09a61d6b3094cd88d69154c01054ca93989f5fda3f21240207fa8fc0d12 92656 
cyrus-imapd_3.0.8-6+deb10u1.debian.tar.xz
Files: 
 ac66f5f95ec2c76cf0dd131ee39215d7 3157 mail optional 
cyrus-imapd_3.0.8-6+deb10u1.dsc
 b789355c52e3c74e2212f827b44d696e 92656 mail optional 
cyrus-imapd_3.0.8-6+deb10u1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIyBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAl2hed8ACgkQ9tdMp8mZ
7umKmQ/2PuCXjT84Dk67hkPqxzQRh9hC8KJ/DC64Pp3l91A54baRMOV8eE/AaNvv
XRloTd/eEaQtGqG9a82huuGioBU1Qi+7ZoEFTfv9QCuXHCicBQiABjJHQzHyGB4J
hbRosB/BNdOcIi+78B8ZqHBm0TYdEpCQka1xBmN04gvF5uqDasCTxOU8OVa9iE6H
KdBdiS/QJ9GJjo1zDScH9WOS8Nhhy3XblahXrjoD6ii25kOYt2d+UwuWJd8+ET9v
MvspBray1z1IUWQDxHZR84bY92hmj8n6ZM2+U3zPCZzOrsmXZgUbhXgJjgQJLnJI

Bug#935724: marked as done (aegisub: Aegisub crashes immediately after opening the context menu)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:08 +
with message-id 
and subject line Bug#935724: fixed in aegisub 3.2.2+dfsg-4+deb10u1
has caused the Debian Bug report #935724,
regarding aegisub: Aegisub crashes immediately after opening the context menu
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.)


-- 
935724: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=935724
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: aegisub
Version: 3.2.2+dfsg-4
Severity: important

I hit a similar problem in another distribution. I believe that this is related
to the spell checking code (list available languages).
The same error occurs in Ubuntu 19.04. It should be mention that this bug
doesn't affect Aegisub in Ubuntu 16.04 LTS.

Steps to reproduce:
1. Run aegisub-3.2
2. Disable update checker if needed (first run only)
3. Press the context menu key

I suspect these components as the cause of the error:
a. libstdc++: It may be a problem with Dual ABI.
However, it should also affect package in Ubuntu 16.04 LTS, but it doesn't.
https://wiki.debian.org/GCC5
https://gcc.gnu.org/onlinedocs/gcc-5.2.0/libstdc++/manual/manual/using_dual_abi.html

b. GCC: Maybe this is caused by aggressive GCC 8 optimizations.
Maybe this is about some hardening flags (-D_GLIBCXX_ASSERTIONS)?

c. Boost:
Aegisub may be not 100% compatible with the latest Boost. TUV doesn't even
support Boost 1.69 OOTB. I believe that they are still using Boost 1.58.

gdb output:
> Thread 1 "aegisub-3.2" received signal SIGSEGV, Segmentation fault.
> 0x55981c6b in SubsTextEditCtrl::OnContextMenu (this=0x5643f400,
> event=...) at /usr/include/c++/8/bits/unique_ptr.h:342
> warning: Source file is more recent than executable.
> 342 get() const noexcept

I don't use Debian on a daily basis. I used LiveDVD (debian-
live-10.0.0-amd64-mate.iso).



-- System Information:
Debian Release: 10.0
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable-debug'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-5-amd64 (SMP w/4 CPU cores)
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 /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages aegisub depends on:
ii  libasound2 1.1.8-1
ii  libass91:0.14.0-2
ii  libboost-chrono1.67.0  1.67.0-13
ii  libboost-filesystem1.67.0  1.67.0-13
ii  libboost-locale1.67.0  1.67.0-13
ii  libboost-regex1.67.0   1.67.0-13
ii  libboost-system1.67.0  1.67.0-13
ii  libboost-thread1.67.0  1.67.0-13
ii  libc6  2.28-10
ii  libffms2-4 2.23-4
ii  libfontconfig1 2.13.1-2
ii  libgcc11:8.3.0-6
ii  libgl1 1.1.0-1
ii  libicu63   63.1-6
ii  libluajit-5.1-22.1.0~beta3+dfsg-5.1
ii  libstdc++6 8.3.0-6
ii  libwxbase3.0-0v5   3.0.4+dfsg-8
ii  libwxgtk3.0-0v53.0.4+dfsg-8
ii  zlib1g 1:1.2.11.dfsg-1

aegisub recommends no packages.

Versions of packages aegisub suggests:
pn  aegisub-l10n  

-- no debconf information
Oops, Aegisub has crashed!

An attempt has been made to save a copy of your file to:

/home/user/.aegisub/recovered/Untitled.2019-08-25-16-05-16.ass

Aegisub will now close.
--- End Message ---
--- Begin Message ---
Source: aegisub
Source-Version: 3.2.2+dfsg-4+deb10u1

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

Debian distribution maintenance software
pp.
Aniol Marti  (supplier of updated aegisub 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: Wed, 02 Oct 2019 09:29:42 +
Source: aegisub
Architecture: source
Version: 3.2.2+dfsg-4+deb10u1
Distribution: buster
Urgency: medium
Maintainer: Aniol Marti 
Changed-By: Aniol Marti 
Closes: 935724
Changes:
 aegisub (3.2.2+dfsg-4+deb10u1) buster; urgency=medium
 .
   * Add libhunspell-dev to 

Bug#910901: marked as done (plasma-applet-redshift-control: Mouse wheel only reduces color temperature, in either direction)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:21 +
with message-id 
and subject line Bug#910901: fixed in plasma-applet-redshift-control 
1.0.18-2+deb10u1
has caused the Debian Bug report #910901,
regarding plasma-applet-redshift-control: Mouse wheel only reduces color 
temperature, in either direction
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.)


-- 
910901: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=910901
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: plasma-applet-redshift-control
Version: 1.0.18-2
Severity: normal
Tags: patch

Since redshift 1.12, the interface for one-shot changes was modified, causing
all mouse wheel operations to only lower the color temperature and gamma.  The
fix is simply to add the new "-P" command line option.

Other reports, with one-liner patches:
https://bugs.kde.org/show_bug.cgi?id=395641
https://bugs.archlinux.org/task/59084



-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.18.0-2-amd64 (SMP w/12 CPU cores)
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

Versions of packages plasma-applet-redshift-control depends on:
ii  fonts-font-awesome  5.0.10+really4.7.0~dfsg-1
ii  redshift1.12-2

plasma-applet-redshift-control recommends no packages.

plasma-applet-redshift-control suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: plasma-applet-redshift-control
Source-Version: 1.0.18-2+deb10u1

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

Debian distribution maintenance software
pp.
Didier Raboud  (supplier of updated 
plasma-applet-redshift-control package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 01 Oct 2019 09:26:56 +0200
Source: plasma-applet-redshift-control
Architecture: source
Version: 1.0.18-2+deb10u1
Distribution: buster
Urgency: medium
Maintainer: Debian KDE Extras Team 
Changed-By: Didier Raboud 
Closes: 910901
Changes:
 plasma-applet-redshift-control (1.0.18-2+deb10u1) buster; urgency=medium
 .
   * Import upstream-submitted patch to fix manual mode for redshift
 >= 1.12 (Closes: #910901)
Checksums-Sha1:
 33a8d2a1415594bf7c91272536d176bb4819aecd 2281 
plasma-applet-redshift-control_1.0.18-2+deb10u1.dsc
 10d873519f6d926253bc6cba26bde361f319e13b 4732 
plasma-applet-redshift-control_1.0.18-2+deb10u1.debian.tar.xz
Checksums-Sha256:
 9371b73a77a819d5f428c7c3aa4cef1fd93bf03736bde68e1bef0042325ab1f4 2281 
plasma-applet-redshift-control_1.0.18-2+deb10u1.dsc
 ba11fd132c06fc285e7e1a5e04160bf1a44cdbdc22dc7c862789f632186d4a9b 4732 
plasma-applet-redshift-control_1.0.18-2+deb10u1.debian.tar.xz
Files:
 d0a08c8e6cd1dc9fbe18c257006fe726 2281 kde optional 
plasma-applet-redshift-control_1.0.18-2+deb10u1.dsc
 f262b2c71e323b86a8edffcdc652142b 4732 kde optional 
plasma-applet-redshift-control_1.0.18-2+deb10u1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQGzBAEBCgAdFiEEe+WPIRpjNw1/GSB7i8+nHsoWNFUFAl2UR7cACgkQi8+nHsoW
NFVHpQv+IivKpzfk5bQZmZD2xIsGyOEUNmIsZD8CBWDbtkvgibtEh5K9drAOAFhP
rDvusZB0HrIo63ZO7Z0u4qR/Pz0D5kffj9jzYXiJddcUbnnbQJZXpNrt0XmozVY7
j6a3Ua8ZKg5yCMYRpAyaJ9V7Lm0d2sB731+bt8JLJObpCITyF4GroWA4udyVys5j
yys7EST7OwzP94xMl0pwa942BzQ6ngtVV7aIKLZhdkAzIEb5SZNhb7sVeAN4yt6o
dcs/XYEZ5PvDfC/V/F1Nf9glX+0VWELZUb7fni5h9wuvcyKOnH0dvUFRWMVgmjUx
k1A1mLQjYkXv4q6jQxzwPFl72SOme18c/Zeyf+IyferEXyQ1BGDmefMu4mFGGPK0
xsvS7UKxUxdgb6xHqnBAntOsf3FYZWFECuhRbWaY7Yz8eRTpLLGP5NdjLsayTdyZ
8M6BxM9KKeH2TwGVwT/Pyoi/pR1jtdBE4Em0XLut98YB/+dF16qwAcJHJdGDDhm7
aXxI4wks
=eZ6P
-END PGP SIGNATURE End Message ---


Bug#941189: marked as done (node-set-value: CVE-2019-10747)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:10 +
with message-id 
and subject line Bug#941189: fixed in node-set-value 0.4.0-1+deb10u1
has caused the Debian Bug report #941189,
regarding node-set-value: CVE-2019-10747
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.)


-- 
941189: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941189
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: node-set-value
Version: 0.4.0-1
Severity: important
Tags: security upstream
Control: found -1 3.0.0-1

Hi,

The following vulnerability was published for node-set-value.

CVE-2019-10747[0]:
| set-value is vulnerable to Prototype Pollution in versions lower than
| 3.0.1. The function mixin-deep could be tricked into adding or
| modifying properties of Object.prototype using any of the constructor,
| prototype and _proto_ payloads.


If you fix the vulnerability please also make sure to include the
CVE (Common Vulnerabilities & Exposures) id in your changelog entry.

For further information see:

[0] https://security-tracker.debian.org/tracker/CVE-2019-10747
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-10747
[1] https://snyk.io/vuln/SNYK-JS-SETVALUE-450213

Regards,
Salvatore
--- End Message ---
--- Begin Message ---
Source: node-set-value
Source-Version: 0.4.0-1+deb10u1

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

Debian distribution maintenance software
pp.
Xavier Guimard  (supplier of updated node-set-value 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: Thu, 26 Sep 2019 07:27:54 +0200
Source: node-set-value
Architecture: source
Version: 0.4.0-1+deb10u1
Distribution: buster
Urgency: medium
Maintainer: Debian Javascript Maintainers 

Changed-By: Xavier Guimard 
Closes: 941189
Changes:
 node-set-value (0.4.0-1+deb10u1) buster; urgency=medium
 .
   * Team upload
   * Fix prototype pollution (Closes: #941189, CVE-2019-10747)
   * Add test for CVE-2019-10747
Checksums-Sha1: 
 9d2c5bf927437989e824bf1aef7a67098cb30ff5 2220 
node-set-value_0.4.0-1+deb10u1.dsc
 f4dfe860088e6ccb8f374ec2610b07473e97ebe5 5619 node-set-value_0.4.0.orig.tar.gz
 40aea7e0635627fa13053405a7698ca08a026f8b 2796 
node-set-value_0.4.0-1+deb10u1.debian.tar.xz
Checksums-Sha256: 
 24bad46a0536b10e4166b98b7d76c629fbed2fb726616f0343cff52abd3cdb82 2220 
node-set-value_0.4.0-1+deb10u1.dsc
 70f52e5305e17f2a374efd3aa6eadb2d5ce4cb283350a80c334c7ec493c89466 5619 
node-set-value_0.4.0.orig.tar.gz
 51aafcc4261fc892d1b705926b062e96a0636b9f747002aa84a138977a1cd34e 2796 
node-set-value_0.4.0-1+deb10u1.debian.tar.xz
Files: 
 93eebe8ab3d7e59f7d25cd13ecba3c8f 2220 web optional 
node-set-value_0.4.0-1+deb10u1.dsc
 e7cfaa9e1b8eb02025fd56059c1cd10f 5619 web optional 
node-set-value_0.4.0.orig.tar.gz
 801b65977507fe45370098a75d4324f7 2796 web optional 
node-set-value_0.4.0-1+deb10u1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAl2UKw8ACgkQ9tdMp8mZ
7un86Q/6AovThGKnOujpba5AEvT4qd3Wy4OcC/fXcerWW4uswE3tbe/BZyArh6Zn
G8eSHpqmRQod5R0QrmEX/VljqD8tUQULtCWs1bPISb5vd+sSq1gJ6Jy4JNcokgpa
9+1RV7nmavUq+sEzyy6PzVCWfSHhCGoix5UOpeSNG4aZclM4GTPDiE4GZTUp9D9q
xYSzz8am9y2Rpq1ykulnyxUnJ++30EhxntmGMKau0YP5zFAT9KzbWdWfd1RXvLgW
xDdFmWEKAKn2aH9B449ygnIEhPKbF75YNUYjDd92jfml3Jig+Lgk2JtPJ8O4FmyY
rgO9yQ3P7onsE36V8gkNKddFNdf6b9unMZwB+9c2G5EYsp/7lhuQcRQJ1TOY4sPX
C6/Mz55/omVqTjXv7XrnDlRnNjzp5alO02Vc7FqWhUuLXpgRyvbqp9V5rpHjmOI/
7JGL2wCFK1Unao+97NXv+H/+xyrRyZ3ZPwO6oN8qnX/tck2aQHqzD0/KkXWgBZxH
RPgYOeanf4CNRVLHtrLTqCNVgvCO2Qad1f8HdHsvCspD6PsffZOuprp/bLa7fTYC
aHbNGdEcn/O5S1gzRN/q3JJVvZysHxAZqiIcU6fmhy+wD/sjbbVipqRysAPvXTyQ
AhnkldhGf16l1nhM5BXeZC/PCHq04uxiKm+qtze7eVpw6jkO9p0=
=5WVs
-END PGP SIGNATURE End Message ---


Bug#934519: marked as done (fence-agents: FTBFS in stretch/buster/sid (ImportError: No module named pywsman))

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:09 +
with message-id 
and subject line Bug#934519: fixed in fence-agents 4.3.3-2+deb10u1
has caused the Debian Bug report #934519,
regarding fence-agents: FTBFS in stretch/buster/sid (ImportError: No module 
named pywsman)
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.)


-- 
934519: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=934519
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:fence-agents
Version: 4.0.25-1
Severity: serious
Tags: ftbfs patch

Dear maintainer:

I tried to build this package in stretch but it failed:


[...]
 debian/rules build-arch
dh build-arch --with python2 --with autoreconf
   dh_testdir -a
   dh_update_autotools_config -a
   debian/rules override_dh_autoreconf
make[1]: Entering directory '/<>'
dh_autoreconf ./autogen.sh
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal -I make -I m4
configure.ac:70: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in 
body
../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
../../lib/autoconf/general.m4:2601: _AC_COMPILE_IFELSE is expanded from...
../../lib/autoconf/general.m4:2617: AC_COMPILE_IFELSE is expanded from...

[... snipped ...]

xsltproc ../../fence/agents/lib/fence2wiki.xsl apc_snmp/.fence_apc_snmp.8.tmp | 
grep -v ' apc_snmp/fence_apc_snmp.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python ifmib/fence_ifmib -o metadata > 
ifmib/.fence_ifmib.8.tmp && \
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
ifmib/.fence_ifmib.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl ifmib/.fence_ifmib.8.tmp > 
ifmib/fence_ifmib.8
ifmib/.fence_ifmib.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl ifmib/.fence_ifmib.8.tmp | grep 
-v ' ifmib/fence_ifmib.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python ibmblade/fence_ibmblade -o metadata > 
ibmblade/.fence_ibmblade.8.tmp && \
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
ibmblade/.fence_ibmblade.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl ibmblade/.fence_ibmblade.8.tmp > 
ibmblade/fence_ibmblade.8
ibmblade/.fence_ibmblade.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl ibmblade/.fence_ibmblade.8.tmp | 
grep -v ' ibmblade/fence_ibmblade.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python bladecenter/fence_bladecenter -o metadata > 
bladecenter/.fence_bladecenter.8.tmp && \
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
bladecenter/.fence_bladecenter.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl 
bladecenter/.fence_bladecenter.8.tmp > bladecenter/fence_bladecenter.8
bladecenter/.fence_bladecenter.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl 
bladecenter/.fence_bladecenter.8.tmp | grep -v ' 
bladecenter/fence_bladecenter.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python rhevm/fence_rhevm -o metadata > 
rhevm/.fence_rhevm.8.tmp && \
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
rhevm/.fence_rhevm.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl rhevm/.fence_rhevm.8.tmp > 
rhevm/fence_rhevm.8
rhevm/.fence_rhevm.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl rhevm/.fence_rhevm.8.tmp | grep 
-v ' rhevm/fence_rhevm.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python ilo/fence_ilo -o metadata > ilo/.fence_ilo.8.tmp && \
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
ilo/.fence_ilo.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl ilo/.fence_ilo.8.tmp > 
ilo/fence_ilo.8
ilo/.fence_ilo.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl ilo/.fence_ilo.8.tmp | grep -v 
' ilo/fence_ilo.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python alom/fence_alom -o metadata > alom/.fence_alom.8.tmp && 
\
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
alom/.fence_alom.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl alom/.fence_alom.8.tmp > 
alom/fence_alom.8
alom/.fence_alom.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl alom/.fence_alom.8.tmp | 

Bug#941987: marked as done (libssl1.1: Ciphers AES-*-CBC-HMAC-* are missing in libssl 1.1.1d, but available in 1.1.1c)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:11 +
with message-id 
and subject line Bug#941987: fixed in openssl 1.1.1d-0+deb10u2
has caused the Debian Bug report #941987,
regarding libssl1.1: Ciphers AES-*-CBC-HMAC-* are missing in libssl 1.1.1d, but 
available in 1.1.1c
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.)


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

Package: libssl1.1
Version: 1.1.1c-1+0~20190710.13+debian10~1.gbp359e02
Severity: normal

Dear Maintainer,

   * What led up to the situation?
   Upgraded package libssl1.1 from 1.1.1c to 1.1.1d

   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   Downgraded to 1.1.1c

   * What was the outcome of this action?
   4 more ciphers were back



-- System Information:
Debian Release: 10.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-6-amd64 (SMP w/16 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:en (charmap=UTF-8)

Shell: /bin/sh linked to /usr/bin/bash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages libssl1.1 depends on:
ii  debconf [debconf-2.0]  1.5.71
ii  libc6  2.28-10

libssl1.1 recommends no packages.

libssl1.1 suggests no packages.

-- debconf information excluded


Signature email
--- End Message ---
--- Begin Message ---
Source: openssl
Source-Version: 1.1.1d-0+deb10u2

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

Debian distribution maintenance software
pp.
Sebastian Andrzej Siewior  (supplier of updated 
openssl 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, 12 Oct 2019 21:56:43 +0200
Source: openssl
Architecture: source
Version: 1.1.1d-0+deb10u2
Distribution: buster-security
Urgency: medium
Maintainer: Debian OpenSSL Team 
Changed-By: Sebastian Andrzej Siewior 
Closes: 941987
Changes:
 openssl (1.1.1d-0+deb10u2) buster-security; urgency=medium
 .
   * Reenable AES-CBC-HMAC-SHA ciphers (Closes: #941987).
Checksums-Sha1:
 e80eadde9a37c9e1e30bf2ff1059f372521c7ff3 2472 openssl_1.1.1d-0+deb10u2.dsc
 bce8a3b76ae1561329362edd4de721e21224d639 84848 
openssl_1.1.1d-0+deb10u2.debian.tar.xz
Checksums-Sha256:
 cfeb4085016d29b14c2e0b1c204fd95a6fe20be3c12b669b8b0d6553eb2108a9 2472 
openssl_1.1.1d-0+deb10u2.dsc
 418f08b2182c54bad5f049d8b17433055e146c84c793794ebca3d74231b53389 84848 
openssl_1.1.1d-0+deb10u2.debian.tar.xz
Files:
 fd22615df0ab72a605e9c6af4d98e346 2472 utils optional 
openssl_1.1.1d-0+deb10u2.dsc
 0beb92d26e33b46c2b2ee7f8d359f3b6 84848 utils optional 
openssl_1.1.1d-0+deb10u2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQGzBAEBCgAdFiEEV4kucFIzBRM39v3RBWQfF1cS+lsFAl2iM0YACgkQBWQfF1cS
+luUkgv/XPrDTDGnCEhwNDUdRlTqHm1Sn2yre879VgG90Tblon2yNVwAgIYuw1Tf
GOkBdMB6YCp0XaqS/NXrF1Xh9x71ZA+GsoVaac/ram/CalzVn6uFaSJZp+TtSvSN
w+2oiBx3sG223hUeTxsM2SF7Uf5cn8EINKcQZfn2jp///qqGEEwAL7TBEJ7C7g7e
Jf91HFWGz7zDvrGCsn3BmWynn1p9XydVx9wOSmpnjgpRdOs5FmAEjHtbXDfNTiOj
K8udRHzX3HQ4NODdn4z/SzVpXEUmtmFfi34gMBqMYWoDf91DOaKPnqpWYVOGq71g
kDNb1Y8GwVgLBVsnxR1eIy9LgxvK/FZ6POkRI8DEk4PoBaibbxQgByNyMWyRsTK4
ZtIJasIPSTSL0gjbS+3Ug/c0qGI7Xm3SDF9AxBVorkYkhjLMKkrRrB9R8EqA+j7o
WhmMeJS1/6MKfwylZzWBXl9hQ8BD3Jc4eG2VgzgSPBs4L5HAmjhmeMPCZbQ8TRiM
7EOSwop1
=tBxR
-END PGP SIGNATURE End Message ---


Bug#935492: marked as done (rpcbind: Broadcast requests broken)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:23 +
with message-id 
and subject line Bug#939877: fixed in rpcbind 1.2.5-0.3+deb10u1
has caused the Debian Bug report #939877,
regarding rpcbind: Broadcast requests broken
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.)


-- 
939877: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=939877
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rpcbind
Version: 1.2.5-0.3
Severity: important

I upgraded my NIS server to buster and found that it stopped
answering requests to NIS clients.  It turns out that rpcbind
no longer responds to broadcast requests coming in on port 111.

This is due to an upstream change:

https://sourceforge.net/p/libtirpc/mailman/message/36377522/

Fortunately it is easy to fix it by enabling it at build time
with --enable-rmtcalls.

Could you please do that and also inform upstream that people
do use this feature?

Thanks,
--
Email: Herbert Xu 
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
--- End Message ---
--- Begin Message ---
Source: rpcbind
Source-Version: 1.2.5-0.3+deb10u1

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

Debian distribution maintenance software
pp.
Josue Ortega  (supplier of updated rpcbind 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: Mon, 09 Sep 2019 12:19:21 -0600
Source: rpcbind
Architecture: source
Version: 1.2.5-0.3+deb10u1
Distribution: buster
Urgency: medium
Maintainer: Josue Ortega 
Changed-By: Josue Ortega 
Closes: 939877
Changes:
 rpcbind (1.2.5-0.3+deb10u1) buster; urgency=medium
 .
   * Add 00-rmt-calls.patch (Closes: #939877):
 + Add command line option to enable remote calls at runtime
 + Refresh debian/patches
   * debian/control: Update maintainer information
   * Add debian/README.debian explaining remote calls activation for
 Debian systems
   * Add debian/NEWS
Checksums-Sha1:
 e854744d050d76f3f8fbdd74eb92a251d8265995 1851 rpcbind_1.2.5-0.3+deb10u1.dsc
 99e7676ac0df6befdf4408f6bac2b029e355c970 11240 
rpcbind_1.2.5-0.3+deb10u1.debian.tar.xz
 dedc3c21829083670a1f47b6381b23b82c41f8b7 6062 
rpcbind_1.2.5-0.3+deb10u1_amd64.buildinfo
Checksums-Sha256:
 c881586a2b2e56c4985fe1f9a33f17271e43360e2ef8dc5def3f6e725432cf82 1851 
rpcbind_1.2.5-0.3+deb10u1.dsc
 daa8e74c875a6caa3824fe90e7bcfa8472f1aae65dfe073789a681e15eb82487 11240 
rpcbind_1.2.5-0.3+deb10u1.debian.tar.xz
 41e382be8e6bbf4215f5081b4af13bb68bd96c62bd4de4faf5af0bfdc83832cc 6062 
rpcbind_1.2.5-0.3+deb10u1_amd64.buildinfo
Files:
 254f5874fbcb8304ac7de7302e97c303 1851 net optional 
rpcbind_1.2.5-0.3+deb10u1.dsc
 bf1e40e72af2954b09596f3979480d6f 11240 net optional 
rpcbind_1.2.5-0.3+deb10u1.debian.tar.xz
 5578d189d15034b7198127677dddebda 6062 net optional 
rpcbind_1.2.5-0.3+deb10u1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEdzOzKNJ5X1viMlrdAVCdXKtK/T8FAl2h6OURHGpvc3VlQGRl
Ymlhbi5vcmcACgkQAVCdXKtK/T+BDQ/8C/AN6tfzuIqOuuy1986R1qRtBn0lg3j+
jzreJ31qIZLyCBuNrEhAXJAB4hZBzbg4N7YlgOobQP6RxTjVMOHbrokMdwXjxH+t
rWfigfu5hYJMtak7QMLgFHH6xJjxTKMDrvFlEkMtYg5jvuaQTNyKm4IOkkeIzbRc
0cJoTFZP++C2A1s5rFJ86XGf0FjZe8ijGeVMKU12xqPBr/j6bBDgJ1inYsCbozNZ
Vwa5xoyh/Jb5SEJfnIsJY02srfF9646J5uiO9em44j4eyI9dXYY4nay9Mt0XxFtG
dh/cgIxu045TVRgZSfgkg9f1U/QfHGZaoOSk4YgrMFqW/vQDE6H81OusxuHFA85r
L1hDK87dczOQNyPcU6i0b9dnGoF8lhYhJePwe9xFzHafqzd8oHyDx1xMSjhwspuq
uEBmGujQhimzq6zGfe8AgeGMaCdAxXn9mwd/flMI0UuA7SdyhMn8RLaECS8qM8dz
kaaJ1zxyZFO2eas19jSBakRy6vOmvhC0yYnpInIpsX4Nl4AyxQb42tRpAwKZ7YkW
rPcepBjQEiZjnASzT3dQeSjvQHlR3sZoSIFQ7xV3oYUY+zQCY4TfFucJLRL2FS47
R/dyq+OW/GzWbw7RyHo/MiuW9lBsfoJDT7ymJat3lYEDrygU3t6rFTgzKWuUw+rj
iNuDZlzwVbk=
=xlGy
-END PGP SIGNATURE End Message ---


Bug#939877: marked as done (rpcbind: Does not receive any broadcast queries resulting in complete breakage of NIS)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:23 +
with message-id 
and subject line Bug#939877: fixed in rpcbind 1.2.5-0.3+deb10u1
has caused the Debian Bug report #939877,
regarding rpcbind: Does not receive any broadcast queries resulting in complete 
breakage of NIS
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.)


-- 
939877: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=939877
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rpcbind
Version: 1.2.5-0.3
Severity: grave
Justification: renders package unusable

Dear Maintainer,

After an upgrade to buster rpcbind no longer receives any broadcast queries. 
Unicast works.

This is verified via strace - it has occasional netlink messages, but any of 
the broadcast
traffic to port 111 never hit it.

As a result clients can no longer find a nis server which has been upgraded to 
buster. 

-- System Information:
Debian Release: 10.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages rpcbind depends on:
ii  adduser  3.118
ii  libc62.28-10
ii  libsystemd0  241-7~deb10u1
ii  libtirpc31.1.4-0.4
ii  libwrap0 7.6.q-28
ii  lsb-base 10.2019051400

rpcbind recommends no packages.

rpcbind suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: rpcbind
Source-Version: 1.2.5-0.3+deb10u1

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

Debian distribution maintenance software
pp.
Josue Ortega  (supplier of updated rpcbind 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: Mon, 09 Sep 2019 12:19:21 -0600
Source: rpcbind
Architecture: source
Version: 1.2.5-0.3+deb10u1
Distribution: buster
Urgency: medium
Maintainer: Josue Ortega 
Changed-By: Josue Ortega 
Closes: 939877
Changes:
 rpcbind (1.2.5-0.3+deb10u1) buster; urgency=medium
 .
   * Add 00-rmt-calls.patch (Closes: #939877):
 + Add command line option to enable remote calls at runtime
 + Refresh debian/patches
   * debian/control: Update maintainer information
   * Add debian/README.debian explaining remote calls activation for
 Debian systems
   * Add debian/NEWS
Checksums-Sha1:
 e854744d050d76f3f8fbdd74eb92a251d8265995 1851 rpcbind_1.2.5-0.3+deb10u1.dsc
 99e7676ac0df6befdf4408f6bac2b029e355c970 11240 
rpcbind_1.2.5-0.3+deb10u1.debian.tar.xz
 dedc3c21829083670a1f47b6381b23b82c41f8b7 6062 
rpcbind_1.2.5-0.3+deb10u1_amd64.buildinfo
Checksums-Sha256:
 c881586a2b2e56c4985fe1f9a33f17271e43360e2ef8dc5def3f6e725432cf82 1851 
rpcbind_1.2.5-0.3+deb10u1.dsc
 daa8e74c875a6caa3824fe90e7bcfa8472f1aae65dfe073789a681e15eb82487 11240 
rpcbind_1.2.5-0.3+deb10u1.debian.tar.xz
 41e382be8e6bbf4215f5081b4af13bb68bd96c62bd4de4faf5af0bfdc83832cc 6062 
rpcbind_1.2.5-0.3+deb10u1_amd64.buildinfo
Files:
 254f5874fbcb8304ac7de7302e97c303 1851 net optional 
rpcbind_1.2.5-0.3+deb10u1.dsc
 bf1e40e72af2954b09596f3979480d6f 11240 net optional 
rpcbind_1.2.5-0.3+deb10u1.debian.tar.xz
 5578d189d15034b7198127677dddebda 6062 net optional 
rpcbind_1.2.5-0.3+deb10u1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEdzOzKNJ5X1viMlrdAVCdXKtK/T8FAl2h6OURHGpvc3VlQGRl
Ymlhbi5vcmcACgkQAVCdXKtK/T+BDQ/8C/AN6tfzuIqOuuy1986R1qRtBn0lg3j+
jzreJ31qIZLyCBuNrEhAXJAB4hZBzbg4N7YlgOobQP6RxTjVMOHbrokMdwXjxH+t
rWfigfu5hYJMtak7QMLgFHH6xJjxTKMDrvFlEkMtYg5jvuaQTNyKm4IOkkeIzbRc
0cJoTFZP++C2A1s5rFJ86XGf0FjZe8ijGeVMKU12xqPBr/j6bBDgJ1inYsCbozNZ
Vwa5xoyh/Jb5SEJfnIsJY02srfF9646J5uiO9em44j4eyI9dXYY4nay9Mt0XxFtG
dh/cgIxu045TVRgZSfgkg9f1U/QfHGZaoOSk4YgrMFqW/vQDE6H81OusxuHFA85r
L1hDK87dczOQNyPcU6i0b9dnGoF8lhYhJePwe9xFzHafqzd8oHyDx1xMSjhwspuq
uEBmGujQhimzq6zGfe8AgeGMaCdAxXn9mwd/flMI0UuA7SdyhMn8RLaECS8qM8dz

Bug#940547: marked as done (python-cryptography: Testsuite fails with OpenSSL 1.1.1d)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:22 +
with message-id 
and subject line Bug#940547: fixed in python-cryptography 2.6.1-3+deb10u1
has caused the Debian Bug report #940547,
regarding python-cryptography: Testsuite fails with OpenSSL 1.1.1d
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.)


-- 
940547: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=940547
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python-cryptography
Version: 2.6.1-3
Severity: serious

The upload of latest openssl 1.1.1d triggert three testsuite failures in
python-cryptography [0]

- _ test_buffer_protocol_alternate_modes[mode5] 
__

|mode = 
|backend = 
|
|@pytest.mark.parametrize(
|"mode",
|[
|modes.CBC(bytearray(b"\x00" * 16)),
|modes.CTR(bytearray(b"\x00" * 16)),
|modes.OFB(bytearray(b"\x00" * 16)),
|modes.CFB(bytearray(b"\x00" * 16)),
|modes.CFB8(bytearray(b"\x00" * 16)),
|modes.XTS(bytearray(b"\x00" * 16)),
|]
|)
|@pytest.mark.requires_backend_interface(interface=CipherBackend)
|def test_buffer_protocol_alternate_modes(mode, backend):
|data = bytearray(b"sixteen_byte_msg")
|cipher = base.Cipher(
|algorithms.AES(bytearray(b"\x00" * 32)), mode, backend
|)
|>   enc = cipher.encryptor()
|
|tests/hazmat/primitives/test_aes.py:495: 
|_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
_ 
|/usr/lib/python2.7/dist-packages/cryptography/hazmat/primitives/ciphers/base.py:121:
 in encryptor
|self.algorithm, self.mode
|/usr/lib/python2.7/dist-packages/cryptography/hazmat/backends/openssl/backend.py:295:
 in create_symmetric_encryption_ctx
|return _CipherContext(self, cipher, mode, _CipherContext._ENCRYPT)
|/usr/lib/python2.7/dist-packages/cryptography/hazmat/backends/openssl/ciphers.py:116:
 in __init__
|self._backend.openssl_assert(res != 0)
|/usr/lib/python2.7/dist-packages/cryptography/hazmat/backends/openssl/backend.py:125:
 in openssl_assert
|return binding._openssl_assert(self._lib, ok)

This is due to commit 2a5f63c9a61be ("Allow AES XTS decryption using duplicate
keys.").
https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2a5f63c9a61be

- _ TestDH.test_dh_parameters_supported 
__

|self = 
|backend = 
|
|def test_dh_parameters_supported(self, backend):
|assert backend.dh_parameters_supported(23, 5)
|>   assert not backend.dh_parameters_supported(23, 18)
|E   assert not True
|E+  where True = >(23, 18)
|E+where > = .dh_parameters_supported
|
|tests/hazmat/primitives/test_dh.py:161: AssertionError

This is due to commit ddd16c2fe988e ("Change DH parameters to generate the
order q subgroup instead of 2q").
https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ddd16c2fe988e

- _ TestECDSACertificate.test_load_ecdsa_no_named_curve 
__

|self = 
|backend = 
|
|def test_load_ecdsa_no_named_curve(self, backend):
|_skip_curve_unsupported(backend, ec.SECP256R1())
|cert = _load_cert(
|os.path.join("x509", "custom", "ec_no_named_curve.pem"),
|x509.load_pem_x509_certificate,
|backend
|)
|with pytest.raises(NotImplementedError):
|>   cert.public_key()
|E   Failed: DID NOT RAISE 
|
|tests/x509/test_x509.py:3722: Failed

This is due to commit 9a43a733801bd ("[ec] Match built-in curves on
EC_GROUP_new_from_ecparameters").
https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9a43a733801bd


The first two changes in OpenSSL have been made on purporse and I'm not
sure about the last one.
Could someone please comment?

[0] 
https://ci.debian.net/data/autopkgtest/testing/amd64/p/python-cryptography/2969575/log.gz

Sebastian
--- End Message ---
--- Begin Message ---
Source: python-cryptography
Source-Version: 2.6.1-3+deb10u1

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

Debian distribution maintenance software
pp.
Sebastian Andrzej Siewior  (supplier of updated 
python-cryptography package)

(This message 

Bug#941955: marked as done (memory leaks in open-vm-tools)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:11 +
with message-id 
and subject line Bug#941955: fixed in open-vm-tools 2:10.3.10-1+deb10u2
has caused the Debian Bug report #941955,
regarding memory leaks in open-vm-tools
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.)


-- 
941955: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941955
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: open-vm-tools
Version: 10.3.10-1

We have discovered a few memory leaks in open-vm-tools, related to the vix 
plugin. We have created a branch for 10.3.10 on github that includes fixes: 
https://github.com/vmware/open-vm-tools/tree/stable-10.3.10-vix-memory-leaks

Thanks,
Oliver



--- End Message ---
--- Begin Message ---
Source: open-vm-tools
Source-Version: 2:10.3.10-1+deb10u2

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

Debian distribution maintenance software
pp.
Bernd Zeimetz  (supplier of updated open-vm-tools package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 09 Oct 2019 14:18:48 +0200
Source: open-vm-tools
Architecture: source
Version: 2:10.3.10-1+deb10u2
Distribution: buster
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Closes: 941955
Changes:
 open-vm-tools (2:10.3.10-1+deb10u2) buster; urgency=medium
 .
   * [d512626] Fix memory leaks and error handling.
 From the upstream stable-10.3.10-vix-memory-leaks branch:
 commit 26b9edbeb79d1c67b9ae73a0c97c48999c1fb503
 Fix leaks in ListAliases and ListMappedAliases
 commit 7b874f37f970aab2adddb063a8363594f47abf70
 End VGAuth impersonation in the case of error.
 commit 015db4c06a8be65eb96cf62421e8b5366993452f
 Fix memory leaks in 'vix' tools plugin.
 Thanks to Oliver Kurth (Closes: #941955)
Checksums-Sha1:
 127afba950e69bab13f666c629a0e3113830e230 2358 
open-vm-tools_10.3.10-1+deb10u2.dsc
 3582f48a5e94a7256863ff68e418ef6c070f868a 30036 
open-vm-tools_10.3.10-1+deb10u2.debian.tar.xz
 64f3f695c8618e35ff64d1f72501865fb29eb781 16418 
open-vm-tools_10.3.10-1+deb10u2_source.buildinfo
Checksums-Sha256:
 b0de338a12bd51cc883447df9f21ac81abe84b13e74f453a606c5102b27b0cac 2358 
open-vm-tools_10.3.10-1+deb10u2.dsc
 088e3a8505e56f051dfb61c28754bbb3a7f335e6fc647195900f3e30f8948d82 30036 
open-vm-tools_10.3.10-1+deb10u2.debian.tar.xz
 91bedc37768d1cf1748a23070ec3f9068402452257d69ef63f43d623adde2592 16418 
open-vm-tools_10.3.10-1+deb10u2_source.buildinfo
Files:
 9121cdb8d5cba0eaa78e791dc372555f 2358 admin extra 
open-vm-tools_10.3.10-1+deb10u2.dsc
 8116615cd2a06d75730846c7a73fa915 30036 admin extra 
open-vm-tools_10.3.10-1+deb10u2.debian.tar.xz
 ab0173c62641400457bb9925ebe77d8f 16418 admin extra 
open-vm-tools_10.3.10-1+deb10u2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl2iLgwACgkQ6zYXGm/5
Q1/lWg/+MDLyDxMSqSjZKnKIKwW9OWYhdFTyNojoKA1upB45YfBOSLypECB+Y4OB
zcCbtUI6Q/TY8kUPjvIW3tCy4quRG5Tbvpp5KvG/THHVp1ezM94hDZBjH2v1RxF3
MHN0BFrMZOF5/jj3b4YcKdgD59RFoBGkiry0tPPseUr9hWFStC2aUrftiB8l3WQu
ItDsAC9TEE6Wabyy4ytyx5PjRC9Oc23PZgncnzUReUK81hDsLIRFCCZXiErEO6o8
i52Pk93MLjB9lm1bm3eRlovbhXux0megQDE2oPt/K7m8goAjkRZJj6kjAWFm7W1V
Ihxqo6VGSaNxNo/BQpZEWFkTAIlQxm7eKwc7AmaNS8pnQRV8jr/L2rxkYqA0JkuR
qxg8zqMANF5wbH2xoMXdmBjSWKEgCBwWZxzDOW7s34trzzQQ0SCFkEexaeq+0CN+
+LyeLSGK8zxDnzVRu6DrO1t+8qpx2AjOSKH9dOzjdUSmjesA7E1QNTjgBcQx5UGG
lkwDS8BF6NhiYTR0uk85gScZ2MrK+sllmGNJexWF2hFxlf7eGx4vASfL2yachZq9
QGF9kmikYQ8YKUD50+vwYy/Q1GKgzMJVCEE8v1NgAo0ABtcMdzIlmXaNTYPKk+og
NzK/2xrccgDzO0Gre2zF69TGtZ3GLFpp/9wcrUhNJkFtoXpuCc8=
=FFSf
-END PGP SIGNATURE End Message ---


Bug#941464: marked as done (picard: Crash when using Spanish locale)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:21 +
with message-id 
and subject line Bug#941464: fixed in picard 2.1.2-1+deb10u1
has caused the Debian Bug report #941464,
regarding picard: Crash when using Spanish locale
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.)


-- 
941464: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941464
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: picard

Version: 2.2.1-1

Picard 2.2.1 in Buster crashes when using the Spanish locale and
opening options. This is a bug that we have fixed upstream [1] in the
2.1.3 release.

I think this package should actually be updated to the 2.1.3 release
(which is a bugfix release only not introducing new functionality) or
if this is not possible at the very minimum include the patch that
fixed the translations [2]


[1] https://tickets.metabrainz.org/browse/PICARD-1461
[2] 
https://github.com/metabrainz/picard/commit/5b7b29df2ae9dd5b860326fc5260e73fde74d0a5
--- End Message ---
--- Begin Message ---
Source: picard
Source-Version: 2.1.2-1+deb10u1

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

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated picard package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 13 Oct 2019 10:02:04 +0200
Source: picard
Architecture: source
Version: 2.1.2-1+deb10u1
Distribution: buster
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
Changed-By: Sebastian Ramacher 
Closes: 941464
Changes:
 picard (2.1.2-1+deb10u1) buster; urgency=medium
 .
   * debian/gbp.conf: Work in buster branch
   * debian/patches: Update translations to fix crash with Spanish locale 
(Closes: #941464)
Checksums-Sha1:
 695fb5c8b28bd5b3a26842d0ded8b1292a30f192 2036 picard_2.1.2-1+deb10u1.dsc
 e765603b9a0c5964ff8ea10cdbd5063debb35cf6 15680 
picard_2.1.2-1+deb10u1.debian.tar.xz
Checksums-Sha256:
 5e53bea28f6a42f7aad0f11dd59600a819e0f3f92e9e168a10cad2fb3ad31b2a 2036 
picard_2.1.2-1+deb10u1.dsc
 61aea85acb00451c5ef9a16021d4d46c68772d196fdacdea2692bcfc9c2380d4 15680 
picard_2.1.2-1+deb10u1.debian.tar.xz
Files:
 940d15553f1633c2f284514b373e4a72 2036 sound optional picard_2.1.2-1+deb10u1.dsc
 ad7cc2bd42c0d76e9917e25db9a10b3d 15680 sound optional 
picard_2.1.2-1+deb10u1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAl2i3sQACgkQafL8UW6n
GZOCoQ//U31Mloa1KlaaJ7paqo+ewOjN6Mt7PCeD319YvSvsDMcit2KfAC2Nu2qo
hzDJYNEyvoP5fqt3+ZDJDnT6m5HJDQS2LPxs8/F7MlqU9A5gGb9nlBxiGy5jjAL6
XdikO6rR9hySZ7sbmgtOssecs2sVhZxDlgbU1m1Vge0OMeeRvFgCypjCmJ/tbD9y
g4sYsXttxJjWf4n0gmN9MXAU4UmeBFjJKK9RidPnVs0WDbuaI3Dqnl8pbP0aJIDg
xCcGjRYHrJFlfuBAMB0kbXJctJ8YUjblS7HNuJ54BArda47qWozggoY2idzhiRok
ET8Ji1s9x6xPyc6QnywxTZOkV6v/NyWoJiGi1Xs+fhpyvO7umia87AMcxsR3PAZ+
fpcyoNCl8yylhWZEgc0rQixqPUmEtdBcnOfDD+HbMBC86gzCcmYbzKmZAASFmWPr
3fx1CreoLCtTMnrX+ZF5rM4uN410Ie/RmbaQPA+KbcTuI8JQVLGsHZ2cVTKgAfjx
igcxqWa/6b21XnJJpSA6lDWKqdnE3QEawHj8qMqtk9kGqAYYpkF49izd55J4yxAj
4soUBrzvttqzwV0da/eadWkyInvvmoRYf2nj2TMaHz0m3HfPQMQ8qupr/hLHdCNQ
3BfkWdqVTbD830o2Pje4ONvJk0Ar0fPW4e2M6Ac2aucoBdszuEw=
=8X09
-END PGP SIGNATURE End Message ---


Bug#936331: marked as done (construct.legacy: Python2 removal in sid/bullseye)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 20:40:15 +
with message-id 
and subject line Bug#936331: fixed in construct.legacy 2.5.3-2.1
has caused the Debian Bug report #936331,
regarding construct.legacy: Python2 removal in sid/bullseye
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.)


-- 
936331: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=936331
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:construct.legacy
Version: 2.5.3-2
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:construct.legacy

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: construct.legacy
Source-Version: 2.5.3-2.1

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

Debian distribution maintenance software
pp.
Sandro Tosi  (supplier of updated construct.legacy package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 06 Oct 2019 14:38:10 -0400
Source: construct.legacy
Architecture: source
Version: 2.5.3-2.1
Distribution: unstable
Urgency: medium
Maintainer: Hilko Bengen 
Changed-By: Sandro Tosi 
Closes: 936331
Changes:
 construct.legacy (2.5.3-2.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Drop python2 support; Closes: #936331
Checksums-Sha1:
 a6a4f901e6a2ce71e1b15574e15dffe5785e04de 2021 construct.legacy_2.5.3-2.1.dsc
 15d4db39ed5b4f556ce57fcf288eebb80c56c063 2240 
construct.legacy_2.5.3-2.1.debian.tar.xz
 b46434db57a65527444a411bcc73dc05982de16d 6216 
construct.legacy_2.5.3-2.1_source.buildinfo
Checksums-Sha256:
 116091812c7770805b72a0f91ecb309f31419149380b3bf4418f4fb3647c0daf 2021 
construct.legacy_2.5.3-2.1.dsc
 a6671611cea3803c1dd44a25d3c4eb58c61eaea8ebb9ed883374ebdb3d04de6f 2240 
construct.legacy_2.5.3-2.1.debian.tar.xz
 5f8f4cbe9b74a3a8eee3116e09203f4fa336f3d996bd382c3038a8e14fbd6e05 6216 

Bug#937112: marked as done (natsort: Python2 removal in sid/bullseye)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 20:52:19 +
with message-id 
and subject line Bug#937112: fixed in natsort 6.0.0-1.1
has caused the Debian Bug report #937112,
regarding natsort: Python2 removal in sid/bullseye
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.)


-- 
937112: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=937112
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:natsort
Version: 6.0.0-1
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:natsort

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: natsort
Source-Version: 6.0.0-1.1

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

Debian distribution maintenance software
pp.
Sandro Tosi  (supplier of updated natsort package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 06 Oct 2019 16:00:20 -0400
Source: natsort
Architecture: source
Version: 6.0.0-1.1
Distribution: unstable
Urgency: medium
Maintainer: Agustin Henze 
Changed-By: Sandro Tosi 
Closes: 937112
Changes:
 natsort (6.0.0-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Drop python2 support; Closes: #937112
Checksums-Sha1:
 0ae636ab74522a97a55f86e3c2d949691549211e 2103 natsort_6.0.0-1.1.dsc
 a830fc9ea874ed7003cedcafad8dc00a215f6c47 3940 natsort_6.0.0-1.1.debian.tar.xz
 e0986be6c8efe83e68115a1d3423cd0b8167b7c9 7113 
natsort_6.0.0-1.1_source.buildinfo
Checksums-Sha256:
 642fbd743212731c1a29a894d41b310af4186d39b4fa5dc0e49f863ec738c93e 2103 
natsort_6.0.0-1.1.dsc
 2607300032bd4bdfdc433935a9db83b319f7c0b1e51d6091fab5f6d19d0a753b 3940 
natsort_6.0.0-1.1.debian.tar.xz
 3b48f25ed72ac14c6125b73977160a9e04d43c6a6370cc68cc798ba059060ed3 7113 
natsort_6.0.0-1.1_source.buildinfo
Files:
 e7204c66b0902a97d7f354a145110dec 2103 python optional natsort_6.0.0-1.1.dsc
 

Bug#927514: marked as done (Updating the partman-base Uploaders list)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 20:53:58 +
with message-id 
and subject line Bug#927514: fixed in partman-base 209
has caused the Debian Bug report #927514,
regarding Updating the partman-base Uploaders list
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.)


-- 
927514: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927514
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: partman-base
Version: 208
Severity: minor
User: m...@qa.debian.org
Usertags: mia-teammaint

Christian Perrier  has retired, so can't work on
the partman-base package anymore (at least with this address).

We are tracking their status in the MIA team and would like to ask you
to remove them from the Uploaders list of the package so we can close
that part of the file.

(If the person is listed as Maintainer, what we are asking is to please
step in as a new maintainer.)

Thanks.
--- End Message ---
--- Begin Message ---
Source: partman-base
Source-Version: 209

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

Debian distribution maintenance software
pp.
Holger Wansing  (supplier of updated partman-base package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 21:57:14 +0200
Source: partman-base
Architecture: source
Version: 209
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Holger Wansing 
Closes: 927514
Changes:
 partman-base (209) unstable; urgency=medium
 .
   * Team upload
 .
   [ Cyril Brulebois ]
   * Remove Christian Perrier from Uploaders, with many thanks for all
 his contributions over the years! (Closes: #927514)
 .
   [ Holger Wansing ]
   * Add comment for translators, to keep main menu entry below a 55 columns
 limit. This updates all po|pot files.
 .
   [ Updated translations ]
   * Croatian (hr.po) by gogogogi
Checksums-Sha1:
 2d00dc50cdcd8b005e00223618b2ffd39d7c3040 1891 partman-base_209.dsc
 cfd086ddcb3d466d6d45b2f96292becdd128a92f 174684 partman-base_209.tar.xz
 deea44382e0e919f8c0db855c63f1f9c372f06c1 6297 partman-base_209_amd64.buildinfo
Checksums-Sha256:
 437ea082ec2b1a4ed478671dfb2ff92c59272a796189ef952cb09cdbf746ccaf 1891 
partman-base_209.dsc
 ccc9dad4ed4ec057e90a5d10875f8fa740588c8d3b3b1fa2b57d8c3641fc39e1 174684 
partman-base_209.tar.xz
 398b75420d8ead368378d795a0866f61214c0f927f62e0f353db7312e35a1c2d 6297 
partman-base_209_amd64.buildinfo
Files:
 68aa00814860966a028a4255b2d6197e 1891 debian-installer standard 
partman-base_209.dsc
 f37095ff61d745a8c7cd9261cef5e92b 174684 debian-installer standard 
partman-base_209.tar.xz
 ef243a644bf963c4bb75547e080d6da9 6297 debian-installer standard 
partman-base_209_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEESWrG6BRCSzSFCDUpWfGHyhVusHYFAl2jgyoVHGh3YW5zaW5n
QG1haWxib3gub3JnAAoJEFnxh8oVbrB2eCMP/1eE++JwoTw5Iasj/Gk7A2EjXEwy
hTGpNSxX8wGg5124ZcNSu2hNlLoCDT2dNzSx4mrQXIHb1NP7AyRAsDXywbA7HHcE
LiDRuIx2XDppqxWlCicOzRY6OrdlQdmMcBC1XT9Ch9D+115rjxn2XgQxmJ21HeBT
YKM+zkfceEZOp7Hx6raCzXpD3X5+gZPEwYR/0ml6vc+P16hAR1nObVWJeD+t8l4r
i419TsYW2mMHKIrje6NbwO802ACmwRg5K/ZWtVc4GBkLQelc1W6aj3ohzZ7jcbUq
i1F8XcEsaDTQx45hBNJGZOC5PkzlwtLoaIaVFiTsVLMQJYk90pKMk3q74rmLBIJ8
Fg2mPl/ViIDFMBb/jIAl+8PGFkuHRG+Ye4rzGVmCRuH1F2RFRCXHM2dqU0/k2wkq
EkYko1WPGsdS2gAd782HU1DEyDcRhYkjKekZflH0Woe0nnEGaCyPMVr/JLVYous5
X+y05kr7voibRWwpSTz5KX3a7UQca0/RjHoCpmzvjKmExxSwCTr/5i1XaNLTbGQr
WXIImJz3IDSHIshP/kRC3KFYLj717+WTIlDeDidQ4FnJB14E12QWYmhnPJXeWCxz
uecU/9fyxLvc0NrceTjKJHdXP+ytNhmO4AvLf/fG9NObo8/9mYyNiLM9gz7fWtJx
jbHFfTgwBiXhO4XP
=3NmB
-END PGP SIGNATURE End Message ---


Bug#755856: marked as done (usbprog: invalid key/value pair in file /lib/udev/rules.d/60-usbprog.rules on line 1, starting at character 32 (' '))

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:15:38 +
with message-id 
and subject line Bug#941180: Removed package(s) from unstable
has caused the Debian Bug report #755856,
regarding usbprog: invalid key/value pair in file 
/lib/udev/rules.d/60-usbprog.rules on line 1, starting at character 32 (' ')
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.)


-- 
755856: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=755856
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: usbprog
Version: 0.2.0-2.1
Severity: important

Dear Maintainer,

usbprog is causing the following error:

Jul 23 16:02:44 t440s systemd-udevd[248]: invalid key/value pair in file 
/lib/udev/rules.d/60-usbprog.rules on line 1,starting at character 32 (' ')

this shows up on a system with usbprog installed when a USB devices
is inserted (such as a USB disk).

The problem is resolved by editing 60-usbprog.rules as follows:

  --- 60-usbprog.rules~ 2014-07-23 16:15:19.729301227 -0700
  +++ 60-usbprog.rules  2014-07-23 16:09:32.629132387 -0700
  @@ -1,4 +1,4 @@
  -SUBSYSTEM!="usb", ACTION!="add", SUBSYSTEM!=="usb_device", 
GOTO="usbprog_rules_end"
  +SUBSYSTEM!="usb", ACTION!="add", SUBSYSTEM!="usb_device", 
GOTO="usbprog_rules_end"
   
   # USBprog, in programmable state (or with simpleport firmware)
   ATTR{idVendor}=="1781", ATTR{idProduct}=="0c62", MODE="664", GROUP="plugdev"

The following patch seems likely to resolve the issue if applied to the
usbprog repo:

Author: Andy Isaacson 
Date:   Wed Jul 23 16:12:35 2014 -0700

replace !== with correct !=

diff --git a/debian/usbprog.udev b/debian/usbprog.udev
index cf75eb6..f01fa1f 100644
--- a/debian/usbprog.udev
+++ b/debian/usbprog.udev
@@ -1,4 +1,4 @@
-SUBSYSTEM!="usb", ACTION!="add", SUBSYSTEM!=="usb_device", 
GOTO="usbprog_rules_end"
+SUBSYSTEM!="usb", ACTION!="add", SUBSYSTEM!="usb_device", 
GOTO="usbprog_rules_end"
 
 # USBprog, in programmable state (or with simpleport firmware)
 ATTR{idVendor}=="1781", ATTR{idProduct}=="0c62", MODE="664", GROUP="plugdev"
diff --git a/usbprog.rules.in b/usbprog.rules.in
index f01b44e..6b373d9 100644
--- a/usbprog.rules.in
+++ b/usbprog.rules.in
@@ -4,7 +4,7 @@
 # Users that want to use USBprog should be added to the group 
'@@USBPROG_GROUP@@'.
 #
 
-BUS!="usb", ACTION!="add", SUBSYSTEM!=="usb_device", GOTO="usbprog_rules_end"
+BUS!="usb", ACTION!="add", SUBSYSTEM!="usb_device", GOTO="usbprog_rules_end"
 
 # USBprog, in programmable state (or with simpleport firmware)
 SYSFS{idVendor}=="1781", SYSFS{idProduct}=="0c62", MODE="664", 
GROUP="@@USBPROG_GROUP@@"

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

Kernel: Linux 3.15.5 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages usbprog depends on:
ii  libc6 2.19-7
ii  libgcc1   1:4.9.1-1
ii  libreadline6  6.3-6
ii  libstdc++64.9.1-1
ii  libusbprog0   0.2.0-2.1

usbprog recommends no packages.

usbprog suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Version: 0.2.0-2.2+rm

Dear submitter,

as the package usbprog has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/941180

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#670493: marked as done ([PATCH] manpages-es: Helping to update to packaging format 3.0)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:15:09 +
with message-id 
and subject line Bug#941153: Removed package(s) from unstable
has caused the Debian Bug report #670493,
regarding [PATCH] manpages-es: Helping to update to packaging format 3.0
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.)


-- 
670493: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=670493
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: manpages-es
Severity: wishlist
Tags: patch

Hi Javier,

Here is another patch to migrate to new package format[*].

Notes:

- There were many 01-* numbered patches. To make apply order
  apparent, all patches were renumbered sequentially: N, N + increment ...
- Files PROYECTO copyright were not in original sources so they
  were moved to patch 03.

Otherwise moving to 3.0 was straight forward. Let me know if there is
anything that needs adjusting.

Thanks,
Jari

[*] The dpatch patch management system has been deprecated for some time. The
Lintian currently flags use of dpatch packages as an error. The new 3.0
packaging format is an improved version which, among other things, contains
patch management built-in. For more information, see:
.


>From 4efd0e20446111c3d0c9622f911523e44e53944e Mon Sep 17 00:00:00 2001
From: Jari Aalto 
Date: Thu, 26 Apr 2012 09:51:17 +0300
Subject: [PATCH] format-3.0
Organization: Private
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

Signed-off-by: Jari Aalto 
---
 PROYECTO   |  194 
 copyright  |2 -
 debian/changelog   |   14 ++
 debian/compat  |2 +-
 debian/control |4 +-
 debian/patches/00list  |   17 --
 debian/patches/01_getenv.3.dpatch  |   16 --
 debian/patches/01_putenv.3.dpatch  |   16 --
 debian/patches/01_setenv.3.dpatch  |   17 --
 ...ve_passwd.5.dpatch => 05-remove-passwd.5.patch} |8 +-
 .../{01_bdflush.2.dpatch => 10-bdflush.2.patch}|8 +-
 .../{01_umask.2.dpatch => 15-umask.2.patch}|8 +-
 .../{01_crypt.3.dpatch => 20-crypt.3.patch}|8 +-
 debian/patches/25-getenv.3.patch   |   16 ++
 debian/patches/30-putenv.3.patch   |   16 ++
 debian/patches/35-setenv.3.patch   |   17 ++
 .../{01_charsets.4.dpatch => 40-charsets.4.patch}  |8 +-
 .../{01_fstab.5.dpatch => 45-fstab.5.patch}|8 +-
 .../{01_nsswitch.5.dpatch => 50-nsswitch.5.patch}  |8 +-
 .../{01_environ.7.dpatch => 55-environ.7.patch}|8 +-
 ...documented.7.dpatch => 60-undocumented.7.patch} |8 +-
 .../{01_Makefile.dpatch => 65-Makefile.patch}  |8 +-
 .../{01_PROYECTO.dpatch => 70-PROYECTO.patch}  |8 +-
 ...-2.7.utf8.dpatch => 75-iso-8859-2.7.utf8.patch} |8 +-
 .../{10_map.2.utf8.dpatch => 80-map.2.utf8.patch}  |8 +-
 ..._not_install.dpatch => 85-do-not-install.patch} |8 +-
 debian/patches/series  |   18 ++
 debian/rules   |   11 +-
 debian/source/format   |1 +
 29 files changed, 120 insertions(+), 353 deletions(-)
 delete mode 100644 PROYECTO
 delete mode 100644 copyright
 delete mode 100644 debian/patches/00list
 delete mode 100644 debian/patches/01_getenv.3.dpatch
 delete mode 100644 debian/patches/01_putenv.3.dpatch
 delete mode 100644 debian/patches/01_setenv.3.dpatch
 rename debian/patches/{01_remove_passwd.5.dpatch => 05-remove-passwd.5.patch} (96%)
 rename debian/patches/{01_bdflush.2.dpatch => 10-bdflush.2.patch} (86%)
 rename debian/patches/{01_umask.2.dpatch => 15-umask.2.patch} (73%)
 rename debian/patches/{01_crypt.3.dpatch => 20-crypt.3.patch} (76%)
 create mode 100644 debian/patches/25-getenv.3.patch
 create mode 100644 debian/patches/30-putenv.3.patch
 create mode 100644 debian/patches/35-setenv.3.patch
 rename debian/patches/{01_charsets.4.dpatch => 40-charsets.4.patch} (97%)
 rename debian/patches/{01_fstab.5.dpatch => 45-fstab.5.patch} (96%)
 rename debian/patches/{01_nsswitch.5.dpatch => 50-nsswitch.5.patch} (97%)
 rename debian/patches/{01_environ.7.dpatch => 55-environ.7.patch} (96%)
 rename debian/patches/{01_undocumented.7.dpatch => 60-undocumented.7.patch} (93%)
 rename debian/patches/{01_Makefile.dpatch => 65-Makefile.patch} (65%)
 rename 

Bug#799460: marked as done (sandboxgamemaker: [INTL:nl] Dutch translation of debconf messages)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:16:42 +
with message-id 
and subject line Bug#942186: Removed package(s) from unstable
has caused the Debian Bug report #799460,
regarding sandboxgamemaker: [INTL:nl] Dutch translation of debconf messages
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.)


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

Package: sandboxgamemaker 
Severity: wishlist 
Tags: l10n patch 
 

Dear Maintainer, 
 
== 
Please find attached the Dutch translation of sandboxgamemaker debconf 
messages. 
It has been submitted for review to the debian-l10n-dutch mailing list. 
Please add it to your next package revision. 
It should be put as debian/po/nl.po in your package build tree. 
=== 

-- 
Cheers,
Frans

===
http://www.frans-spiesschaert.homenet.org
http://home.base.be/vt6362833/



nl.po.gz
Description: application/gzip


signature.asc
Description: This is a digitally signed message part
--- End Message ---
--- Begin Message ---
Version: 2.8.2+dfsg-1+rm

Dear submitter,

as the package sandboxgamemaker has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/942186

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#536802: marked as done (rlplot: Invalid memory reference)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:17:21 +
with message-id 
and subject line Bug#942263: Removed package(s) from unstable
has caused the Debian Bug report #536802,
regarding rlplot: Invalid memory reference
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.)


-- 
536802: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=536802
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rlplot
Version: 1.4-1
Severity: important
File: /usr/bin/rlplot

Hello,

rlplot crashed when I closed it.

Regards
Jiri Palecek


(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
0xb7faf424 in __kernel_vsyscall ()
#0  0xb7faf424 in __kernel_vsyscall ()
#1  0xb6f4ae73 in waitpid () from /lib/i686/cmov/libc.so.6
#2  0xb7faa92b in viaticum_signal_handle () from 
/usr/lib/debreaper/libviaticum.so
#3  
#4  0x08053991 in ?? ()
#5  0xb74ef21d in QWidget::event (this=0x82843d0, event=0xbfeca2dc) at 
kernel/qwidget.cpp:7506
#6  0xb78e6af7 in QMainWindow::event (this=0x82843d0, event=0xbfeca2dc) at 
widgets/qmainwindow.cpp:1402
#7  0xb74987bc in QApplicationPrivate::notify_helper (this=0x81c7658, 
receiver=0x82843d0, e=0xbfeca2dc) at kernel/qapplication.cpp:4057
#8  0xb74a1441 in QApplication::notify (this=0xbfecbb40, receiver=0x82843d0, 
e=0xbfeca2dc) at kernel/qapplication.cpp:3759
#9  0xb7e91a2b in QCoreApplication::notifyInternal (this=0xbfecbb40, 
receiver=0x82843d0, event=0xbfeca2dc) at kernel/qcoreapplication.cpp:610
#10 0xb74a04ae in QApplicationPrivate::sendMouseEvent (receiver=0x82843d0, 
event=0xbfeca2dc, alienWidget=0x0, nativeWidget=0x82843d0, buttonDown=
0xb7d459e0, lastMouseReceiver=@0xb7d459e4) at 
../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:216
#11 0xb750fdc5 in QETWidget::translateMouseEvent (this=0x82843d0, 
event=0xbfecb88c) at kernel/qapplication_x11.cpp:4448
#12 0xb750ecb7 in QApplication::x11ProcessEvent (this=0xbfecbb40, 
event=0xbfecb88c) at kernel/qapplication_x11.cpp:3566
#13 0xb75399a2 in x11EventSourceDispatch (s=0x81cb500, callback=0, 
user_data=0x0) at kernel/qguieventdispatcher_glib.cpp:146
#14 0xb6dee848 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
#15 0xb6df1dab in ?? () from /usr/lib/libglib-2.0.so.0
#16 0x081ca640 in ?? ()
#17 0x in ?? ()

Thread 1 (Thread 0xb6bbb6d0 (LWP 8564)):
#0  0xb7faf424 in __kernel_vsyscall ()
No symbol table info available.
#1  0xb6f4ae73 in waitpid () from /lib/i686/cmov/libc.so.6
No symbol table info available.
#2  0xb7faa92b in viaticum_signal_handle () from 
/usr/lib/debreaper/libviaticum.so
No symbol table info available.
#3  
No symbol table info available.
#4  0x08053991 in ?? ()
No symbol table info available.
#5  0xb74ef21d in QWidget::event (this=0x82843d0, event=0xbfeca2dc) at 
kernel/qwidget.cpp:7506
No locals.
#6  0xb78e6af7 in QMainWindow::event (this=0x82843d0, event=0xbfeca2dc) at 
widgets/qmainwindow.cpp:1402
d = 0x82d8058
#7  0xb74987bc in QApplicationPrivate::notify_helper (this=0x81c7658, 
receiver=0x82843d0, e=0xbfeca2dc) at kernel/qapplication.cpp:4057
consumed = 
#8  0xb74a1441 in QApplication::notify (this=0xbfecbb40, receiver=0x82843d0, 
e=0xbfeca2dc) at kernel/qapplication.cpp:3759
me = {
   = {
 = {
  _vptr.QEvent = 0xb7d27be0, 
  d = 0x0, 
  t = 5, 
  posted = 0, 
  spont = 1, 
  m_accept = 1, 
  reserved = 6141
}, 
members of QInputEvent: 
modState = {
  i = 0
}
  }, 
  members of QMouseEvent: 
  p = {
xp = 504, 
yp = 417
  }, 
  g = {
xp = 651, 
yp = 542
  }, 
  b = Qt::NoButton, 
  mouseState = {
i = 0
  }
}
w = 0x82843d0
mouse = 0x0
eventAccepted = 
relpos = {
  xp = 504, 
  yp = 417
}
pw = {
  o = 0x82843d0
}
res = true
#9  0xb7e91a2b in QCoreApplication::notifyInternal (this=0xbfecbb40, 
receiver=0x82843d0, event=0xbfeca2dc) at kernel/qcoreapplication.cpp:610
result = false
cbdata = {0x82843d0, 0xbfeca2dc, 0xbfeca10b}
threadData = 0x81c7718
returnValue = 
#10 0xb74a04ae in QApplicationPrivate::sendMouseEvent (receiver=0x82843d0, 
event=0xbfeca2dc, alienWidget=0x0, nativeWidget=0x82843d0, buttonDown=
0xb7d459e0, lastMouseReceiver=@0xb7d459e4) at 

Bug#941753: marked as done (bpfcc: New upstream version (0.10.0))

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:04:29 +
with message-id 
and subject line Bug#941753: fixed in bpfcc 0.11.0-1
has caused the Debian Bug report #941753,
regarding bpfcc: New upstream version (0.10.0)
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.)


-- 
941753: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941753
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: bpfcc
Severity: wishlist

Hi 

there are new upstream version(s) available for bpfcc. Would be great
to see these uploaded for unstable. 

Regards,
Salvatore
--- End Message ---
--- Begin Message ---
Source: bpfcc
Source-Version: 0.11.0-1

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

Debian distribution maintenance software
pp.
Ritesh Raj Sarraf  (supplier of updated bpfcc package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 13 Oct 2019 19:49:12 +0530
Source: bpfcc
Architecture: source
Version: 0.11.0-1
Distribution: unstable
Urgency: medium
Maintainer: Ritesh Raj Sarraf 
Changed-By: Ritesh Raj Sarraf 
Closes: 941753
Changes:
 bpfcc (0.11.0-1) unstable; urgency=medium
 .
   * [52cfb06] New upstream version 0.11.0 (Closes: #941753)
   * [a7af29e] Multiple sources are used to build bpfcc
   * [4d67dd6] Update d/copyright reflecting about new sources
   * [040e9cc] Drop python2 support
   * [5f5de07] Instruct dh_python3 to explicitly set shebang
   * [fc28e57] Bump debhelper compatibility to 12
   * [cb25f1d] Add Rules-Requires-Root stanza in d/control
   * [b266b16] Use canonical URI
   * [83e6674] Bump Standards Version to 4.4.1
   * [c471de9] Ship libs for libbcc_bpf.so
   * [e3195c0] Add details about license
   * [d144eba] Use DEB_BUILD_MAINT_OPTIONS to skip tests
Checksums-Sha1:
 15f9e000ef898b7defc26a30056f6caa1d5eda51 2789 bpfcc_0.11.0-1.dsc
 14200a981d1b0c4ae0764d147099d9a6cf94e911 160335 bpfcc_0.11.0.orig-libbpf.tar.gz
 06b65739144278f9b75b8d967c51fcd9cc1904b5 2611511 bpfcc_0.11.0.orig.tar.gz
 4e9dfceb66a5b0b3e8a0900dd4f0e3e94ff9a6e6 6876 bpfcc_0.11.0-1.debian.tar.xz
Checksums-Sha256:
 49fa9377a0f8e51785bff8dc1bad872dced2827886d824259b66a2548cfb5bc9 2789 
bpfcc_0.11.0-1.dsc
 9537806dd6b077e9f02df226a23aa989bbbe5da5ecc502f4f76af295a94d9a78 160335 
bpfcc_0.11.0.orig-libbpf.tar.gz
 18ba73ab285d96b806e59764abba5e6a5fa0c39f5571150b31cf651df3a71b48 2611511 
bpfcc_0.11.0.orig.tar.gz
 a8dd1badeae74aadbc5ff3d63bab2388e8cb1ac898e8819c297920542e9dd593 6876 
bpfcc_0.11.0-1.debian.tar.xz
Files:
 ff53b073a8c4248ac5cb5586316ebe05 2789 misc optional bpfcc_0.11.0-1.dsc
 076d4845c05cefe523fb6838666eceea 160335 misc optional 
bpfcc_0.11.0.orig-libbpf.tar.gz
 3bf7ef4040341db4053918e4831cdca4 2611511 misc optional bpfcc_0.11.0.orig.tar.gz
 0f2cb5eadf37a2355a4632594cea2b45 6876 misc optional 
bpfcc_0.11.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEQCVDstmIVAB/Yn02pjpYo/LhdWkFAl2jOBUACgkQpjpYo/Lh
dWniNBAAo20ic6Kg2U9VpUaooy22yob7JK5etnExrp57RyYXuXf+CLMuRG3c2vs6
lO+ZSQKsT/mgXULjj0aXdyyCVhwqwo7flPVBhV3jgV9iYu8mO7Lcjt2Hy2efKILU
94uAJKIVngWNvlTwMlpdLq3n3ZSKio0TRFMO6hyGJ/JJ3UyDBfNkURySuz6yjNL2
OPRYohtD2WXDM48xoREvfooPHrA22AgEv1L/Ft8URmzHH0a/u2olp/ugMau2Iasj
IbG17jH9fVoUOLvOeFY0jqWfC6c5OowGjDc0IX2u/LTZRJX3MRrdDQLT+J63BJWf
cb7jehpps4lxJKJt3OP+tCQ5eAlBaeF1eSrouRPnDt66qHQCvwsymKq+8neUmly/
wTwUkoGExU8UuggyEdnzfeyosf3Z4YAVqWCuT4E1yhBK0mAsXyKzogZTbwE+xTrk
ehpgtL8lkP/kuWJQ9EAX5j0QQPAOxqU9sztcDq2dFMM5LIqe6k49Giotbyxg95U1
+WKDHBv2AZKv6allaW9y1X3zDTfgmiT9Iy+WjkSnXfGfY2fgRSrsW0IpAZFrxVVx
ZsKY7Lxe2tbi3uOQAeyvpYf3wLdw+FPrXRlfD1fwc1761pyGO88FVfJ+I5AZPNJT
UUviitT/DmjSN04bvwmZY5U7WR28wMDKdFzDZ21cO3gSIVYiZyY=
=BgqM
-END PGP SIGNATURE End Message ---


Bug#595986: marked as done (loggerhead: Instructions to get branch give bad location.)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:32:52 +
with message-id <20191013153252.ga...@jelmer.uk>
and subject line Done
has caused the Debian Bug report #595986,
regarding loggerhead: Instructions to get branch give bad location.
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.)


-- 
595986: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=595986
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: loggerhead
Version: 1.17+bzr424-1
Severity: normal

When viewing a branch in loggerhead on bzr.debian.org, the instructions to get
the branch give a bad location. For instance, viewing
 you
see:

To get this branch, use:
bzr branch /scm/loggerhead/pkg-bazaar/loggerhead/unstable

That will obviously not work.



-- System Information:
Debian Release: squeeze/sid
  APT prefers maverick-updates
  APT policy: (500, 'maverick-updates'), (500, 'maverick-security'), (500, 
'maverick-backports'), (500, 'maverick')
Architecture: i386 (i686)

Kernel: Linux 2.6.35-19-generic (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


--- End Message ---
--- Begin Message ---
This was fixed in upstream Loggerhead.--- End Message ---


Bug#942039: marked as done (loggerhead: not co-installable with loggerhead-breezy)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:32:28 +
with message-id <20191013153228.ga...@jelmer.uk>
and subject line Resolved
has caused the Debian Bug report #942039,
regarding loggerhead: not co-installable with loggerhead-breezy
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.)


-- 
942039: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=942039
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: loggerhead
Version: 1.19~bzr494-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package failed to install
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
https://www.debian.org/doc/debian-policy/ch-relationships.html#overwriting-files-and-replacing-packages-replaces

>From the attached log (scroll to the bottom...):

  Selecting previously unselected package loggerhead-breezy.
  Preparing to unpack .../loggerhead-breezy_1.20~bzr551+dfsg-1_all.deb ...
  Unpacking loggerhead-breezy (1.20~bzr551+dfsg-1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/loggerhead-breezy_1.20~bzr551+dfsg-1_all.deb (--unpack):
   trying to overwrite '/usr/bin/loggerhead-serve', which is also in package 
loggerhead 1.19~bzr494-1
  dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
  Errors were encountered while processing:
   /var/cache/apt/archives/loggerhead-breezy_1.20~bzr551+dfsg-1_all.deb

loggerhead is the newer package, uploaded a few days ago, while the last
loggerhead-breezy upload was nearly a year ago.

cheers,

Andreas


loggerhead=1.19~bzr494-1_loggerhead-breezy=1.20~bzr551+dfsg-1.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
loggerhead-breezy has been removed from Debian, resolving this bug.--- End Message ---


Bug#941965: marked as done (ITP: univocity-parsers -- Parsers for CSV, TSV and fixed width files)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:19 +
with message-id 
and subject line Bug#941965: fixed in univocity-parsers 2.8.3-1
has caused the Debian Bug report #941965,
regarding ITP: univocity-parsers -- Parsers for CSV, TSV and fixed width files
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.)


-- 
941965: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941965
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Emmanuel Bourg 

* Package name: univocity-parsers
  Version : 2.8.3
  Upstream Author : Univocity Software Pty Ltd
* URL : https://www.univocity.com/pages/about-parsers
* License : Apache-2.0
  Programming Lang: Java
  Description : Parsers for CSV, TSV and fixed width files

univocity-parsers is a collection of extremely fast and reliable parsers
for Java. It provides a consistent interface for handling different file
formats, and a solid framework for the development of new parsers.

This package this a dependency of JUnit 5. It'll be maintained
by the Java Team.
--- End Message ---
--- Begin Message ---
Source: univocity-parsers
Source-Version: 2.8.3-1

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

Debian distribution maintenance software
pp.
Emmanuel Bourg  (supplier of updated univocity-parsers 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 08 Oct 2019 10:39:49 +0200
Source: univocity-parsers
Binary: libunivocity-parsers-java
Architecture: source all
Version: 2.8.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Emmanuel Bourg 
Description:
 libunivocity-parsers-java - Parsers for CSV, TSV and fixed width files
Closes: 941965
Changes:
 univocity-parsers (2.8.3-1) unstable; urgency=medium
 .
   * Initial release (Closes: #941965)
Checksums-Sha1:
 bcaa1b6ffcce9d73acb408aa67187c34b89aec9c 2099 univocity-parsers_2.8.3-1.dsc
 64ce73c00db2868af2969d951b2f311570d60584 362912 
univocity-parsers_2.8.3.orig.tar.xz
 a5d821dc44f741efec8a5cba0e4da224047e031c 2292 
univocity-parsers_2.8.3-1.debian.tar.xz
 3f815c3ddbeb5ff7e4efc9449b505bb32d882e32 392816 
libunivocity-parsers-java_2.8.3-1_all.deb
 fb505dc226c3f07cc6515a1b2c362076b7a2a2ef 13266 
univocity-parsers_2.8.3-1_amd64.buildinfo
Checksums-Sha256:
 90dd4b542ff97cb6f16b45379d76693bab20ad1d2f5c1924ba2b80fab0c8dc74 2099 
univocity-parsers_2.8.3-1.dsc
 1949150afe8227c8f9c690152edf5a8d857e9c27f86a663c54c9d1b2026b9898 362912 
univocity-parsers_2.8.3.orig.tar.xz
 77c142ff2282c4e7562d06d9ab1e16f7c95e34107ae367c369200cebf79a0105 2292 
univocity-parsers_2.8.3-1.debian.tar.xz
 61aa2eb2d19265288b4159d621e35352d093c09dbcb675ecdf6e5a6fbaceef18 392816 
libunivocity-parsers-java_2.8.3-1_all.deb
 7512f65918962aa5f1f18d35fd57a9ece88266c9d0b19b3b3cab0aad74614713 13266 
univocity-parsers_2.8.3-1_amd64.buildinfo
Files:
 cd8ef6c2038f1bbbd2860a8f44c9c046 2099 java optional 
univocity-parsers_2.8.3-1.dsc
 9802f07ea15325d4a486810f8dff60d0 362912 java optional 
univocity-parsers_2.8.3.orig.tar.xz
 33427617def3185fac479d68049e2583 2292 java optional 
univocity-parsers_2.8.3-1.debian.tar.xz
 a17ff879b21442f7a012e17c7c3f3916 392816 java optional 
libunivocity-parsers-java_2.8.3-1_all.deb
 576280596d3ec1de367c71f35798b126 13266 java optional 
univocity-parsers_2.8.3-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEuM5N4hCA3PkD4WxA9RPEGeS50KwFAl2cTWAACgkQ9RPEGeS5
0KzHHBAAp718KMgsmAeJyiEmvc5cCz0mdmF98yZrroOQUsCeRGyTvc+JEYslxvpn
xdtfDC8znsOkb/26jLHnXF1w5zY030ez/eUcfseAofYV5MuEDtJpDfXfeSy+TmzX
kgrk1+fBicE5rdVV0tw1aYr+WDumw8M4F2vaBIT5t24ia2DGfHBMb4pVrVGi6/z2
HTOiCMCHWq2zzCfMXJZFsbxS2TkZaC1hx/Lltvt3qGMByUlbrHnKt41de5pwhKG3
/9trN0XmVmejagWqeQi0eJWHGbF4Xk8nIvlVK1M6Am3bAZd1KOrIqCUtxdI6bbkF
ifDOPujzB/rSztOSanN6/TpBtFzD45b4xdnwi8WkodtSCgXhbTxUiLq5KDX46Uig
uYXbuO1NgGYl/FeIwrGGHJGqFz/p9hjvYSK99q+u7WvbNH5u92/zEL20Hdh1fxmv
/D0ukxrJxRaPoMl5Gm6VxV0p1zXP8JqPJc0uRtb1tKjv/NcRCLJop7RAfCVzM9YV

Bug#941963: marked as done (ITP: opentest4j -- Open Test Alliance for the JVM)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:18 +
with message-id 
and subject line Bug#941963: fixed in opentest4j 1.2.0-1
has caused the Debian Bug report #941963,
regarding ITP: opentest4j -- Open Test Alliance for the JVM
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.)


-- 
941963: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941963
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Emmanuel Bourg 

* Package name: opentest4j
  Version : 1.2.0
  Upstream Author : Marc Philipp, Sam Brannen
* URL : https://github.com/ota4j-team/opentest4j
* License : Apache-2.0
  Programming Lang: Java
  Description : Open Test Alliance for the JVM

OpenTest4Jj provides a minimal common foundation for testing libraries
on the JVM. The primary goal of the project is to enable testing
frameworks like JUnit, TestNG, Spock, etc. and third-party assertion
libraries like Hamcrest, AssertJ, etc. to use a common set of
exceptions that IDEs and build tools can support in a consistent manner
across all testing scenarios -- for example, for consistent handling of
failed assertions and failed assumptions as well as visualization of
test execution in IDEs and reports.

This package this a dependency of JUnit 5. It'll be maintained
by the Java Team.
--- End Message ---
--- Begin Message ---
Source: opentest4j
Source-Version: 1.2.0-1

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

Debian distribution maintenance software
pp.
Emmanuel Bourg  (supplier of updated opentest4j package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 08 Oct 2019 10:13:32 +0200
Source: opentest4j
Binary: libopentest4j-java
Architecture: source all
Version: 1.2.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Emmanuel Bourg 
Description:
 libopentest4j-java - Open Test Alliance API
Closes: 941963
Changes:
 opentest4j (1.2.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #941963)
Checksums-Sha1:
 06bd776ec4382b56d82d9478118ce33e654f4e27 2005 opentest4j_1.2.0-1.dsc
 df077755577c90cc843b89a8a22e611f3f11c1e1 20664 opentest4j_1.2.0.orig.tar.xz
 71228fd47828f85f7cdd8a8c4ba7bbf06c5fe944 2700 opentest4j_1.2.0-1.debian.tar.xz
 59588f5307c288b7e040ad53c36c5c65fd7f9e4e 9044 
libopentest4j-java_1.2.0-1_all.deb
 c271feb78a8a3fcfe95c23e24b66ea64db5b838b 12131 
opentest4j_1.2.0-1_amd64.buildinfo
Checksums-Sha256:
 276e24ae0839cfc3ed9563858a119a8b82cc5dbca3dde95d4d1e887508e40e98 2005 
opentest4j_1.2.0-1.dsc
 77d9b1fcf0cd6edb7db14dc43bb4ae1cc11d7914e580814aaf76a1f86de223ed 20664 
opentest4j_1.2.0.orig.tar.xz
 de355d62638f8a5793282bece86548be51a6ea90a44e0074d8d67f8089f1e1b9 2700 
opentest4j_1.2.0-1.debian.tar.xz
 29cabd39a1b7acb15053f7368c349b5b30f49f519853096998b70d328404babd 9044 
libopentest4j-java_1.2.0-1_all.deb
 12286f1d4d69bb21fe24bf2725c73caecd0c5abc4256844b1d1f45e2bfbae2de 12131 
opentest4j_1.2.0-1_amd64.buildinfo
Files:
 200af69e9e3fb9b8eff01598ad08c3a6 2005 java optional opentest4j_1.2.0-1.dsc
 b1b639e4639b4948391c327e1836db0f 20664 java optional 
opentest4j_1.2.0.orig.tar.xz
 e1b205f2e492e7f63d5604c8f49f5714 2700 java optional 
opentest4j_1.2.0-1.debian.tar.xz
 ef8ed38d7f2be64b5218611aa1a70572 9044 java optional 
libopentest4j-java_1.2.0-1_all.deb
 9a387438d67f10dae78eeb0f53bf2f26 12131 java optional 
opentest4j_1.2.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEuM5N4hCA3PkD4WxA9RPEGeS50KwFAl2cR4AACgkQ9RPEGeS5
0KyL+g/+PH8+X/5ywdH730KaOo9QALRW9ZFi7k2jGybwIFdr133sAW2oODXUhmr9
R8OqX8fYHquUXmqhzwRa8rDBaRIl+2o0SmxfrDOw82LKaTTGPsu51jO5pMmaHOZB
WKGudyoPqmbcp7goYlwzaO+iDANRgEVvMCI+lFDSC0iUA5dRc5n7CFwm+w/yDoRU
bnZrsDWgErFbH5iKwqo/QIq/pCiJDfwwFn6JMqVB5e6gkyu3/qsbJSBdStvLfC48
A96mJBiY5jkPdCpOwKsseYYwZDq9exwQfbRwNcIdsBagAH3NQN7CC8rneQN3UbLa
bucUSI4bEBd5xPA5sq2F1VOhMvdrvxYkwfDqswWWqP3S4DC3loE2Ic2D1ZZy8lgs
fTEKId+ACiPmuDBcrP+QOALIkcMg+YlerY68JRSDqA+Bf1jLeiahFFEmbas+8V79

Bug#933350: marked as done (ITP: ceph-iscsi -- common logic and CLI tools for creating and managing LIO gateways for Ceph)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:13 +
with message-id 
and subject line Bug#933350: fixed in ceph-iscsi 3.2-1
has caused the Debian Bug report #933350,
regarding ITP: ceph-iscsi -- common logic and CLI tools for creating and 
managing LIO gateways for Ceph
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.)


-- 
933350: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=933350
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Sebastien Delafond 

* Package name: ceph-iscsi
  Version : 3.2
  Upstream Author : The Ceph iSCSI Project Developers
* URL : https://github.com/ceph/ceph-iscsi
* License : GPL-3
  Programming Lang: Python
  Description : common logic and CLI tools for creating and managing LIO 
gateways for Ceph

It includes the rbd-target-api daemon which is responsible for
restoring the state of LIO following a gateway reboot/outage and
exporting a REST API to configure the system using tools like
gwcli. It replaces the existing 'target' service.

There is also a second daemon rbd-target-gw which exports a REST API
to gather statistics.

It also includes the CLI tool gwcli which can be used to configure
and manage the Ceph iSCSI gateway, which replaces the existing
targetcli CLI tool. This CLI tool utilizes the rbd-target-api server
daemon to configure multiple gateways concurrently.
--- End Message ---
--- Begin Message ---
Source: ceph-iscsi
Source-Version: 3.2-1

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

Debian distribution maintenance software
pp.
Sebastien Delafond  (supplier of updated ceph-iscsi 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: Mon, 23 Sep 2019 08:46:44 +0200
Source: ceph-iscsi
Binary: ceph-iscsi
Architecture: source all
Version: 3.2-1
Distribution: unstable
Urgency: medium
Maintainer: Freexian Packaging Team 
Changed-By: Sebastien Delafond 
Description:
 ceph-iscsi - common logic and CLI tools for creating and managing LIO gateways
Closes: 933350
Changes:
 ceph-iscsi (3.2-1) unstable; urgency=medium
 .
   [ Mathieu Parent ]
   * Add debian/gbp.conf
   * Add debian/watch
   * Rename package ceph-iscsi
   * Install gwcli manpage
   * Add "Debian pipeline for Developers"
   * piuparts fails because tcmu-runner is not yet in sid
   * Add init.d services
   * Replace /etc/sysconfig/ceph by /etc/default/ceph in service files
   * Fix skip-systemd-native-flag-missing-pre-depends
 .
   [ Sébastien Delafond ]
   * Remove piuparts override now that tcmu-runner is in sid
   * First release (Closes: #933350)
Checksums-Sha1:
 0f7175ec636e4331e5649d41c15a58834f051c93 1610 ceph-iscsi_3.2-1.dsc
 e670b2d2f7149159bef259f1e2da940adebd1d22 100088 ceph-iscsi_3.2.orig.tar.xz
 63ff2f51648e9ec47565699e395af1585abaf82b 2668 ceph-iscsi_3.2-1.debian.tar.xz
 bc415d447506e3dd9db015276b979a26c30a8851 90412 ceph-iscsi_3.2-1_all.deb
 b9dcde56609264ce1dcb0b896978ad620e8a76bf 5856 ceph-iscsi_3.2-1_amd64.buildinfo
Checksums-Sha256:
 71d8127c8795e958cc9fb043df334ecc1820e4cc0f15e225b27d9054af9382f9 1610 
ceph-iscsi_3.2-1.dsc
 6469aaad7835734e3891a82efb7b7549f2e546b3a6d0b28e3faa906ffdeae4cf 100088 
ceph-iscsi_3.2.orig.tar.xz
 bcb89ec8afcf2571c5426a8c829a1ec21e0226ff795e62ab5217652eabf74b66 2668 
ceph-iscsi_3.2-1.debian.tar.xz
 50071c912bdcae36922794ee66e1db9d97c7ecd15776c8eca64ce828c7615bd8 90412 
ceph-iscsi_3.2-1_all.deb
 7b0b0b030d6d1496dfe9b2ede945253bc8a939d7472ac2bacabd2f15c4a8e9f1 5856 
ceph-iscsi_3.2-1_amd64.buildinfo
Files:
 b2432020dacb32d8ec8f2d7a7eb0a215 1610 python optional ceph-iscsi_3.2-1.dsc
 e1b431c95d20ca505d552e81a3e115bc 100088 python optional 
ceph-iscsi_3.2.orig.tar.xz
 8d0a0ef63c521347825c15510e4dba19 2668 python optional 
ceph-iscsi_3.2-1.debian.tar.xz
 3142cb9d7e47fbd30fd5e6b8e5929e7a 90412 python optional ceph-iscsi_3.2-1_all.deb
 aa8f54f967ea5bf555beed92b369a3e0 5856 python optional 
ceph-iscsi_3.2-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-


Bug#930979: marked as done (ITP: membernator -- Tool to scan membership cards to establish if they are valid)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:17 +
with message-id 
and subject line Bug#930979: fixed in membernator 1.0.1-1
has caused the Debian Bug report #930979,
regarding ITP: membernator -- Tool to scan membership cards to establish if 
they are valid
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.)


-- 
930979: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=930979
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Louis-Philippe Véronneau 


Package name: membernator
Version : 1.0.1
URL : https://gitlab.com/baldurmen/membernator
License : ISC
Programming Lang: Python
Description : Tool to scan membership cards to establish if they are
  valid

membernator is a tool that can be used to scan membership cards and
establish if they're valid or not against a CSV database. It relies on a
graphical user interface and can be used by typing IDs manually or using
a barcode scanner.

My packaging efforts can be found at:
https://salsa.debian.org/python-team/applications/membernator

-- 
  ⢀⣴⠾⠻⢶⣦⠀
  ⣾⠁⢠⠒⠀⣿⡁  Louis-Philippe Véronneau
  ⢿⡄⠘⠷⠚⠋   po...@debian.org / veronneau.org
  ⠈⠳⣄



signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: membernator
Source-Version: 1.0.1-1

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

Debian distribution maintenance software
pp.
Louis-Philippe Véronneau  (supplier of updated membernator 
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: Thu, 15 Aug 2019 15:24:09 -0400
Source: membernator
Binary: membernator
Architecture: source all
Version: 1.0.1-1
Distribution: unstable
Urgency: medium
Maintainer: Python Applications Packaging Team 

Changed-By: Louis-Philippe Véronneau 
Description:
 membernator - Tool to scan membership cards to establish if they are valid
Closes: 930979
Changes:
 membernator (1.0.1-1) unstable; urgency=medium
 .
   * Initial release (Closes: #930979)
Checksums-Sha1:
 2a9f7791635fd8ffe6093134f98ce6b6cd6f9eaa 2105 membernator_1.0.1-1.dsc
 4e82e75e20d5e12cdc7bb058b31c7570b8c17048 6560 membernator_1.0.1.orig.tar.xz
 fde8652cbcaf868a332e1225a2fd48342b633662 8172 membernator_1.0.1-1.debian.tar.xz
 80d6e6e78e51c4c6aec0d592834e8d27a07eaa20 7712 membernator_1.0.1-1_all.deb
 614151f57e711c7b73046f17d6521023f07368d0 8308 
membernator_1.0.1-1_amd64.buildinfo
Checksums-Sha256:
 5f3384e0017693caff8b678a3de795814bee08d8fb3685a8c036d27b68314e4e 2105 
membernator_1.0.1-1.dsc
 13b75597ef97c2ade0b80ad99ab06b97c1c7a5f477ee464bce01aad1dbaef1d4 6560 
membernator_1.0.1.orig.tar.xz
 4e047b30a39f085fd7b7fb168829d1290f15ed89624c68216c4b5614b784f2ef 8172 
membernator_1.0.1-1.debian.tar.xz
 bcd1560198856c947f69ee28e872ceb3c340d0afb2e5e21429ed7b8661a58abd 7712 
membernator_1.0.1-1_all.deb
 2452ba26fe0ed54d6c4bcb46cb9a18512a8170437f500126d9d6e459e0c075a2 8308 
membernator_1.0.1-1_amd64.buildinfo
Files:
 7715412cfbe62fe2a483f099792256a6 2105 misc optional membernator_1.0.1-1.dsc
 ff4a9ec5e602867fe10bffe6ef2a5b30 6560 misc optional 
membernator_1.0.1.orig.tar.xz
 712aa9b6ce49a97875b4f3855fa4d8ed 8172 misc optional 
membernator_1.0.1-1.debian.tar.xz
 b880773decba2267ec847ba5b108 7712 misc optional membernator_1.0.1-1_all.deb
 601184f0db583fa1929b7837ca5796ff 8308 misc optional 
membernator_1.0.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJDBAEBCgAtFiEExyA8CpIGcL+U8AuxsB0acqyNyaEFAl1/hpUPHGpjY0BkZWJp
YW4ub3JnAAoJELAdGnKsjcmhXDcP/2TXYLn+RdRUotBm+xQGIo9q4zMhZ8h8a3w4
lUwmLRItyQcs7m6M9J+UftgGLSyl2iDv86TTx9r0kyUtX90B7WEvOY1cmLWZNUI6
RL65rxX46SJgI3I5M6k5HYGPVrhflw/Ptwi4ai2vKt/IiFXj6cqOo3vwxzwwxVi/
OeC/SffYTvnMjlFzfHd9OgcEdF2UyonJoOALebLT7yFt0W2iGMpROYYK+5YD/KL3
4HBg9u4EdoMWFYHoQmN4ABAMBUu/DbOJj+4RXdE6pwWuSsXP4eF5UWboSEfosjFk
EE9VjZDGBzLLLvvTkiFdRcDmRN0VEeGcC3Cb0/2BjBv0MlFRQsKYXJrlK6argu/q
dfvJMUdChTGz01rJMrCuBiV+tkpb52zk46S9d51gaYN+q5ev5a8M6LjXbEBpt0oD
imYCvX9rhVbn9tvbe61ITu+2UM29z+OVIE9bCUwxMGejjhFoJBd8l5Fug7RzRS4B

Bug#941976: marked as done (ITP: apiguardian -- Level of stability annotation for frameworks or applications)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:12 +
with message-id 
and subject line Bug#941976: fixed in apiguardian 1.1.0-1
has caused the Debian Bug report #941976,
regarding ITP: apiguardian -- Level of stability annotation for frameworks or 
applications
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.)


-- 
941976: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941976
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Emmanuel Bourg 

* Package name: apiguardian
  Version : 1.1.0
  Upstream Author : Marc Philipp, Sam Brannen
* URL : https://github.com/apiguardian-team/apiguardian
* License : Apache-2.0
  Programming Lang: Java
  Description : Level of stability annotation for frameworks or applications

API Guardian provides the @API annotation that is used to annotate public
types, methods, constructors, and fields within a framework or application
in order to publish their status and level of stability and to indicate
how they are intended to be used by consumers of the API.

This package this a dependency of JUnit 5. It'll be maintained
by the Java Team.
--- End Message ---
--- Begin Message ---
Source: apiguardian
Source-Version: 1.1.0-1

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

Debian distribution maintenance software
pp.
Emmanuel Bourg  (supplier of updated apiguardian package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 08 Oct 2019 12:27:26 +0200
Source: apiguardian
Binary: libapiguardian-java
Architecture: source all
Version: 1.1.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Emmanuel Bourg 
Description:
 libapiguardian-java - Level of stability annotation for frameworks or 
applications
Closes: 941976
Changes:
 apiguardian (1.1.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #941976)
Checksums-Sha1:
 8a0e917b99c88f800d1281b33c5ff2b3aefa264b 2020 apiguardian_1.1.0-1.dsc
 98da86bc8d89731a4ada277f62d005503c86bb1b 9788 apiguardian_1.1.0.orig.tar.xz
 27502a787e7ac5cbe5fc21ed4d2497475f1cf846 1960 apiguardian_1.1.0-1.debian.tar.xz
 15cbaa493d4ecd620db130851a73c4d01025462c 12141 
apiguardian_1.1.0-1_amd64.buildinfo
 e4623f212f0fdff4438f10af5ce06aae9fc532f8 3940 
libapiguardian-java_1.1.0-1_all.deb
Checksums-Sha256:
 4219ef0d66008cf689d59970b4e2191a6845fb6e1af53289681929bd37a62a83 2020 
apiguardian_1.1.0-1.dsc
 c3cb62b6c844785f455da77fd59940aeb4065afe5e487772b9c2267f0717ec5e 9788 
apiguardian_1.1.0.orig.tar.xz
 aaa284ba00ed14333c8211e3ba13fc20157c32fef2bd2f285673f405451e08b2 1960 
apiguardian_1.1.0-1.debian.tar.xz
 0ded90cd3e1a0ff7ebc16e2de4521473c4584b4869a4ffce76fabcdc7e331e7c 12141 
apiguardian_1.1.0-1_amd64.buildinfo
 1cdc1c1ff609167ad0b21801bbedecf3b38b3a03b79088cc60de634fe50db834 3940 
libapiguardian-java_1.1.0-1_all.deb
Files:
 6309cfffa1a6597942c210c8a153abe3 2020 java optional apiguardian_1.1.0-1.dsc
 00739de61878d11d2413c84504e547d9 9788 java optional 
apiguardian_1.1.0.orig.tar.xz
 fef52f323a4b395c1aaa7e4322b62abd 1960 java optional 
apiguardian_1.1.0-1.debian.tar.xz
 cdcc3612348f7c698b978bd911210b6a 12141 java optional 
apiguardian_1.1.0-1_amd64.buildinfo
 b8d5285ef903c4cfb80365ac7f782e80 3940 java optional 
libapiguardian-java_1.1.0-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEuM5N4hCA3PkD4WxA9RPEGeS50KwFAl2cZUsACgkQ9RPEGeS5
0KzLuQ/+KJsZXNnIVD7sWeGqbA/Av8mwIwZLaVmNER750KoYdD8YBFXwBOPZQH3F
a4xb+l7GfTSA12LZnLOonFbJjR9CMTbTH9sGYn8yNW42crUoJbWpEhFt/Xig40WM
jRZv7TzxhrTxjRfmHnx0jCeczkFv+rndUkPrIrAokFJ72K5Ko+ALTG5HDqoTMgHr
boSTuYiJgoETw52IFg2i2kalfVuZXoJAQlw4D5wdfUFewK0W0STM463jKNR9Uari
WbkSV1cwUW4F/HxtTdOYSMoMfjxPIOQT27V8V35sxmAveLZa5eztOSzgMJUK52A2
jn5KOAH9oZbbPbizcF4gzIojNy8hHCKXODMsHknHeMnM3fVgBKKRuvs1kgZkp7zz
5VQPbQeUcQozVyP4M0Z1MMioRDcd3+V6k1rTje8zIdhSc85uq7+sqoFev9D+c1/k
KYS/k2YJis2BJNdCN0EppHqEV1Q3X3bmLjr3wfqNutI4SV2gZHl9PfpGvTGKmSeO
a8rrun0UeEGH4QTMDeb7qfhURJJkAW1LC8+sezSetjrQ0BHCjueRIRsI2flBld90

Bug#935785: marked as done (ITP: eckit -- C++ toolkit for ECMWF tools and Applications)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:14 +
with message-id 
and subject line Bug#935785: fixed in eckit 1.1.1-1
has caused the Debian Bug report #935785,
regarding ITP: eckit -- C++ toolkit for ECMWF tools and Applications
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.)


-- 
935785: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=935785
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Alastair McKinstry 

* Package name: eckit
  Version : 1.1.1
  Upstream Author : European Centre for Medium-Range Forecasts 

* URL : http://github.com/ecmwf/eckit
* License : Apache 2
  Programming Lang: C++
  Description : C++ toolkit for ECMWF tools and Applications

ecKit is a cross-platform c++ toolkit that supports development of tools and 
applications at ECMWF. It is based on code developed over the last 20 years 
within the MARS software and was re-factored out to be reused by other 
applications. It provides a an abstraction layer on top of the operating 
system, so it is easier to port code to new architectures. It is developed 
taking into account the robustness requirements of running production systems 
at ECMWF. The main focus is UNIX/POSIX systems, and it has been thoroughly 
tested on AIX, Linux and Mac OSX. Historically, the code base pre-dates and in 
some way can be seen as a leaner substitute for some 'Boost' libraries.

It features facilities to easily handle, in a cross-platform way:

multi-threading
json and yaml parsing
object serialization and persistence
configuration of user options and resources
file-system abstraction
regular expressions
socket networking
http protocol
type-to-type conversions
asynchronous IO
asynchronous processing
exception handling and stack dumping
MPI object-oriented wrapper
linear algebra abstraction with multiple backends (BLAS, MKL, Armadillo, 
Eigen3)
advanced container classes
space partition trees
file-mapped arrays


libeckit is currently already used in several ECMWF packages on Debian 
(metview, odb-api) and provided in odb-api.
This will refactor it out as a shared library.
--- End Message ---
--- Begin Message ---
Source: eckit
Source-Version: 1.1.1-1

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

Debian distribution maintenance software
pp.
Alastair McKinstry  (supplier of updated eckit package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 01 Oct 2019 16:10:53 +0100
Source: eckit
Binary: libeckit-dev libeckit-utils libeckit-utils-dbgsym libeckit0d 
libeckit0d-dbgsym
Architecture: source amd64
Version: 1.1.1-1
Distribution: unstable
Urgency: medium
Maintainer: Alastair McKinstry 
Changed-By: Alastair McKinstry 
Description:
 libeckit-dev - Fortran toolkit for interoperating Fortran with C/C++
 libeckit-utils - Library Fortran toolkit for interoperating Fortran with C/C++
 libeckit0d - Library Fortran toolkit for interoperating Fortran with C/C++
Closes: 935785
Changes:
 eckit (1.1.1-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #935785)
Checksums-Sha1:
 bde0d3026a42765ee930697c2f07efe067fed55a 1982 eckit_1.1.1-1.dsc
 b124e0d9118477e38d595b0ae984e06cb3622f81 636671 eckit_1.1.1.orig.tar.gz
 d1b59a81dd9a456b235f559d82a8306f0c7547d6 3088 eckit_1.1.1-1.debian.tar.xz
 d8a3d4009ed4edd1cc1ea50b36d91155d75a6b2e 8395 eckit_1.1.1-1_amd64.buildinfo
 7ead110673aba9181b9e45f32f22913ca4e0d32a 168920 libeckit-dev_1.1.1-1_amd64.deb
 547c839cba105f0c0462e5fe2e65a8d74fd3e899 31308 
libeckit-utils-dbgsym_1.1.1-1_amd64.deb
 2af6971b8e3181c67f07c185372ffad38ef48004 6968 libeckit-utils_1.1.1-1_amd64.deb
 79e913e3ee633e8918c0ea0aafb9bab4f2feb03b 7422316 
libeckit0d-dbgsym_1.1.1-1_amd64.deb
 70a08a6a36fb5760095a35df073088231f5d8917 781288 libeckit0d_1.1.1-1_amd64.deb
Checksums-Sha256:
 46f03e91c792228d12b1090ee48e1fd99f95cb132d46da2928088c943e847c43 1982 
eckit_1.1.1-1.dsc
 

Bug#940094: marked as done (ITP: mmtf-java -- Java API for macromolecular transmission format encoder/decoder)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:18 +
with message-id 
and subject line Bug#940094: fixed in mmtf-java 1.0.9-1
has caused the Debian Bug report #940094,
regarding ITP: mmtf-java -- Java API for macromolecular transmission format 
encoder/decoder
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.)


-- 
940094: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=940094
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Owner: Andrius Merkys 
Severity: wishlist

* Package name    : mmtf-java
  Version : 1.0.9
  Upstream Author : RCSB PDB
* URL : https://github.com/rcsb
* License : Apache-2.0
  Programming Lang: (C, C++, C#, Perl, Python, etc.)
  Description : Java API for macromolecular transmission format
encoder/decoder
 The Macromolecular Transmission Format (MMTF) is a compact binary format to
 transmit and store biomolecular structures for fast 3D visualization and
 analysis.

mmtf-java is a dependency of DataWarrior which I intend to package.

Remark: This package is to be maintained with Debichem Team at
   https://salsa.debian.org/debichem-team/mmtf-java
--- End Message ---
--- Begin Message ---
Source: mmtf-java
Source-Version: 1.0.9-1

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

Debian distribution maintenance software
pp.
Andrius Merkys  (supplier of updated mmtf-java 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: Thu, 08 Aug 2019 01:54:07 -0400
Source: mmtf-java
Binary: libmmtf-java
Architecture: source all
Version: 1.0.9-1
Distribution: unstable
Urgency: medium
Maintainer: Debichem Team 
Changed-By: Andrius Merkys 
Description:
 libmmtf-java - Java API for macromolecular transmission format encoder/decoder
Closes: 940094
Changes:
 mmtf-java (1.0.9-1) unstable; urgency=medium
 .
   * Initial release (Closes: #940094)
Checksums-Sha1:
 5d0200b84fe86981d432afe3948c49730a4f415c 2132 mmtf-java_1.0.9-1.dsc
 34a4979dc88ca6a5c86af3f7a83e10b1043740a4 6422256 mmtf-java_1.0.9.orig.tar.xz
 257e254f2e955a8908304f9d0fc0a252ee8823c3 5772 mmtf-java_1.0.9-1.debian.tar.xz
 9a7cd4cfe16fbfc18833ddfe7c98fdce5fe68d40 186536 libmmtf-java_1.0.9-1_all.deb
 c05810666e081154247eff36da8a925a05475e49 13251 
mmtf-java_1.0.9-1_amd64.buildinfo
Checksums-Sha256:
 2c5c68066ca9a47c25f99dc011b574355494a25e5f54c3f9e060a91356792bef 2132 
mmtf-java_1.0.9-1.dsc
 86911b9650aa5da1561ee4b6f135cd6f1e1dda45231d3a91d0a5d21259f3238b 6422256 
mmtf-java_1.0.9.orig.tar.xz
 3ee7fd1eb5c5f5883913fb867e8c65bdba7484b8748a76169fbf0e1878e920f6 5772 
mmtf-java_1.0.9-1.debian.tar.xz
 4f1f959bd94d7a2d485da0469e7c7bac12a3ff45e93e6a4f2bfcff1bc623f811 186536 
libmmtf-java_1.0.9-1_all.deb
 654a71831b084ab3c89d17aa1e65de2cfdd837b12af5a01a4238a685c5a28f9b 13251 
mmtf-java_1.0.9-1_amd64.buildinfo
Files:
 326c124d10abce9f2f2d3167d1428c11 2132 science optional mmtf-java_1.0.9-1.dsc
 0d9a08fc7bdc63d5b95143b74fd0320a 6422256 science optional 
mmtf-java_1.0.9.orig.tar.xz
 a3c350efd32aec2f3dd8ea80b1fa8f7a 5772 science optional 
mmtf-java_1.0.9-1.debian.tar.xz
 dedcef786db25aaf9abd2f6ca56e7fa9 186536 java optional 
libmmtf-java_1.0.9-1_all.deb
 61935451b5f46800fb0d1699111ff022 13251 science optional 
mmtf-java_1.0.9-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEdyKS9veshfrgQdQe5fQ/nCc08ocFAl16HPQSHG1lcmt5c0Bk
ZWJpYW4ub3JnAAoJEOX0P5wnNPKHKjkQAIGmN5ir9ybt0E6JcO+xEJ3UkkKsk5gU
kUIUrxcD7mc+DDfAomITrXE2FebsB4tQkTniWimOn8AZ+mltdw6k6/S2vvIfi5Fk
qNXN7rFjPcEG2Ix5GLw/0/VR4MBaC2Ncl8e9h9qZi+jHyD88vTnKlF8j9fqqxxT+
Fr2rC5JZNCqXQlHjH8ytmCEJQGwH/roPPVCeuBX/esglmMmWFbSnADNLnKKdtwG/
5Jct4Z7v3b+CR3dEWUQ++tjTyZ8v5nppJuzxKw6LbLGAlFe8I0jpeacpRbp7lMx3
Xy1wlFCs5BzGuG+er56kUir0A/hvCvvPj+zPjtwyVt9L19tOf6K8aYWcdoeVuXAu
jUSLQVr7nqQy3xp/+ua1lDWQDGh//llyyrgtZQbvIt6SdP5yYaqV2tsXM6LPLiNP
Ayqc+QY9ZuGIEuNtpu0lVNQHGWjGSuc3lhAR9LF9tcZoF2QI8LigonyuyjzS1AZD
kTcwBVwLrt+ucxiaYMgJMAm8FTwwDGJRieKcL/IfN5WX7DmCU/OxNwpgNjil4Fcy
ax1zBYtubU7MFFNEzgfNUq9fmz4QSaJ7hzc59B/LDLawkMr35WY9tU4LWTogsGPy

Bug#934964: marked as done (ITP: afl++ -- security related binary fuzzer (fork of american Fuzzy Lop))

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:12 +
with message-id 
and subject line Bug#934964: fixed in aflplusplus 2.53c-1
has caused the Debian Bug report #934964,
regarding ITP: afl++ -- security related binary fuzzer (fork of american Fuzzy 
Lop)
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.)


-- 
934964: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=934964
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist

* Package name: afl++
  Version : 2.53c
  Upstream Author : Marc Heuse 
* URL : https://github.com/vanhauser-thc/AFLplusplus
* License : Apache-2.0
  Programming Lang: C
  Description : security related binary fuzzer (fork of American Fuzzy Lop)

This is a fork of American Fuzzy Lop [1], which isn't actively further developed
anymore [2]. The latest release of AFL++ includes a lot new features, fixes and
improvements.

Packaging this would replace AFL in the Debian archive [3], which doesn't build 
with
LLVM >= 7 [4], and therefore is going to be removed so that LLVM 6 could be 
finally
dropped.

Thanks,
Daniel Stender

[1] https://github.com/google/afl

[2] https://twitter.com/Dor3s/status/1154737061787660288

[3] https://tracker.debian.org/pkg/afl

[4] https://bugs.debian.org/912785
--- End Message ---
--- Begin Message ---
Source: aflplusplus
Source-Version: 2.53c-1

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

Debian distribution maintenance software
pp.
Raphaël Hertzog  (supplier of updated aflplusplus package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 17 Sep 2019 10:52:07 +0200
Source: aflplusplus
Binary: afl++ afl++-clang afl++-clang-dbgsym afl++-dbgsym afl++-doc
Architecture: source amd64 all
Version: 2.53c-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Security Tools 
Changed-By: Raphaël Hertzog 
Description:
 afl++  - instrumentation-driven fuzzer for binary formats
 afl++-clang - instrumentation-driven fuzzer for binary formats - clang support
 afl++-doc  - instrumentation-driven fuzzer for binary formats - documentation
Closes: 934964
Changes:
 aflplusplus (2.53c-1) unstable; urgency=medium
 .
   [ Raphaël Hertzog ]
   * Team upload.
   * Fix Vcs-Git and Vcs-Browser URLs.
   * Note for ftpmasters: the source package contains a number of binary-only
 files in the "testcases" and "docs/vuln_samples/" subdirectories. We
 believe that they are their own sources as they have been manually crafted
 to meet specific requirements. Those files were already part of the former
 "afl" package that recently got removed. Thank you.
 .
   [ Sophie Brun ]
   * Initial releases (Closes: #934964)
   * Add more info in patches
Checksums-Sha1:
 a1462ea38628628a37eb9f33003d9b42b672fb97 1857 aflplusplus_2.53c-1.dsc
 786b4ae0e6767b77ef5c3df5a1b4269420c85816 934915 aflplusplus_2.53c.orig.tar.gz
 94cac39b7432d291d079c77cc7f018144bc0537a 7852 aflplusplus_2.53c-1.debian.tar.xz
 388bd314329b6fe57b8a479d0b22a096ac080aea 313540 
afl++-clang-dbgsym_2.53c-1_amd64.deb
 8375d5a61124cb3cd46c3ce535f1b547d9ec5e8a 61872 afl++-clang_2.53c-1_amd64.deb
 d7d74fa4b83b523931b84d9db11c5a695d1b1c53 355228 afl++-dbgsym_2.53c-1_amd64.deb
 efb6699048c8f2900a13af6a9745c10eb2f6e5e6 127996 afl++-doc_2.53c-1_all.deb
 43d20ee5751737f56b95b23cdde1d4ec199e4cc6 162820 afl++_2.53c-1_amd64.deb
 2cb30e6772686712bc75112306aea4f30b5cfba7 6927 
aflplusplus_2.53c-1_amd64.buildinfo
Checksums-Sha256:
 a9624b181df03d63b46aa17f180b2a58ed66ebf67e2a2a6336219ad0a558040c 1857 
aflplusplus_2.53c-1.dsc
 3147d44f01378b46c4234090781e5cb13c9721a72701c28ed4f18b7256d452e7 934915 
aflplusplus_2.53c.orig.tar.gz
 404816cb19f151e1f7c141ef89585cfabbcbc864d98f3750c46b07d005f33b08 7852 
aflplusplus_2.53c-1.debian.tar.xz
 91c0b4a690764ab1660fc8528703b9a2d01e8717fcd3e5c40b2b477f2b264f42 313540 
afl++-clang-dbgsym_2.53c-1_amd64.deb
 58f72d92b7c03877a8f92190fad1037a2c757939615070afafe75004753f89a8 61872 
afl++-clang_2.53c-1_amd64.deb
 

Bug#934142: marked as done (ITP: python-in-toto -- software supply chain security framework)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:16 +
with message-id 
and subject line Bug#934142: fixed in in-toto 0.4.0-1
has caused the Debian Bug report #934142,
regarding ITP: python-in-toto -- software supply chain security framework
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.)


-- 
934142: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=934142
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist

Please see corresponding RFS ticket for details (description, license, URLs):
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=931013

-- 
lukas.puehrin...@nyu.edu
PGP fingerprint: 8BA6 9B87 D43B E294 F23E  8120 89A2 AD3C 07D9 62E8



signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: in-toto
Source-Version: 0.4.0-1

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

Debian distribution maintenance software
pp.
Lukas Puehringer  (supplier of updated in-toto 
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: Wed, 11 Sep 2019 14:52:01 +0100
Source: in-toto
Binary: in-toto
Architecture: source all
Version: 0.4.0-1
Distribution: unstable
Urgency: low
Maintainer: in-toto developers 
Changed-By: Lukas Puehringer 
Description:
 in-toto- software supply chain security framework
Closes: 934142
Changes:
 in-toto (0.4.0-1) unstable; urgency=low
 .
   * Initial Debian release. (Closes: #934142)
Checksums-Sha1:
 773570d44e59bf3af07c8090c9930ea31b9998dd 2450 in-toto_0.4.0-1.dsc
 dafed4ecad63137c36c232c60260dc222dae66f6 169677 in-toto_0.4.0.orig.tar.gz
 7579e84480e0f5a59049f55c64a606e221da3e30 874 in-toto_0.4.0.orig.tar.gz.asc
 936cfcf5058b60431f627ae190840222540fd42b 8660 in-toto_0.4.0-1.debian.tar.xz
 743d8b945bf49e887eac59b374d5e30fb419acdb 65384 in-toto_0.4.0-1_all.deb
 b652a9cedc7cef107365b2141dfc26eed00ca9e3 7586 in-toto_0.4.0-1_amd64.buildinfo
Checksums-Sha256:
 5c52e1283e245cddc5ffda6337aa213355287c217fff1b093510350dcbeea6b9 2450 
in-toto_0.4.0-1.dsc
 cf400aa0eb637df919c908902e06b1c41bb46d8c085ddaa4d95ae83f5ca6def4 169677 
in-toto_0.4.0.orig.tar.gz
 24f31238bee364714240840532776ad998597461990f3209f25a25e3283b612f 874 
in-toto_0.4.0.orig.tar.gz.asc
 0705c7331173680b27dce0f544fa43b1c007451f98841855b2c1c88e13944945 8660 
in-toto_0.4.0-1.debian.tar.xz
 0b9ab829b0a7be94d878325c875ed7b2d7ad8628c0a0f0a1ba1623825a497d0b 65384 
in-toto_0.4.0-1_all.deb
 4edf0e72034f62b66f0965581701eaa88aac745e70075a425e435238938f92cf 7586 
in-toto_0.4.0-1_amd64.buildinfo
Files:
 76a0dd614759dd6ff4286f6ef062244e 2450 utils optional in-toto_0.4.0-1.dsc
 892d0462e770a997b770b68df1f71726 169677 utils optional 
in-toto_0.4.0.orig.tar.gz
 bd84b068c7c7a57d9a0cb7f7bcb35349 874 utils optional 
in-toto_0.4.0.orig.tar.gz.asc
 bf44de822564b29cf7bfdb4d43922bf0 8660 utils optional 
in-toto_0.4.0-1.debian.tar.xz
 d5ff51c9c4cf203a99e681c2dfd37252 65384 utils optional in-toto_0.4.0-1_all.deb
 0ebb3fd696f92ac9893c9805c02aa643 7586 utils optional 
in-toto_0.4.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEuL9UE3sJ01zwJv6dCRq4VgaaqhwFAl2Thk0ACgkQCRq4Vgaa
qhwK8A/+JOmu179sajNxfHGwXTcICB3KOun2Tk+BMatWUgDJdvQH2wLply3VRddX
h8sS4Gk5hwEw+Hu+UK0M441lNfi39VMRJ+2nN/KdYhuMsfwAZA3rWl42lQFcCIzH
Yu80l4WVBAoFi52uL18tZqmm+A5gcv9HpqDxviOmrZlFgiWYx7Ri7a7IRD2bnYSn
vGB33mEnUmuCAOgXg03iU8DZjWItCSi5z6qzXId3AutJJbntIYvNgDF5pU84YKbD
LV9YPs1B1b4thGS8HewaaU1ssIOGQkD4bbhmqwEf/afZm1OC7L1gi2K5TZUUwE4r
FXEgf9oUhCxmHYs1hAkJ0mnWYWTtbou2+DxT0774MDxS/OS0Rua9dDIJ6Jb5pTG3
ueuvpkHRSraLXs4WxOBFlvARO53FrRKH/ecNroQIPnaPIhxZokqGH007usjTQ/ZZ
Qn9ofczuePZa93UNv6sWpGK47o9O/UexcDgtjOhFBlIIMProBS0UCK/yMiij6R81
IurTgqE0fQw3KrfuSTSwfl+FuUwfvriFO+W/Rsmxor1uc8Kz955nySujg7EnRVEB
JJYP/TBOMcYCjR3KZ1VSM13xt9bODAvPfxuOPcBuR+6ReX8gWbALkcOsSW6lnm8I
Wh+idq19029Qg8Xtga5lPHAKGzy2HPn41PQQTus73/2i56I9ysQ=
=6vbE
-END PGP SIGNATURE End Message ---


Bug#927524: marked as done (Updating the mdcfg Uploaders list)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 20:52:12 +
with message-id 
and subject line Bug#927524: fixed in mdcfg 1.64
has caused the Debian Bug report #927524,
regarding Updating the mdcfg Uploaders list
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.)


-- 
927524: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927524
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: mdcfg
Version: 1.63
Severity: minor
User: m...@qa.debian.org
Usertags: mia-teammaint

Christian Perrier  has retired, so can't work on
the mdcfg package anymore (at least with this address).

We are tracking their status in the MIA team and would like to ask you
to remove them from the Uploaders list of the package so we can close
that part of the file.

(If the person is listed as Maintainer, what we are asking is to please
step in as a new maintainer.)

Thanks.
--- End Message ---
--- Begin Message ---
Source: mdcfg
Source-Version: 1.64

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

Debian distribution maintenance software
pp.
Holger Wansing  (supplier of updated mdcfg package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 21:39:05 +0200
Source: mdcfg
Architecture: source
Version: 1.64
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Holger Wansing 
Closes: 927524
Changes:
 mdcfg (1.64) unstable; urgency=medium
 .
   * Team upload
 .
   [ Cyril Brulebois ]
   * Remove Christian Perrier from Uploaders, with many thanks for all
 his contributions over the years! (Closes: #927524)
 .
   [ Holger Wansing ]
   * Add comment for translators, to keep main menu entry below a 55 columns
 limit. This updates all po|pot files.
   * Remove trailing whitespace from control file, to fix lintian tag.
 .
   [ Updated translations ]
   * Croatian (hr.po) by gogogogi
   * Icelandic (is.po) by Sveinn í Felli
   * Portuguese (pt.po) by Miguel Figueiredo
Checksums-Sha1:
 1c2660578e903e536065967bc199e0a97be9f6a9 1641 mdcfg_1.64.dsc
 06e63a73610798db6b80c3b2640c569c7830bafc 145996 mdcfg_1.64.tar.xz
 055dbe9868c47977128c43a0bd6154bc95106403 5642 mdcfg_1.64_amd64.buildinfo
Checksums-Sha256:
 9b951b9e237c592ed50b6f056cc1f0ab0e632cc8de0d8e03665eca3c1710e883 1641 
mdcfg_1.64.dsc
 27dd4f1113a71a9c9976b061752d1890c42c1748a18913e00382fb2ba79a031f 145996 
mdcfg_1.64.tar.xz
 8c8812f4781c95427bc835ec6298dbb1f195888785bf26ff7cb98e4ccb16 5642 
mdcfg_1.64_amd64.buildinfo
Files:
 9234e028b2c6d8b5ee078e3a72cfc68e 1641 debian-installer optional mdcfg_1.64.dsc
 c7d109d97f196c728e46d4670a7d2be2 145996 debian-installer optional 
mdcfg_1.64.tar.xz
 e042113fa1bb7a15d8fd761238fefa97 5642 debian-installer optional 
mdcfg_1.64_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEESWrG6BRCSzSFCDUpWfGHyhVusHYFAl2jf2AVHGh3YW5zaW5n
QG1haWxib3gub3JnAAoJEFnxh8oVbrB23SoQALKB/BeiBWh0tipWVvdLpzYtgKVf
1Iw5/ekJLRaGYr7gbvQ8dbgUrPWtHPEc9KnOpqt5ebkhpzoW0N7hN+h0NKlKWA/W
cVZe20rgybID74AgC12dyntibIwcm7vJqMLmCVkxRaeWYAZhkZa00fJOD8YI3lSS
A9jUdmlUkSZ5IobJJNhjRfuCNHUETrtuxG5t5KtFuCP2eTgvEKvNwuQM0rbPMZfn
jSP3RdYUqNpThYC2aHw90hyMSvqzLJWwAX5aysbhdOdgkKNAj30iGMRqtLYJTP1G
3Ur1JGJ6GVfgOwmCAMyVMOvY6JqI7tCbC/NirqMrIacLoVlmTffJGO79pBv9WmLc
UO0AxqQ6Ck80OrbXvvm2TVHKVMDiMThbl0Pg5pMBdtXhIpFZVUA0JABuHtwIILmz
qshiX5KcWKooGffhRn9zPt38bAGNcXGqtgX8q9ntpfviioLQg9agt1+fgd1DY+yM
sQF5x77gF8zNyeFtlnHjqI3kSfbd2ADMDHa5pI5cPvpCQBKgkUly260Oovcvqq9T
AlkL/IDIgubYt4r3GHISqSIWwDPyJVXOlNmroSBR6+uKn3iUP0g0XQ/Nd5LskQ9b
Fn2kyXL1k0Vrysy7lToE+3Oe1QECsGUk0elOrKhJXjVZFqHJfG0w4DRBu8ZBY4me
fUHm0HUVaGDppamc
=CE46
-END PGP SIGNATURE End Message ---


Bug#927506: marked as done (Updating the s390-netdevice Uploaders list)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 20:54:34 +
with message-id 
and subject line Bug#927506: fixed in s390-netdevice 0.0.69
has caused the Debian Bug report #927506,
regarding Updating the s390-netdevice Uploaders list
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.)


-- 
927506: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927506
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: s390-netdevice
Version: 0.0.68
Severity: minor
User: m...@qa.debian.org
Usertags: mia-teammaint

Christian Perrier  has retired, so can't work on
the s390-netdevice package anymore (at least with this address).

We are tracking their status in the MIA team and would like to ask you
to remove them from the Uploaders list of the package so we can close
that part of the file.

(If the person is listed as Maintainer, what we are asking is to please
step in as a new maintainer.)

Thanks.
--- End Message ---
--- Begin Message ---
Source: s390-netdevice
Source-Version: 0.0.69

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

Debian distribution maintenance software
pp.
Holger Wansing  (supplier of updated s390-netdevice 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 22:14:27 +0200
Source: s390-netdevice
Architecture: source
Version: 0.0.69
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Holger Wansing 
Closes: 927506
Changes:
 s390-netdevice (0.0.69) unstable; urgency=medium
 .
   * Team upload
 .
   [ Cyril Brulebois ]
   * Remove Christian Perrier from Uploaders, with many thanks for all
 his contributions over the years! (Closes: #927506)
 .
   [ Holger Wansing ]
   * Add comment for translators, to keep main menu entry below a 55 columns
 limit. This updates all po|pot files.
 .
   [ Updated translations ]
   * Croatian (hr.po) by gogogogi
Checksums-Sha1:
 af60bc2f49a7fb12fb8319809e9cfdbe379c2449 1795 s390-netdevice_0.0.69.dsc
 45eddb4f1849ad658bf320c96dbec17cf7d9bddf 96292 s390-netdevice_0.0.69.tar.xz
 b96f9d7ad52a06c1a0ccf9a3e4c4f1e06114fc3e 5722 
s390-netdevice_0.0.69_s390x.buildinfo
Checksums-Sha256:
 f1ae89c2b85f5b5caf251c8316685187e99e9647c78c0edc6f90c16efe366714 1795 
s390-netdevice_0.0.69.dsc
 eed104b7742594addfc520e5a699f508f6080cd93bac3f5bdf6557e0f1e7f99c 96292 
s390-netdevice_0.0.69.tar.xz
 28251b08612cc94e73d9e56c5ac391e8309619b83ba436dfa606d76a4b20b3ae 5722 
s390-netdevice_0.0.69_s390x.buildinfo
Files:
 3cde3b210168c28b88dc70700385b16b 1795 debian-installer standard 
s390-netdevice_0.0.69.dsc
 49af6f6af80b8dc30aafc757b53e74e0 96292 debian-installer standard 
s390-netdevice_0.0.69.tar.xz
 24b5423672129ae78f00250885360b81 5722 debian-installer standard 
s390-netdevice_0.0.69_s390x.buildinfo

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEESWrG6BRCSzSFCDUpWfGHyhVusHYFAl2jh1MVHGh3YW5zaW5n
QG1haWxib3gub3JnAAoJEFnxh8oVbrB2uicP/2/B43J7KH+EoeXDGZGwL31lywUC
XQRWtC9nw9uozdN4KJQ8NVxz5byerOmge011XyJ23uJV9wAZvp1aUxuLZDB6wRU5
YdXojHaknHnF6XvgVpG8DfYXYm6KbmNNubPrfj1QTvA045B+9iAsvR/eKkPYIF2u
4UtRzs1FPRKWFMQjy4j5MC7DqtdIDps+ltLn/FE05u1t6SiS/VKPVbxDNCllg0Ju
Tw7XwIZLwR5JYemBc9nusfGGVIoNIsNh2FWClrb3LuR59ORHFSUiHuibzNMbka6q
UInwo4b/UzOK2hG2occ2xxgMok/Df5rpKPHgCUYr+mftiSmZJd17LRJY+VOj2yIf
acaE8JsX8embBDQxWF+rqjC4btpCNArtVl00nlhg1FB+XwQmIvY00/JHRIWUcfZ8
YMLfCa6J3nbgZficIVVvycYE8btn7MG0ZlK2yYQ+mWIcRB3UghzquHh+O2iXHAPe
dCiXFzt0hfIzLrUhcW5cwnQTRPPY9S1QYKETSxugETzOGLXOED5VFMQNlXyKgaqy
qP8cnpFnSvqRyqesyKM/ZOD02lNmD9//fQi6IlxgaUyTqtZazb3S+jduiKS8NZtV
oFJ+4N7yctHiagMe/jL4SDT07YLj2aZREyc0FDzRKvIejflv+eU838XwYSrVpzY+
3K19BfVOALmUsscu
=6GZb
-END PGP SIGNATURE End Message ---


Bug#927536: marked as done (Updating the rescue Uploaders list)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 20:54:04 +
with message-id 
and subject line Bug#927536: fixed in rescue 1.77
has caused the Debian Bug report #927536,
regarding Updating the rescue Uploaders list
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.)


-- 
927536: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927536
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: rescue
Version: 1.67 1.75 1.76
Severity: minor
User: m...@qa.debian.org
Usertags: mia-teammaint

Christian Perrier  has retired, so can't work on
the rescue package anymore (at least with this address).

We are tracking their status in the MIA team and would like to ask you
to remove them from the Uploaders list of the package so we can close
that part of the file.

(If the person is listed as Maintainer, what we are asking is to please
step in as a new maintainer.)

Thanks.
--- End Message ---
--- Begin Message ---
Source: rescue
Source-Version: 1.77

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

Debian distribution maintenance software
pp.
Holger Wansing  (supplier of updated rescue package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 22:07:29 +0200
Source: rescue
Architecture: source
Version: 1.77
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Holger Wansing 
Closes: 927536
Changes:
 rescue (1.77) unstable; urgency=medium
 .
   * Team upload
 .
   [ Cyril Brulebois ]
   * Remove Christian Perrier from Uploaders, with many thanks for all
 his contributions over the years! (Closes: #927536)
 .
   [ Updated translations ]
   * Croatian (hr.po) by gogogogi
   * Icelandic (is.po) by Sveinn í Felli
   * Portuguese (pt.po) by Miguel Figueiredo
Checksums-Sha1:
 32c5bfba271c96e911f2a824d2fbbd398bafc36f 1671 rescue_1.77.dsc
 8dad7fe42fa5d44847539aa0960cadccf1aa724a 140096 rescue_1.77.tar.xz
 96e07138588dc503affb96697823a7b3c3c2c336 5691 rescue_1.77_amd64.buildinfo
Checksums-Sha256:
 86f290c126424ef36e386dc9f6d2a21489d510c22acdaf0f93f7faa573f5e8b8 1671 
rescue_1.77.dsc
 1b18a687064e22aa5dd6cfc1af395e65f6e4a94421d1785b6db34a452131a3c6 140096 
rescue_1.77.tar.xz
 dc4994093aa91ac3f5a1e216e631eb432a2b3ed4f6039cc965c862e8bb46932a 5691 
rescue_1.77_amd64.buildinfo
Files:
 60a79866bbe3aebd7c8b0b9636a33319 1671 debian-installer optional rescue_1.77.dsc
 fe1f35ee4410b9fdc4182e19e81b32e5 140096 debian-installer optional 
rescue_1.77.tar.xz
 32c0e88039dd382e2729c70dcabcdfcd 5691 debian-installer optional 
rescue_1.77_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEESWrG6BRCSzSFCDUpWfGHyhVusHYFAl2jhTMVHGh3YW5zaW5n
QG1haWxib3gub3JnAAoJEFnxh8oVbrB2PZUP/A9JXWTFYA+KQiZ7bJOgUHgB1Lfk
kPpB4gGDw9ngUmgHuUxFpURi3RUnth/Ch3nXZdkbe3el4XqJY+tPh91J5sSUMtRa
LGlRy9DRq+qX+WfcZBpUuUdpPxfFcbl9qpZABvcthgeQGh820RQH96qjlrcGUzS6
nayMbhu2aLKZ0ZofxhRGhYHCPVf2CSG9sLQT+huOytUYnQARW33aLbd8wTFaE/8+
F3ZpGM1un6te9CLpFERaY9FEeSEqv4pWq+Bz44e9t4I6fVnYLZjV1+F0sFRRmyPF
GdoDDBdDi+Qxa4VuZ+JXDe+DqcGUSqk3pAXmoRyxwogOXVwzFRBvG6grqR6j4gkq
QWWDEpqj7qq7w2Wf6hF/cvEaJhAIyy2//3k+HfzouhvKPOVPWDtAZ0rxa7Db9chQ
5Y3eE6IEcBgBUnXLCdcOgF+xcEyXpva6b7rNrIhvhGL5t1pN2fd5Nz484vupMPqz
aQKw3j5UvhdW2nu7GT4+1+UU0Da7OpCNeauqPgn4dgU9h5fxhWBLsL30yX4KzggN
OcR4ROz7e+JXpRI92HNe29qjhXcgH3DNzeIOlX6c0XuaT8YZZCGWLmBQH7JEjCsN
DLKq94vY2ryJIqNBm9UNGozReKoLCRuFbF5SAWZZGZbUa8f1wUrQDjh+8KUMluIF
EkWEV96yYiun3YT2
=aGcK
-END PGP SIGNATURE End Message ---


Bug#927508: marked as done (Updating the nobootloader Uploaders list)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 20:52:25 +
with message-id 
and subject line Bug#927508: fixed in nobootloader 1.57
has caused the Debian Bug report #927508,
regarding Updating the nobootloader Uploaders list
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.)


-- 
927508: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927508
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: nobootloader
Version: 1.56
Severity: minor
User: m...@qa.debian.org
Usertags: mia-teammaint

Christian Perrier  has retired, so can't work on
the nobootloader package anymore (at least with this address).

We are tracking their status in the MIA team and would like to ask you
to remove them from the Uploaders list of the package so we can close
that part of the file.

(If the person is listed as Maintainer, what we are asking is to please
step in as a new maintainer.)

Thanks.
--- End Message ---
--- Begin Message ---
Source: nobootloader
Source-Version: 1.57

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

Debian distribution maintenance software
pp.
Holger Wansing  (supplier of updated nobootloader package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 21:50:03 +0200
Source: nobootloader
Architecture: source
Version: 1.57
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Holger Wansing 
Closes: 927508
Changes:
 nobootloader (1.57) unstable; urgency=medium
 .
   * Team upload
 .
   [ Cyril Brulebois ]
   * Remove Christian Perrier from Uploaders, with many thanks for all
 his contributions over the years! (Closes: #927508)
 .
   [ Holger Wansing ]
   * Add comment for translators, to keep main menu entry below a 55 columns
 limit. This updates all po|pot files.
 .
   [ Updated translations ]
   * Croatian (hr.po) by gogogogi
   * Portuguese (pt.po) by Miguel Figueiredo
Checksums-Sha1:
 6bb34cbadb3aba8e72db2ee99fc4f692a4ada366 1637 nobootloader_1.57.dsc
 00ad83d34bc926fdf6410f7b9e2694108927599e 79872 nobootloader_1.57.tar.xz
 f2e71011cdbbe24616e3f817ad267ada6627344e 5462 nobootloader_1.57_amd64.buildinfo
Checksums-Sha256:
 f73eaff3056ab9de741a658dd0cdea7a5e9bdafc8bcda46c3e7a4b63aacc55c2 1637 
nobootloader_1.57.dsc
 f45e55a6ce7fd339bbd665d90b45091344bd98f47badd8fb6699db2b73860122 79872 
nobootloader_1.57.tar.xz
 4a4487252e86a8413966dc0710990ef8485a65a437ccd827049019d25b4543d8 5462 
nobootloader_1.57_amd64.buildinfo
Files:
 6a96f15b07bd8c391b2f100f13f51809 1637 debian-installer standard 
nobootloader_1.57.dsc
 56344dd08df667960f54b8115ac563f0 79872 debian-installer standard 
nobootloader_1.57.tar.xz
 7dd0cbe57fb64ab5e3248d38ef491218 5462 debian-installer standard 
nobootloader_1.57_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEESWrG6BRCSzSFCDUpWfGHyhVusHYFAl2jgTAVHGh3YW5zaW5n
QG1haWxib3gub3JnAAoJEFnxh8oVbrB2kYwQAIOaNTVkNBCBfRmoPPh6LDAiKRnq
DJ8Wev3lo/DAWx4Qy57tKso7rJc2jnQ4wdDDS3tFWLgzWoiXlF/S98SDZPtDsk98
y6N3E6R8bF8Kne0F1lmH3Bn8m+dTnJoHh9NuogwCreYUvP/FW3rcMeb1/Nkqtn2d
TDwqs2PCZBq/NU7+w0l1li0HfoPQKlWj0Vhswd2EtCqgYWlc5VcOtqX4GFi3iKAv
fsXS5Ob2a55mhVVwr5JcDAf4hJQM4wt0uAVIgtDqG/sysNLh9/vJmxO3wb4/utQG
jZP9VeNJYomy7u6ikzVRJ5s+bp5mC4CPYBEYMpoJWlCDrGQmts5EXMY1r1OFBS22
ynIfqqLKsAHzIAkrFAhhAJwInNuuBKMFV6NIsb2yZ3bvgRxoIfchtpahPmwHO0tn
Ape8iQBMi17tpCCP7pRUlvs3d1QB+I5XHHysM+PKff6LAI8eVBMHLMBb4vaMO+TY
GLCbiFqbEOtd5K5MRVkX9VYpfJcKedakU6IUjX+FftVVKYb+dlwmJK1/REZpgJjX
Lw8Qja+OkneI9jM3TWPF8/5ZUQu1v+wFV4Xaedpou0Z5zGYCMvvRphgzjEO4Rs8R
FCcaigsduTTQgiLnmkg3msERlteaH/2yJBytl9YCysjndsjX9G0jw9cwA9aoEi0P
G3abiblaUC16m+N1
=1D+d
-END PGP SIGNATURE End Message ---


Bug#941167: marked as done (a2jmidid: new upstream and new upstream version)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 17:04:21 +
with message-id 
and subject line Bug#941167: fixed in a2jmidid 9-2
has caused the Debian Bug report #941167,
regarding a2jmidid: new upstream and new upstream version
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.)


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

Package: a2jmidid

Dear debian maintainers,

there is a new upstream source point for a2jmidid: 
https://github.com/linuxaudio/a2jmidid/

and this upstream just released a new version ("9") 2 days ago.

Hope that helps.
Olivier

--
Site web : https://librazik.tuxfamily.org/
Donation : https://liberapay.com/LibraZiK/
Diaspora : 
https://framasphere.org/people/8c184af0c9450134f6682a053625

Mastodon : https://mastodon.xyz/@LibraZiK
--- End Message ---
--- Begin Message ---
Source: a2jmidid
Source-Version: 9-2

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

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated a2jmidid package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 13 Oct 2019 18:36:50 +0200
Source: a2jmidid
Architecture: source
Version: 9-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
Changed-By: Sebastian Ramacher 
Closes: 936104 941167
Changes:
 a2jmidid (9-2) unstable; urgency=medium
 .
   * Team upload
   * Brown paper bag release
 - Include proper changelog
 .
 a2jmidid (9-1) unstable; urgency=medium
 .
   * Team upload
 .
   [ Ondřej Nový ]
   * d/control: Set Vcs-* to salsa.debian.org
 .
   [ Felipe Sateler ]
   * Change maintainer address to debian-multime...@lists.debian.org
 .
   [ Ondřej Nový ]
   * Use debhelper-compat instead of debian/compat
 .
   [ Sebastian Ramacher ]
   * New upstream release (Closes: #941167)
 - Port to Python 3 (Closes: #936104)
   * debian/control:
 - Bump debhelper compat to 12
 - Bump Standards-Version
   * debian/:
 - Point to new upstream
 - Use meson build system and Python 3
Checksums-Sha1:
 1f0c9be3adb28a7b4078c7ca8644760433dc17a8 2006 a2jmidid_9-2.dsc
 3760a4fc84647059cb3a915572b93c1fc18fa7c7 4316 a2jmidid_9-2.debian.tar.xz
Checksums-Sha256:
 fcb84e16832ae5193589a6e229455fef3069fc43ab9463f93530c4e4b85a7eb1 2006 
a2jmidid_9-2.dsc
 3215be4a77d3efe59d27ecb4da39dcf46abb323a14ee936b6290f69db5aea6de 4316 
a2jmidid_9-2.debian.tar.xz
Files:
 23b5b8681acee6c77f65493eab9ed6c5 2006 sound optional a2jmidid_9-2.dsc
 6532c7de04252b0f9d38cf804e55e827 4316 sound optional a2jmidid_9-2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAl2jU2IACgkQafL8UW6n
GZMinRAAnDeNuHcyyyhrGQbEwDkL6Zny/W2nXFTiUGdlzjq3yTP47HE88jOOFJ8J
UKAo3Q+La+BpRWKpc8TiuuGkI53PLG1LIvgTyFl8VwRWh0qs9+jlm3zqhZkYBqPa
VKvxIuIqrXg3QsP80G0mBSQ9i+BTryhqd2ElNkjcwG01MNyIyfQ2P60lLARLof2c
y9ll0sniGegxmveMMhpEb2mfgficVlitHWDuMPToJNB8i/SKdGY4atq0jNrDMH3K
b8ytt3TSlbOkVYoIR0EIB33/JTa6MljH4fTV3rgsfGPSioj3ZTSGV9+yNYTIC7bV
Rwu4JmYz3N1ZslG7BZkJ2udX0EqvejEf9Rt53Tmp2lY+253Mrw9gxa+HWdDp6pDt
E2BbAT6HL3vMPnIVmx3dMK0+t/foXzUsnExaO81apzRmcFvSYGw3j2+fudUNsGLq
tJSnFwL058zEEd3Wpg1X/1nt4m6kP8MWTu8KwWBCG0Wj9U00BAPDLAC1lcej+mng
NmocLMnP1XsqoleMumWxWAV+rJMYyTgenpvmoae1vwsgRHhyOFhu0GVvvtZlmx2m
wMhZxpyF9lUnT49AqH9mKUOv3+NnbSWHr4ZWNWLpw4oE3DRNSibWaZi3AtX89R7/
zMJ6ikw41lsXDbQBnekVkJadoqRVtvhZcEJFP8EqInilTsUTrDU=
=eiFO
-END PGP SIGNATURE End Message ---


Bug#936104: marked as done (a2jmidid: Python2 removal in sid/bullseye)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 17:04:21 +
with message-id 
and subject line Bug#936104: fixed in a2jmidid 9-2
has caused the Debian Bug report #936104,
regarding a2jmidid: Python2 removal in sid/bullseye
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.)


-- 
936104: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=936104
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:a2jmidid
Version: 8~dfsg0-3
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:a2jmidid

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: a2jmidid
Source-Version: 9-2

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

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated a2jmidid package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 13 Oct 2019 18:36:50 +0200
Source: a2jmidid
Architecture: source
Version: 9-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
Changed-By: Sebastian Ramacher 
Closes: 936104 941167
Changes:
 a2jmidid (9-2) unstable; urgency=medium
 .
   * Team upload
   * Brown paper bag release
 - Include proper changelog
 .
 a2jmidid (9-1) unstable; urgency=medium
 .
   * Team upload
 .
   [ Ondřej Nový ]
   * d/control: Set Vcs-* to salsa.debian.org
 .
   [ Felipe Sateler ]
   * Change maintainer address to debian-multime...@lists.debian.org
 .
   [ Ondřej Nový ]
   * Use debhelper-compat instead of debian/compat
 .
   [ Sebastian Ramacher ]
   * New upstream release (Closes: #941167)
 - Port to Python 3 (Closes: #936104)
   * debian/control:
 - Bump debhelper compat to 12
 - Bump Standards-Version
   * debian/:
 - Point to new upstream
 - Use meson build system and Python 3
Checksums-Sha1:
 

Bug#940049: marked as done (ITP: pd.build-cmake-module -- Pure Data CMake Module)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:19 +
with message-id 
and subject line Bug#940049: fixed in pd.build-cmake-module 0.1.0~ds1-1
has caused the Debian Bug report #940049,
regarding ITP: pd.build-cmake-module -- Pure Data CMake Module
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.)


-- 
940049: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=940049
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: IOhannes m zmölnig (Debian/GNU) 

* Package name: pd.build-cmake-module
  Version : 0.1
  Upstream Author : Pierre Guillot
* URL : https://github.com/pierreguillot/pd.build
* License : GPL-3
  Programming Lang: CMake
  Description : Pure Data CMake Module

 Pure Data (also known as Pd) is a real-time graphical programming environment
 for audio and graphics processing.
 It can be easily extended with so called 'externals'
 .
 This package contains a CMake Module for building such externals.

This package is part of the ongoing attempt to package the Pure Data microcosm
for Debian (and a prerequisite of the update of the src:jsusfx package).
I intend to maintain the package under the multimedia-team umbrella.
--- End Message ---
--- Begin Message ---
Source: pd.build-cmake-module
Source-Version: 0.1.0~ds1-1

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

Debian distribution maintenance software
pp.
IOhannes m zmölnig (Debian/GNU)  (supplier of updated 
pd.build-cmake-module package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 13 Sep 2019 11:16:28 +0200
Source: pd.build-cmake-module
Binary: pd.build-cmake-module
Architecture: source all
Version: 0.1.0~ds1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
Changed-By: IOhannes m zmölnig (Debian/GNU) 
Description:
 pd.build-cmake-module - Pure Data CMake Module
Closes: 940049
Changes:
 pd.build-cmake-module (0.1.0~ds1-1) unstable; urgency=medium
 .
   * Initial release (Closes: #940049)
Checksums-Sha1:
 a73a31b21855aa355c4238625a37b16074c52ea9 2122 
pd.build-cmake-module_0.1.0~ds1-1.dsc
 0652f00bed85b17bcd82612792444005f96e8403 35139 
pd.build-cmake-module_0.1.0~ds1.orig.tar.gz
 f5c763232ae1aac163dc7d1fc5bd9fdd676c7a2f 1764 
pd.build-cmake-module_0.1.0~ds1-1.debian.tar.xz
 9f4d39f06ce3e2becbb94f796a51d3575319e433 5952 
pd.build-cmake-module_0.1.0~ds1-1_all.deb
 61be06d1e1de6b15b7d21ce089400145e53af6f4 5588 
pd.build-cmake-module_0.1.0~ds1-1_amd64.buildinfo
Checksums-Sha256:
 62992b25b411789028d75ff37336626e668f52a57b52f9a485eeec5d25e303be 2122 
pd.build-cmake-module_0.1.0~ds1-1.dsc
 0f149001b14d2857f661870797cf77ae896ca23d8ddd8bdd36e5927bdf1ad488 35139 
pd.build-cmake-module_0.1.0~ds1.orig.tar.gz
 b314801c7e78bf01f64968c3b0ba8223881563f805acaece0101eea6358c7100 1764 
pd.build-cmake-module_0.1.0~ds1-1.debian.tar.xz
 8b15de64302d677dc6925e61063c46d3a16a650e613b3013de7740f74194c305 5952 
pd.build-cmake-module_0.1.0~ds1-1_all.deb
 a88607109872eb9ba4979859a04f964c5da5c775b0fb25a95a99d702b0fb18ef 5588 
pd.build-cmake-module_0.1.0~ds1-1_amd64.buildinfo
Files:
 1ec36434934a67f976956d588286b54d 2122 devel optional 
pd.build-cmake-module_0.1.0~ds1-1.dsc
 55a822a42beecd3588d15961ce7c49da 35139 devel optional 
pd.build-cmake-module_0.1.0~ds1.orig.tar.gz
 5783509889a5173f337c525d99d5bcd2 1764 devel optional 
pd.build-cmake-module_0.1.0~ds1-1.debian.tar.xz
 249e12800db9c57313cae3f43068a633 5952 devel optional 
pd.build-cmake-module_0.1.0~ds1-1_all.deb
 216a7cf14aff9dbc805f4c357ca41f15 5588 devel optional 
pd.build-cmake-module_0.1.0~ds1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEdAXnRVdICXNIABVttlAZxH96NvgFAl17X1gACgkQtlAZxH96
Nvh/Sg//ZlL0ZTo6vwmfuEmU0BnhHHQUvXtWcV0nzUgDf12Puqe1Zl5SeTbCBDAo
Drlk09zIU0c7mcwnQV4G7JWbxIHJh1XaHS8MyDbaJybsvj5z7De8T2+FsVazmtQw
g7th402r7mIQBj24GovCI7IuYoOQwPAuE266fE6i3hYrknY0HssZmlvCva426djJ
r2UDr3S0tLLv/Cb2Fq5+3JWFUlMtKXQxRTjp/EdbPFvZ0BogLQi304GimXC0BaGc

Bug#934700: marked as done (ITP: lz4-java -- LZ4 compression for Java)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:17 +
with message-id 
and subject line Bug#934700: fixed in lz4-java 1.5.1-1
has caused the Debian Bug report #934700,
regarding ITP: lz4-java -- LZ4 compression for Java
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.)


-- 
934700: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=934700
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Owner: Saif Abdul Cassim 
Severity: wishlist

* Package name: liblz4-java
  Version : 1.3.0
* URL : https://github.com/lz4/lz4-java

* License : Apache-2.0
  Programming Lang: Java, C
  Description : LZ4 compression for Java

LZ4 compression for Java, based on Yann Collet's work available at
http://code.google.com/p/lz4/.

This library provides access to two compression methods that both generate
a valid LZ4 stream:

   - fast scan (LZ4):
  - low memory footprint (~ 16 KB),
  - very fast (fast scan with skipping heuristics in case the input
  looks incompressible),
  - reasonable compression ratio (depending on the redundancy of the
  input).
   - high compression (LZ4 HC):
  - medium memory footprint (~ 256 KB),
  - rather slow (~ 10 times slower than LZ4),
  - good compression ratio (depending on the size and the redundancy of
  the input).

The streams produced by those 2 compression algorithms use the same
compression format, are very fast to decompress and can be decompressed by
the same decompressor instance.
This is used for kotlin.
I plan on maintaining this along with debian-java team.
--- End Message ---
--- Begin Message ---
Source: lz4-java
Source-Version: 1.5.1-1

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

Debian distribution maintenance software
pp.
Saif Abdul Cassim  (supplier of updated lz4-java 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, 21 Sep 2019 09:43:31 +0200
Source: lz4-java
Binary: liblz4-java liblz4-jni liblz4-jni-dbgsym
Architecture: source all amd64
Version: 1.5.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Saif Abdul Cassim 
Description:
 liblz4-java - LZ4 compression for Java
 liblz4-jni - LZ4 compression for Java (JNI library)
Closes: 934700
Changes:
 lz4-java (1.5.1-1) unstable; urgency=medium
 .
   * Initial release (Closes: #934700)
Checksums-Sha1:
 9ed8f1f8e966ec4cdf731ef25c78a7c8e13b76e3 2196 lz4-java_1.5.1-1.dsc
 e2b6d9e388ff7a24c597e63b6fcdd918f39f1ddc 406604 lz4-java_1.5.1.orig.tar.xz
 132682125925fcce4a369abe3a106c232746cb0a 6380 lz4-java_1.5.1-1.debian.tar.xz
 0ff51807af75e3894ccdfdf419027a15f0e1ad5c 110128 liblz4-java_1.5.1-1_all.deb
 c3648c294cc087b4f22ad5887d7f6b8b18e9c5da 16280 
liblz4-jni-dbgsym_1.5.1-1_amd64.deb
 d99c3db416012018f17a61ee0a4f770c4e62da2b 8012 liblz4-jni_1.5.1-1_amd64.deb
 8bcf4117342e014de2135dc7ac0dc9660f1d536a 10058 lz4-java_1.5.1-1_amd64.buildinfo
Checksums-Sha256:
 069370427bdace637ffd5a8116163d0df117d704edf44ec592cd1df35e83d5d3 2196 
lz4-java_1.5.1-1.dsc
 027fe2756bf0845072bae78d4af413f035b50fd485e42a3b1e6ec71c9c426a44 406604 
lz4-java_1.5.1.orig.tar.xz
 12748cb8251f950f9c077b5c6f8b51fdd0ce0ea63b01f0c3345dd13e16755439 6380 
lz4-java_1.5.1-1.debian.tar.xz
 a5a20dd662dfb0375a443c4fdb36bdae25e139ec8cf5495091094881ceaebe6d 110128 
liblz4-java_1.5.1-1_all.deb
 84a98a773fbea795dce1babc5791e5495407b993f37cdd5f87dac99c5c05ca4b 16280 
liblz4-jni-dbgsym_1.5.1-1_amd64.deb
 320a174cce468963433b831b7f7f68dd115673cbde4ce782f5b91bf15dc22953 8012 
liblz4-jni_1.5.1-1_amd64.deb
 d9365146071269b7b11f4fcfb2198849cf97f19d7814de80e76abc44527802ad 10058 
lz4-java_1.5.1-1_amd64.buildinfo
Files:
 1e846dc4f539135dd80292ff231f2bb0 2196 java optional lz4-java_1.5.1-1.dsc
 844159e5f9efbb76af34ccc43e2ec59d 406604 java optional 
lz4-java_1.5.1.orig.tar.xz
 c92b84e12ce6c5e25b8d679976c740d4 6380 java optional 
lz4-java_1.5.1-1.debian.tar.xz
 b7e44af1fc28859712a36bb67bd5bcda 110128 java optional 

Bug#941938: marked as done (ITP: guava-mini -- utilities from Guava)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:15 +
with message-id 
and subject line Bug#941938: fixed in guava-mini 0.1.2-1~exp1
has caused the Debian Bug report #941938,
regarding ITP: guava-mini -- utilities from Guava
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.)


-- 
941938: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941938
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist

* Package name: libguava-mini-java
  Version : 0.1.2
  Upstream Author : David Moten
* URL : https://github.com/davidmoten/guava-mini
* License : Apache License 2.0
  Programming Lang: Java
  Description : utilities from Guava

Some popular utilities from Guava repackaged (with different package
names but same class names and method names) into a little jar (11K)
available on Maven Central.



It is a dependency of jax-maven-plugin which is a dependency of Jollyday
(ITP #939617


It should be maintained in the java-team

-- 
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: guava-mini
Source-Version: 0.1.2-1~exp1

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

Debian distribution maintenance software
pp.
Mechtilde Stehmann  (supplier of updated guava-mini 
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: Mon, 07 Oct 2019 21:16:23 +0200
Source: guava-mini
Binary: libguava-mini-java
Architecture: source all
Version: 0.1.2-1~exp1
Distribution: experimental
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Mechtilde Stehmann 
Description:
 libguava-mini-java - utilities from Guava
Closes: 941938
Changes:
 guava-mini (0.1.2-1~exp1) experimental; urgency=medium
 .
   [ Mechtilde Stehmann ]
   * [2fc4050] Initial release (Closes: #941938)
   * [67bc9c7] New upstream version 0.1.2
Checksums-Sha1:
 d52b96aaeb91c992a124510f73cf0e522dd33b49 2014 guava-mini_0.1.2-1~exp1.dsc
 6a2523cccbb9bb12925e15dc5ed9eabb51d6971b 10820 guava-mini_0.1.2.orig.tar.gz
 e3c4f1e9028cfefcdd08aab65e28526c7e549931 2524 
guava-mini_0.1.2-1~exp1.debian.tar.xz
 12421f349d465dfb9880043a3107682b734bbda4 11948 
guava-mini_0.1.2-1~exp1_amd64.buildinfo
 27f643890fa52aabf5351e7ef9688e6389b86dc3 10832 
libguava-mini-java_0.1.2-1~exp1_all.deb
Checksums-Sha256:
 b0098999d5c3e8e33d3a1a94b352249fa61c5420acf0ce85200e8eb25a9d3997 2014 
guava-mini_0.1.2-1~exp1.dsc
 9df6aa9424d6ba86507c92dc7ce03e681cf195bc357153e0cc911982f3265401 10820 
guava-mini_0.1.2.orig.tar.gz
 f4c56daccbbb4d1a15007b44c03e56adb188db4583f1d423c0059a98432d151d 2524 
guava-mini_0.1.2-1~exp1.debian.tar.xz
 b3fe7e39b2e05e5ecbd7bdec9fccfe63dd79642c93a01ce57df97148920295ce 11948 
guava-mini_0.1.2-1~exp1_amd64.buildinfo
 dd053d9df670ad7df49c83e02881bec07d84a91590744519841b82105c773edf 10832 
libguava-mini-java_0.1.2-1~exp1_all.deb
Files:
 7c41e596aa2ea0fd2d116f288e69ecba 2014 java optional guava-mini_0.1.2-1~exp1.dsc
 1a256534af07ce56fa2ce4edc949cc54 10820 java optional 
guava-mini_0.1.2.orig.tar.gz
 9c9e50dc4da409d1b75d1ac74c9554ad 2524 java optional 
guava-mini_0.1.2-1~exp1.debian.tar.xz
 39fbbe4d4448bf0d6f170b18d662418a 11948 java optional 
guava-mini_0.1.2-1~exp1_amd64.buildinfo
 b79689c42b344021d91d7e273b0e5175 10832 java optional 
libguava-mini-java_0.1.2-1~exp1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE8ON/Pch6SZgomTnn8od7uhQarX8FAl2bkpoACgkQ8od7uhQa
rX+f1g//Y1nT+v1qIQfcKtc8K+ZRUaG3gHMeU8t6pBudS2//FKaKvfO+VFS8NUa9
wckwy+kef+GkXD5E6VAP3bZ1rE8ttW4T9qLZO4BzmBf+5kjmJketX2GsXiHGsa6G
H77z9QeLhDN3IoaeP7/hulwn1SWifTRtpUNHTx5PnZ6sucH/YNWEVV9me5czAvts
N4KDPz9BSxv5gK29cIOSPtBCgDLTJO143mSjNr7SkcwAaldgovqPLhqx2t6Ccor3
xyyQQs0zJn+rk0q7e+Q1nhNo4VCw1qSSLbTKme/nK4/F3V6BcuD5n0kjJNTIYZy3
0epmlmd0AUfP/kNJmlagyl/PdSvWxLO4dFk/o0ZhgWyeIrrRosq15GaKuiBzqb6G
pwB9psAOyRmgU6U/YUVc07HKpNM1i86ktsZcYh6Wt/Y/BuVuHUO5Utwik14i56n0

Bug#941944: marked as done (ITP: zt-exec -- ZT Process Executor)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 18:00:20 +
with message-id 
and subject line Bug#941944: fixed in zt-exec 1.11-1~exp1
has caused the Debian Bug report #941944,
regarding ITP: zt-exec -- ZT Process Executor
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.)


-- 
941944: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941944
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist

* Package name: libzt-exec-java
  Version : 1.11
  Upstream Author : 
* URL : 
* License : Apache License 2.0
  Programming Lang: Java
  Description : ZT Process Executor

A lightweight library to execute external processes from Java



It is a deppendency of jax-maven-plugin which is a dependency of
jollyday (ITP: #939617)


It should be maintained in the java-team

Kind regards

-- 
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: zt-exec
Source-Version: 1.11-1~exp1

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

Debian distribution maintenance software
pp.
Mechtilde Stehmann  (supplier of updated zt-exec package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 08 Oct 2019 19:00:30 +0200
Source: zt-exec
Binary: libzt-exec-java
Architecture: source all
Version: 1.11-1~exp1
Distribution: experimental
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Mechtilde Stehmann 
Description:
 libzt-exec-java - ZT Process Executor
Closes: 941944
Changes:
 zt-exec (1.11-1~exp1) experimental; urgency=medium
 .
   [ Mechtilde Stehmann ]
   * [e390777] Initial release (Closes: #941944)
   * [42f59e4] New upstream version 1.11
Checksums-Sha1:
 1930beea4551636354326de2a79383a829305914 2028 zt-exec_1.11-1~exp1.dsc
 35a4ff20222cdc07b03762e1629b9893aab70bd6 91760 zt-exec_1.11.orig.tar.gz
 7e02e740b23adf97feafd0615517cdcc33c8bc17 2444 zt-exec_1.11-1~exp1.debian.tar.xz
 557d43a7e1ce390c1abcf88dcdcd57d8b20701e0 52544 
libzt-exec-java_1.11-1~exp1_all.deb
 565c8234062a56fbe66fe0ab40a8c74f61f04cf1 11913 
zt-exec_1.11-1~exp1_amd64.buildinfo
Checksums-Sha256:
 b0fe8cb71bac79703b5bc52ba26ad8b06d9eabd27e5dac9a0f78d1c0dd644998 2028 
zt-exec_1.11-1~exp1.dsc
 485668849ba169897781b4063c2ac47454139b8de6637868c10369902f2d0af1 91760 
zt-exec_1.11.orig.tar.gz
 df99b2bfeee36565a47fb05df505369694188f1bebfd4b1e421812f8254c6066 2444 
zt-exec_1.11-1~exp1.debian.tar.xz
 e543fc5ef21fe58bcef6e07d05f6b73a83672d6476d34e5f0132ffbbfe21e998 52544 
libzt-exec-java_1.11-1~exp1_all.deb
 c7fcf0314812f2d2776e111fa39cfc81aa96d7c37201f8f5a8971f1d2cc54c95 11913 
zt-exec_1.11-1~exp1_amd64.buildinfo
Files:
 c079b3268871c02081c89574bfdd7e3b 2028 java optional zt-exec_1.11-1~exp1.dsc
 b337b2fd6e2c7732137f0d9fdbd2da4e 91760 java optional zt-exec_1.11.orig.tar.gz
 2bf04abb438195b74b2dcc27c83117fc 2444 java optional 
zt-exec_1.11-1~exp1.debian.tar.xz
 6999c0cd5736d77730e68699d8afa8e8 52544 java optional 
libzt-exec-java_1.11-1~exp1_all.deb
 7dd97f4c0a5080bf8074373fbce22331 11913 java optional 
zt-exec_1.11-1~exp1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE8ON/Pch6SZgomTnn8od7uhQarX8FAl2cwbcACgkQ8od7uhQa
rX9qRRAAtBfSpe0Etikwv7HDuNw5MWdoN0J2HBD+oJA3mpxWcgnoczc6FwwqFfxS
swrOqNa0Z957+KlAkpTrXaWZONj6YNK10GyHlFupAkQdFpE39cpjP8JXkGRdRqaZ
7jwnUQX+KmTEHMU07zGqjjN9Q2cvQ/am/HTkaXHvT+eHbDbYcTJyaPRTQ+U0+VLm
Fs6ckxklRqi3psP2Qi0TsOTEx2+X9z25SLBnI3XH5R/jvqQFsr1GkHnML4b+u7pJ
QEiuQc07u/kR7f/LHf6raKl8ZoV1tJzlBl72EciuPcZDJZlkq6piv507zG0MVuNV
mJflRUo8+fRzatJ2GX8y1A6nozUuIQd8Kp3nRUnvCVcxirm93DDsTkxaznq7cGld
XdzvL6t6v2PGBj6qJ8PDUc5oxeueDyvDZLU9wjH4C0ifU5oT75svj8t4vbpQn/CA
+D/ceBzM+zV8xUJDXU17NAyDuXROg7ocFI3R0w4aaJcmQFuI0j3NsgG+xmPtmu/a
KMQ8Bw3yOc8yo6/2uNiZTeGl1NclFEo+KycJJwpYWNqCt6Vr0B19ruOzKZissTXw
OkH/RGqWuqMNJYYEg2xG/fNiGyIE42WD6QPtnHsMykvu3w52Rq2TQy1CMUf3KNpV
4lhjPk+PX7EWB8tpUrUdCrpVSdhyOROYXpTA8xjT8bEdvZ9v5Vc=
=6VFd
-END PGP 

Bug#938474: marked as done (sgp4: Python2 removal in sid/bullseye)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:04:35 +
with message-id 
and subject line Bug#938474: fixed in sgp4 1.4-1.1
has caused the Debian Bug report #938474,
regarding sgp4: Python2 removal in sid/bullseye
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.)


-- 
938474: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=938474
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:sgp4
Version: 1.4-1
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:sgp4

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: sgp4
Source-Version: 1.4-1.1

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

Debian distribution maintenance software
pp.
Sandro Tosi  (supplier of updated sgp4 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 06 Oct 2019 14:19:56 -0400
Source: sgp4
Architecture: source
Version: 1.4-1.1
Distribution: unstable
Urgency: medium
Maintainer: Ulises Vitulli 
Changed-By: Sandro Tosi 
Closes: 938474
Changes:
 sgp4 (1.4-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Drop python2 support; Closes: #938474
Checksums-Sha1:
 1043d2ab114b37688c000d765636face1a00c8a9 1735 sgp4_1.4-1.1.dsc
 b4fa19854e17ed5107bbbdbc0820a96a772c1221 2372 sgp4_1.4-1.1.debian.tar.xz
 6c5a476a8af883fab126fbe20b4b5f301baffc7e 6121 sgp4_1.4-1.1_source.buildinfo
Checksums-Sha256:
 709caf8d7e07fe38f8e6c0a440338be5258631874ef57f86f316aefad88d5ec6 1735 
sgp4_1.4-1.1.dsc
 2e59b043f3252fcbb514c3cafe53fdcc19de7d38783f4c07f7e7af18d363bc65 2372 
sgp4_1.4-1.1.debian.tar.xz
 698e444293e9e6a1563065a7d98dd2a8838b078cc4d271d131e25faa5e6454b0 6121 
sgp4_1.4-1.1_source.buildinfo
Files:
 5524f62393545ae9c96640c7e6d61e6c 1735 python optional sgp4_1.4-1.1.dsc
 1ffa0185eb475bdfe7817c9a10b914bc 2372 python optional 

Bug#936662: marked as done (gr-limesdr: Python2 removal in sid/bullseye)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:04:22 +
with message-id 
and subject line Bug#936662: fixed in gr-limesdr 2.0.0-27-gca01a64-2
has caused the Debian Bug report #936662,
regarding gr-limesdr: Python2 removal in sid/bullseye
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.)


-- 
936662: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=936662
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:gr-limesdr
Version: 0.9~beta-1
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:gr-limesdr

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: gr-limesdr
Source-Version: 2.0.0-27-gca01a64-2

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

Debian distribution maintenance software
pp.
Christoph Berg  (supplier of updated gr-limesdr package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 20:51:15 +0200
Source: gr-limesdr
Architecture: source
Version: 2.0.0-27-gca01a64-2
Distribution: experimental
Urgency: medium
Maintainer: Debian Hamradio Maintainers 
Changed-By: Christoph Berg 
Closes: 915597 936662 940069
Changes:
 gr-limesdr (2.0.0-27-gca01a64-2) experimental; urgency=medium
 .
   * Add B-D python3-six, the doxygen docs need it.
 .
 gr-limesdr (2.0.0-27-gca01a64-1) experimental; urgency=medium
 .
   [ A. Maitland Bottoms ]
   * New upstream tag v2.0.0
   * Update homepage (Closes: #915597)
 .
   [ Christoph Berg ]
   * New upstream version 2.0.0-27-gca01a64 with support for gnuradio 3.8.
   * Set package name to libgnuradio-limesdr3.0.0.
   * Add liborc-0.4-dev and libgmp-dev build-dependencies. (Closes: #940069)
   * Add debian/gitlab-ci.yml.
   * Move to Section: hamradio.
   * Add ${python3:Depends} dependency. (Closes: #936662)
   * Update copyright after upstream source was 

Bug#915597: marked as done (gr-limesdr: Homepage: points to dead page)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:04:22 +
with message-id 
and subject line Bug#915597: fixed in gr-limesdr 2.0.0-27-gca01a64-2
has caused the Debian Bug report #915597,
regarding gr-limesdr: Homepage: points to dead page
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.)


-- 
915597: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=915597
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: gr-limesdr
Version: 0.9~beta-1
Severity: minor

The actual homepage seems to be
  https://tracker.debian.org/media/packages/g/gr-limesdr
--- End Message ---
--- Begin Message ---
Source: gr-limesdr
Source-Version: 2.0.0-27-gca01a64-2

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

Debian distribution maintenance software
pp.
Christoph Berg  (supplier of updated gr-limesdr package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 20:51:15 +0200
Source: gr-limesdr
Architecture: source
Version: 2.0.0-27-gca01a64-2
Distribution: experimental
Urgency: medium
Maintainer: Debian Hamradio Maintainers 
Changed-By: Christoph Berg 
Closes: 915597 936662 940069
Changes:
 gr-limesdr (2.0.0-27-gca01a64-2) experimental; urgency=medium
 .
   * Add B-D python3-six, the doxygen docs need it.
 .
 gr-limesdr (2.0.0-27-gca01a64-1) experimental; urgency=medium
 .
   [ A. Maitland Bottoms ]
   * New upstream tag v2.0.0
   * Update homepage (Closes: #915597)
 .
   [ Christoph Berg ]
   * New upstream version 2.0.0-27-gca01a64 with support for gnuradio 3.8.
   * Set package name to libgnuradio-limesdr3.0.0.
   * Add liborc-0.4-dev and libgmp-dev build-dependencies. (Closes: #940069)
   * Add debian/gitlab-ci.yml.
   * Move to Section: hamradio.
   * Add ${python3:Depends} dependency. (Closes: #936662)
   * Update copyright after upstream source was restructured.
Checksums-Sha1:
 1ffae1063c98e5ecc5933172f105c9354a095bd8 2342 
gr-limesdr_2.0.0-27-gca01a64-2.dsc
 16c3c9ba846ac664c1bd73812d7287e487c852ed 3664 
gr-limesdr_2.0.0-27-gca01a64-2.debian.tar.xz
Checksums-Sha256:
 06270c3994f78ebb49760b1052e28e333d987f7529d5dcc6a2fa0114fbe3e100 2342 
gr-limesdr_2.0.0-27-gca01a64-2.dsc
 bab77b043c3b8a1e18de74bf916b54f0b033784c815bd3e106aa8645bf74b60b 3664 
gr-limesdr_2.0.0-27-gca01a64-2.debian.tar.xz
Files:
 9ecf1a24517af05f70236127f96ebbc8 2342 hamradio optional 
gr-limesdr_2.0.0-27-gca01a64-2.dsc
 82877935459cf4b8af1fa894464d3495 3664 hamradio optional 
gr-limesdr_2.0.0-27-gca01a64-2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXEj+YVf0kXlZcIfGTFprqxLSp64FAl2jct0ACgkQTFprqxLS
p64tIg//QJw0UmxWI84aGLTTEndnKnNO9uWtxnClzlmkbsRn5OV2eOdxk35aNg0g
YnKdgMR6puRkV/GwXvtCtMGfjLuaRthC5G1k2boIz3jvL9PvdSKgujuz2HnQ92zP
fRiH/H4i+LUj7QiQLOrphYbm2i1r8hS27bPn2WqJWHyFA/EAKVW02umHwzHS7w5n
MB5LxLjOTqR9jBOyFJ8kRtyP5OBPLz4vzryi7zN1jibyurvYUd5iIsMMAQEss2r0
AT2kF0s9LHO1jYW3Ks+oUY2F+oCPjIEKs50uGByk5MACi0/9P4G1EpZNaS1sGUI7
8GfGWFZYn2MQFfmsJLf5zWSTdZPUcuaylH3KwDzkG80G0jmN4wibCK3NedIExA1P
Lp7LCntHr0C1f9X0e2ofzwN/1nObtV2QaRJ/lrjyHG7AQXiDiF4xg13bIsKm8Dzg
yTd8TS3jW70WMMFSt4HwrITLKFq1v1ySnS1dPLF3BQECTxRI0E+o/GePe3spLRNr
a5yIaz3Oowv+meOYCA12B0jSWJ2rW6cLj/Aal1BRlk5ikFWAlnOE0f2pw01TTxwH
O5iQCaLavSH6wbdOtUtbvnayTZIQnj/FpDte8vLgU9C1OJSdTzLTnnNHxI2akTTW
myBjkvEd4+voLqHCDrO0z9ETJGTzimKxVW5J4tToS+MgdZjLvy8=
=fjLq
-END PGP SIGNATURE End Message ---


Bug#935737: marked as done (transition: perl)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 21:05:19 +0200
with message-id <1553faab-0f1d-8f33-8c70-f52df130c...@debian.org>
and subject line Re: Bug#935737: transition: perl
has caused the Debian Bug report #935737,
regarding transition: perl
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.)


-- 
935737: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=935737
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

Hi, perl 5.30 has been in experimental since May and I think it is
ready for sid/bullseye now.

Our test rebuilds caught unusually few failures and those are
all fixed now.

The build system has been revamped: it's now based on debhelper/dh
and supports building the three perl variants (static, shared, debug)
in parallel via symlink farms in separate build directories. Other
packaging changes are minimal.

The symlink farm part broke builds under qemu-user (due to its
special/buggy $0 implementation), but that doesn't concern release
architectures. See #931641. I believe only the sh4 buildds are currently
affected.

As usual the bugs are at
 
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=perl-5.30-transition;users=debian-p...@lists.debian.org

Please let us know when we might get a transition slot.  Both of us
are currently rather taken by real life stuff, so would appreciate an
advance warning if possible.

Many thanks for your work on the release.

Ben file:

title = "perl";
is_affected = .depends ~ "libperl5.28|perlapi-5.28" | .depends ~ 
"libperl5.30|perlapi-5.30";
is_good = .depends ~ "libperl5.30|perlapi-5.30";
is_bad = .depends ~ "libperl5.28|perlapi-5.28";


-- System Information:
Debian Release: 10.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-5-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=fi_FI.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
--- End Message ---
--- Begin Message ---
Hi,

On 05-10-2019 12:06, Paul Gevers wrote:
> On 03-10-2019 21:32, Dominic Hargreaves wrote:
>> Yes, I am able to cut a release and upload on Saturday (morning Europe
>> time).
> 
> Ok, let's go this going.

And all done now. Thanks for the cooperation.

Paul



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


Bug#912196: marked as done (abgate FTCBFS: multiple reasons)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:04:03 +
with message-id 
and subject line Bug#912196: fixed in abgate 1.1.9-2
has caused the Debian Bug report #912196,
regarding abgate FTCBFS: multiple reasons
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.)


-- 
912196: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=912196
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: abgate
Version: 1.1.9-1
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

abgate fails to cross build from source for multiple reasons:

 * The upstream Makefile hard codes build architecture tools such as g++
   or pkg-config.
 * The upstream Makefile directly runs qmake, which lacks cross flags as
   well.

The attached patch fixes that. In part, the Makefile is fixed. For qt,
it is simply sidestepped. After doing so, abgate cross builds
successfully. Please consider applying it.

Helmut
diff --minimal -Nru abgate-1.1.9/debian/changelog abgate-1.1.9/debian/changelog
--- abgate-1.1.9/debian/changelog   2017-11-01 12:38:10.0 +0100
+++ abgate-1.1.9/debian/changelog   2018-10-29 06:15:39.0 +0100
@@ -1,3 +1,12 @@
+abgate (1.1.9-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: (Closes: #-1)
++ Build abGateQt directly via dh_auto_* before the Makefile can do it.
++ cross.patch: Honour cross tools.
+
+ -- Helmut Grohne   Mon, 29 Oct 2018 06:15:39 +0100
+
 abgate (1.1.9-1) unstable; urgency=medium
 
   * New upstream version 1.1.9
diff --minimal -Nru abgate-1.1.9/debian/patches/cross.patch 
abgate-1.1.9/debian/patches/cross.patch
--- abgate-1.1.9/debian/patches/cross.patch 1970-01-01 01:00:00.0 
+0100
+++ abgate-1.1.9/debian/patches/cross.patch 2018-10-29 06:15:35.0 
+0100
@@ -0,0 +1,23 @@
+--- abgate-1.1.9.orig/Makefile
 abgate-1.1.9/Makefile
+@@ -3,6 +3,7 @@
+ BUNDLE = abGate.lv2
+ PREFIX = /usr
+ INSTALL_DIR = $(DESTDIR)$(PREFIX)/lib/lv2
++PKG_CONFIG ?= pkg-config
+ 
+ $(BUNDLE): manifest.ttl gate.ttl gate.so gate_gui.so bypass_on.png 
bypass_off.png knob.png background.png abGateQt/libabGateQt.so
+   rm -rf $(BUNDLE)
+@@ -13,10 +14,10 @@
+   cd abGateQt; qmake; make
+ 
+ gate.so: gate.cpp
+-  g++ $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -g -O3 -shared -fPIC -DPIC 
-Wl,--as-needed gate.cpp `pkg-config --cflags --libs lv2` -o gate.so
++  $(CXX) $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -g -O3 -shared -fPIC -DPIC 
-Wl,--as-needed gate.cpp `$(PKG_CONFIG) --cflags --libs lv2` -o gate.so
+ 
+ gate_gui.so: gate_gui.cpp main_window.cpp main_window.h knob.cpp knob.h 
toggle.cpp toggle.h preset_widget.cpp preset_widget.h presets.cpp presets.h 
preset.cpp preset.h gate_const.h plugin_configuration.h
+-  g++ $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -g -O3 -shared -fPIC -DPIC 
-Wl,--as-needed gate_gui.cpp main_window.cpp knob.cpp toggle.cpp 
preset_widget.cpp presets.cpp preset.cpp `pkg-config --cflags gtkmm-2.4 --libs 
lv2 gthread-2.0` -o gate_gui.so
++  $(CXX) $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -g -O3 -shared -fPIC -DPIC 
-Wl,--as-needed gate_gui.cpp main_window.cpp knob.cpp toggle.cpp 
preset_widget.cpp presets.cpp preset.cpp `$(PKG_CONFIG) --cflags gtkmm-2.4 
--libs lv2 gthread-2.0` -o gate_gui.so
+ 
+ all: $(BUNDLE)
+ 
diff --minimal -Nru abgate-1.1.9/debian/patches/series 
abgate-1.1.9/debian/patches/series
--- abgate-1.1.9/debian/patches/series  2017-10-11 16:19:02.0 +0200
+++ abgate-1.1.9/debian/patches/series  2018-10-29 06:14:55.0 +0100
@@ -1 +1,2 @@
 0002-flags.patch
+cross.patch
diff --minimal -Nru abgate-1.1.9/debian/rules abgate-1.1.9/debian/rules
--- abgate-1.1.9/debian/rules   2017-11-01 12:25:19.0 +0100
+++ abgate-1.1.9/debian/rules   2018-10-29 06:15:39.0 +0100
@@ -8,3 +8,10 @@
 
 %:
dh $@
+
+override_dh_auto_configure:
+   dh_auto_configure --sourcedirectory=abGateQt
+
+override_dh_auto_build:
+   dh_auto_build --sourcedirectory=abGateQt
+   dh_auto_build
--- End Message ---
--- Begin Message ---
Source: abgate
Source-Version: 1.1.9-2

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

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated abgate package)

(This message was 

Bug#940069: marked as done (gr-limesdr: FTBFS in unstable)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:04:22 +
with message-id 
and subject line Bug#940069: fixed in gr-limesdr 2.0.0-27-gca01a64-2
has caused the Debian Bug report #940069,
regarding gr-limesdr: FTBFS in unstable
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.)


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

Package: gr-limesdr
Version: 0.9~beta-1+b2
Severity: serious
Tags: bullseye, sid

gr-limesdr failed to build with the following errors when an attempt was made 
to binnmu it for the new gnuradio.


-- Could NOT find MPIR (missing: MPIRXX_LIBRARY MPIR_LIBRARY MPIR_INCLUDE_DIR)
CMake Error at 
/usr/share/cmake-3.13/Modules/FindPackageHandleStandardArgs.cmake:137 (message):
   Could NOT find MPLIB (missing: MPLIBXX_LIBRARY MPLIB_LIBRARY
   MPLIB_INCLUDE_DIR)
Call Stack (most recent call first):
   /usr/share/cmake-3.13/Modules/FindPackageHandleStandardArgs.cmake:378 
(_FPHSA_FAILURE_MESSAGE)
   /usr/lib/x86_64-linux-gnu/cmake/gnuradio/FindMPLIB.cmake:26 
(find_package_handle_standard_args)
   /usr/share/cmake-3.13/Modules/CMakeFindDependencyMacro.cmake:48 
(find_package)
   /usr/lib/x86_64-linux-gnu/cmake/gnuradio/GnuradioConfig.cmake:26 
(find_dependency)
   CMakeLists.txt:130 (find_package)


--- End Message ---
--- Begin Message ---
Source: gr-limesdr
Source-Version: 2.0.0-27-gca01a64-2

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

Debian distribution maintenance software
pp.
Christoph Berg  (supplier of updated gr-limesdr package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 20:51:15 +0200
Source: gr-limesdr
Architecture: source
Version: 2.0.0-27-gca01a64-2
Distribution: experimental
Urgency: medium
Maintainer: Debian Hamradio Maintainers 
Changed-By: Christoph Berg 
Closes: 915597 936662 940069
Changes:
 gr-limesdr (2.0.0-27-gca01a64-2) experimental; urgency=medium
 .
   * Add B-D python3-six, the doxygen docs need it.
 .
 gr-limesdr (2.0.0-27-gca01a64-1) experimental; urgency=medium
 .
   [ A. Maitland Bottoms ]
   * New upstream tag v2.0.0
   * Update homepage (Closes: #915597)
 .
   [ Christoph Berg ]
   * New upstream version 2.0.0-27-gca01a64 with support for gnuradio 3.8.
   * Set package name to libgnuradio-limesdr3.0.0.
   * Add liborc-0.4-dev and libgmp-dev build-dependencies. (Closes: #940069)
   * Add debian/gitlab-ci.yml.
   * Move to Section: hamradio.
   * Add ${python3:Depends} dependency. (Closes: #936662)
   * Update copyright after upstream source was restructured.
Checksums-Sha1:
 1ffae1063c98e5ecc5933172f105c9354a095bd8 2342 
gr-limesdr_2.0.0-27-gca01a64-2.dsc
 16c3c9ba846ac664c1bd73812d7287e487c852ed 3664 
gr-limesdr_2.0.0-27-gca01a64-2.debian.tar.xz
Checksums-Sha256:
 06270c3994f78ebb49760b1052e28e333d987f7529d5dcc6a2fa0114fbe3e100 2342 
gr-limesdr_2.0.0-27-gca01a64-2.dsc
 bab77b043c3b8a1e18de74bf916b54f0b033784c815bd3e106aa8645bf74b60b 3664 
gr-limesdr_2.0.0-27-gca01a64-2.debian.tar.xz
Files:
 9ecf1a24517af05f70236127f96ebbc8 2342 hamradio optional 
gr-limesdr_2.0.0-27-gca01a64-2.dsc
 82877935459cf4b8af1fa894464d3495 3664 hamradio optional 
gr-limesdr_2.0.0-27-gca01a64-2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXEj+YVf0kXlZcIfGTFprqxLSp64FAl2jct0ACgkQTFprqxLS
p64tIg//QJw0UmxWI84aGLTTEndnKnNO9uWtxnClzlmkbsRn5OV2eOdxk35aNg0g
YnKdgMR6puRkV/GwXvtCtMGfjLuaRthC5G1k2boIz3jvL9PvdSKgujuz2HnQ92zP
fRiH/H4i+LUj7QiQLOrphYbm2i1r8hS27bPn2WqJWHyFA/EAKVW02umHwzHS7w5n
MB5LxLjOTqR9jBOyFJ8kRtyP5OBPLz4vzryi7zN1jibyurvYUd5iIsMMAQEss2r0
AT2kF0s9LHO1jYW3Ks+oUY2F+oCPjIEKs50uGByk5MACi0/9P4G1EpZNaS1sGUI7
8GfGWFZYn2MQFfmsJLf5zWSTdZPUcuaylH3KwDzkG80G0jmN4wibCK3NedIExA1P
Lp7LCntHr0C1f9X0e2ofzwN/1nObtV2QaRJ/lrjyHG7AQXiDiF4xg13bIsKm8Dzg
yTd8TS3jW70WMMFSt4HwrITLKFq1v1ySnS1dPLF3BQECTxRI0E+o/GePe3spLRNr
a5yIaz3Oowv+meOYCA12B0jSWJ2rW6cLj/Aal1BRlk5ikFWAlnOE0f2pw01TTxwH
O5iQCaLavSH6wbdOtUtbvnayTZIQnj/FpDte8vLgU9C1OJSdTzLTnnNHxI2akTTW
myBjkvEd4+voLqHCDrO0z9ETJGTzimKxVW5J4tToS+MgdZjLvy8=
=fjLq
-END PGP 

Bug#938833: marked as done (wsgicors: Python2 removal in sid/bullseye)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:04:41 +
with message-id 
and subject line Bug#938833: fixed in wsgicors 0.4.1-1.1
has caused the Debian Bug report #938833,
regarding wsgicors: Python2 removal in sid/bullseye
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.)


-- 
938833: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=938833
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:wsgicors
Version: 0.4.1-1
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:wsgicors

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: wsgicors
Source-Version: 0.4.1-1.1

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

Debian distribution maintenance software
pp.
Sandro Tosi  (supplier of updated wsgicors package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 06 Oct 2019 14:25:37 -0400
Source: wsgicors
Architecture: source
Version: 0.4.1-1.1
Distribution: unstable
Urgency: medium
Maintainer: David Douard 
Changed-By: Sandro Tosi 
Closes: 938833
Changes:
 wsgicors (0.4.1-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Drop python2 support; Closes: #938833
Checksums-Sha1:
 dad7161ec1437d4880f24cb2b08d63bf93be4cc9 1889 wsgicors_0.4.1-1.1.dsc
 10d4efb677c55a3166d3a6c07d35cd9ce1612e25 1416 wsgicors_0.4.1-1.1.debian.tar.xz
 4da6544a8f49df95dc52ba027c12799f2796e946 6149 
wsgicors_0.4.1-1.1_source.buildinfo
Checksums-Sha256:
 1bae0f4cdee6b8a09bf93b658ac2b07e3aa6f4d2caeb95af72410108b844a883 1889 
wsgicors_0.4.1-1.1.dsc
 92aae6d1b3455ffb00dd76fe58dc5f4395a706467b7f4ec66db0cc8e22cd31ed 1416 
wsgicors_0.4.1-1.1.debian.tar.xz
 568adc4dff662ae26478bd9960f90ba68a7521d36c1ba90f363055ca2e584e41 6149 
wsgicors_0.4.1-1.1_source.buildinfo
Files:
 a8ad88d3c1ef13d435209762c40b7e75 1889 python optional 

Bug#927502: marked as done (Updating the lvmcfg Uploaders list)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:50:14 +
with message-id 
and subject line Bug#927502: fixed in lvmcfg 1.51
has caused the Debian Bug report #927502,
regarding Updating the lvmcfg Uploaders list
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.)


-- 
927502: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927502
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: lvmcfg
Version: 1.50
Severity: minor
User: m...@qa.debian.org
Usertags: mia-teammaint

Christian Perrier  has retired, so can't work on
the lvmcfg package anymore (at least with this address).

We are tracking their status in the MIA team and would like to ask you
to remove them from the Uploaders list of the package so we can close
that part of the file.

(If the person is listed as Maintainer, what we are asking is to please
step in as a new maintainer.)

Thanks.
--- End Message ---
--- Begin Message ---
Source: lvmcfg
Source-Version: 1.51

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

Debian distribution maintenance software
pp.
Holger Wansing  (supplier of updated lvmcfg package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 21:26:08 +0200
Source: lvmcfg
Architecture: source
Version: 1.51
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Holger Wansing 
Closes: 927502
Changes:
 lvmcfg (1.51) unstable; urgency=medium
 .
   * Team upload
 .
   [ Cyril Brulebois ]
   * Remove Christian Perrier from Uploaders, with many thanks for all
 his contributions over the years! (Closes: #927502)
 .
   [ Holger Wansing ]
   * Add comment for translators, to keep main menu entry below a 55 columns
 limit. This updates all po|pot files.
   * Update URL to package source from ftp to http, to fix lintian tag.
 .
   [ Updated translations ]
   * Croatian (hr.po) by gogogogi
   * Portuguese (pt.po) by Miguel Figueiredo
Checksums-Sha1:
 6bc80badfd1da828a1bc9f3a23d643f5ecaaa31d 1676 lvmcfg_1.51.dsc
 df71406a704fa5136933afd1a6322856cee2b241 156584 lvmcfg_1.51.tar.xz
 bbbdf17a0e300ca0d3b0cfa040803f77358e7965 5656 lvmcfg_1.51_amd64.buildinfo
Checksums-Sha256:
 b718f9c7391832484da7688269b65284046371269ee1d7e2db62f380b7752985 1676 
lvmcfg_1.51.dsc
 6436a55aca0aca12266f2dda5833e45115cc2290e5f8377be1437b8b63b22516 156584 
lvmcfg_1.51.tar.xz
 1f73920ba85d1fd9a74be4eab00c4a76952d983e179bcc36b676fcadf1d0ec48 5656 
lvmcfg_1.51_amd64.buildinfo
Files:
 0536218b58873d480ec854d87d8c5f89 1676 debian-installer optional lvmcfg_1.51.dsc
 4318d68b2448d8b6cce93f2f177a68a6 156584 debian-installer optional 
lvmcfg_1.51.tar.xz
 63b24b5d0eb310155c0c161adde519ce 5656 debian-installer optional 
lvmcfg_1.51_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEESWrG6BRCSzSFCDUpWfGHyhVusHYFAl2jfDYVHGh3YW5zaW5n
QG1haWxib3gub3JnAAoJEFnxh8oVbrB2mOUP/jVoW6PsaDT+wDigK3naW+t+8f3F
F8D8l2mY21BVz25tOFYbkSlMjnRp0PqnjLdBD024ubOnKySXYwEAbdqLMvv5B00j
UzRHpgdsBkw5XiVXAZXSlCstZNBpu4OlNk7/AhxIQBJfSprYdahXcAUNONRP7CIz
FgMv4OJzuXHk9lQAGUb5x+ZI+Mr/qhuYNU1oyyBM3Ktv7j6hfJyEPwYiP2U9LMhh
3eN/uetQfxD7mt9GjIPD2Y5UwK2iNg0nq86cXQgMAlBsXJWkE2a9NQgbruP6KmCk
6gKRLAhcsO606qsORrO/p39yzHRXQGJzLCY4sH5slkWeyD4+a9nwpEi/tQER49QN
3PEqdK52g8Y3nX2cgnwv7Cmh4DhWBsUPCZsBF7TiG3KCQvuSoEAm35K2Fid4F2+d
eZhbroARyLRT+pXYhbVWCFgItmRYsTK30DrvHvGybtbwbx+e36OEhW66E+2Wq3Af
hdDhOL+6Xv90cqcJhFQioQL+j5Sem2iF4FDyYSn91xV+WxJSFyTLSTXDpj21T+N1
naIMh/C4x0VelKIe2no38AIuz8bcKOXuFcIxn4vzxXa4YVUA0jaLzfgNv0QmQu2F
MmFiR99fq6bsBIBEer0gduMlaIGtROalsgr5F7XUWM4TNpl9TpZ9vl42V356fSdc
FbLE3iLpdMOF0t38
=zWjT
-END PGP SIGNATURE End Message ---


Bug#936563: marked as done (frozen-flask: Python2 removal in sid/bullseye)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 20:44:52 +
with message-id 
and subject line Bug#936563: fixed in frozen-flask 0.11-3.1
has caused the Debian Bug report #936563,
regarding frozen-flask: Python2 removal in sid/bullseye
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.)


-- 
936563: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=936563
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:frozen-flask
Version: 0.11-3
Severity: normal
Tags: sid bullseye
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Python2 becomes end-of-live upstream, and Debian aims to remove
Python2 from the distribution, as discussed in
https://lists.debian.org/debian-python/2019/07/msg00080.html

Your package either build-depends, depends on Python2, or uses Python2
in the autopkg tests.  Please stop using Python2, and fix this issue
by one of the following actions.

- Convert your Package to Python3. This is the preferred option.  In
  case you are providing a Python module foo, please consider dropping
  the python-foo package, and only build a python3-foo package.  Please
  don't drop Python2 modules, which still have reverse dependencies,
  just document them.
  
  This is the preferred option.

- If the package is dead upstream, cannot be converted or maintained
  in Debian, it should be removed from the distribution.  If the
  package still has reverse dependencies, raise the severity to
  "serious" and document the reverse dependencies with the BTS affects
  command.  If the package has no reverse dependencies, confirm that
  the package can be removed, reassign this issue to ftp.debian.org,
  make sure that the bug priority is set to normal and retitle the
  issue to "RM: PKG -- removal triggered by the Python2 removal".

- If the package has still many users (popcon >= 300), or is needed to
  build another package which cannot be removed, document that by
  adding the "py2keep" user tag (not replacing the py2remove tag),
  using the debian-pyt...@lists.debian.org user.  Also any
  dependencies on an unversioned python package (python, python-dev)
  must not be used, same with the python shebang.  These have to be
  replaced by python2/python2.7 dependencies and shebang.

  This is the least preferred option.

If the conversion or removal needs action on another package first,
please document the blocking by using the BTS affects command, like

  affects  + src:frozen-flask

If there is no py2removal bug for that reverse-dependency, please file
a bug on this package (similar to this bug report).

If there are questions, please refer to the wiki page for the removal:
https://wiki.debian.org/Python/2Removal, or ask for help on IRC
#debian-python, or the debian-pyt...@lists.debian.org mailing list.
--- End Message ---
--- Begin Message ---
Source: frozen-flask
Source-Version: 0.11-3.1

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

Debian distribution maintenance software
pp.
Sandro Tosi  (supplier of updated frozen-flask package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 06 Oct 2019 15:43:03 -0400
Source: frozen-flask
Architecture: source
Version: 0.11-3.1
Distribution: unstable
Urgency: medium
Maintainer: Orestis Ioannou 
Changed-By: Sandro Tosi 
Closes: 936563
Changes:
 frozen-flask (0.11-3.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Drop python2 support; Closes: #936563
Checksums-Sha1:
 084c8e031968714687328ddcbe2f62b3df57eda8 1947 frozen-flask_0.11-3.1.dsc
 26670a708296c2fc47badcb1bd80f6edf94cb87a 2460 
frozen-flask_0.11-3.1.debian.tar.xz
 e81a65e78a4c21b56a9bb978bd27c01dc04c579a 6421 
frozen-flask_0.11-3.1_source.buildinfo
Checksums-Sha256:
 8ddfdfa5ce7a2871456a241a2aef2572fd5a68da30c8a2c08d094ed96c81c95b 1947 
frozen-flask_0.11-3.1.dsc
 b0fa69e3d0b3f4fdf18fca6aad54212661996ba83f3bed50ebef30c7e0b4 2460 
frozen-flask_0.11-3.1.debian.tar.xz
 a7ec3ebe61aa57bebdd1e120b5bf1348e7be12cd0567c94164a0dd21e62cfeff 6421 
frozen-flask_0.11-3.1_source.buildinfo
Files:
 

Bug#939119: marked as done (gnustep-base-runtime: Upgrading to Debian 10 causes gdomap network service to become enabled)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:17:09 +
with message-id 
and subject line Bug#939119: fixed in gnustep-base 1.26.0-4+deb10u1
has caused the Debian Bug report #939119,
regarding gnustep-base-runtime: Upgrading to Debian 10 causes gdomap network 
service to become enabled
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.)


-- 
939119: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=939119
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gnustep-base-runtime
Version: 1.26.0-4
Severity: grave
Tags: security
Justification: user security hole

Dear Maintainer,

I had "gnustep-base-runtime" installed on my system, probably as a
dependency of "unar".

When I upgrade from Debian 9 to Debian 10 (and reboot), there is a
network server "gdomap".  I did not see this server on Debian 9.
"gdomap" is not wanted.  It is supposed to be disabled by default
since 2013, i.e. in Debian 8.[1]

[1] #717773 "/usr/bin/gdomap: please split out gdomap or disable it by default"
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=717773

The problem is due to this code change:

"Disable gdomap via defaults-disabled as per Policy 9.3.3.1."
https://salsa.debian.org/gnustep-team/gnustep-base/commit/e0da63fa9e341a38a9a493a615c2c36b8f9d418f

Salvatore Bonaccorso analyzed this for me:

> Install a fresh stretch installation and install gnustep-base-runtime
> in it. gdomap is not started by default, because gdomap init honours
> the ENABLED=no setting in /etc/default/gdomap. Now update the host to
> buster.
>
> During this update /etc/default/gdomap is updated according to the
> above. Unless the admin has modified it, where then it will be
> noticed and admin asked for a decision. As formerly the init was
> enabled, and the code to handle the ENABLED setting is removed this
> might be the problem. The postinst calls update-rc.d gdomap
> defaults-disabled [...]

"update-rc.d" does not do anything in this case.  The man page says

> If any files named /etc/rcrunlevel.d/[SK]??name already exist then
> update-rc.d does nothing.  The program was written this way so that
> it will never change an existing configuration, which may have been
> customized by the system administrator.  The program will only  
> install links if none are present, i.e., if it appears that the 
> service has never been installed before.

It is unfortunate that "Policy 9.3.3.1" does not have an explicit
warning about this potential security problem.

So this is a problem with upgrades.  It does not happen on a fresh
install of Debian 10.

Salvatore also suggested

> I think it's best handled though in a bugreport accordngly, and once
> fixed in unstable, to schedule a fix as well via a buster point
> release.

$ sudo netstat -l -p
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address   Foreign Address State   
PID/Program name
...
udp0  0 0.0.0.0:gdomap  0.0.0.0:*   
57/gdomap

$ ps aux | grep gdomap
nobody  57  0.0  0.0   2736  2052 ?Ss   11:16   0:00 
/usr/bin/gdomap -I /var/run/gdomap.pid -p -j /var/run/gdomap

$ dpkg-query -S gdomap
gnustep-base-runtime: /usr/share/man/man8/gdomap.8.gz
gnustep-base-runtime: /etc/default/gdomap
gnustep-base-runtime: /usr/bin/gdomap
gnustep-base-runtime: /etc/init.d/gdomap


[Report sent from a systemd-nspawn container, which I used to reproduce the 
issue]

-- System Information:
Debian Release: 10.0
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 5.2.9-200.fc30.x86_64 (SMP w/4 CPU cores)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE=C.UTF-8 
(charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gnustep-base-runtime depends on:
ii  gnustep-base-common  1.26.0-4
ii  init-system-helpers  1.56+nmu1
ii  libc62.28-10
ii  libgcc1  1:8.3.0-6
ii  libgnustep-base1.26  1.26.0-4
ii  libobjc4 8.3.0-6
ii  lsb-base 10.2019051400

gnustep-base-runtime recommends no packages.

gnustep-base-runtime suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: gnustep-base
Source-Version: 1.26.0-4+deb10u1

We believe that the bug you reported is fixed in the latest version of
gnustep-base, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is

Bug#921278: marked as done (bibtex2html: Lacks several math-related translations)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:34:36 +
with message-id 
and subject line Bug#921278: fixed in bibtex2html 1.99-3
has caused the Debian Bug report #921278,
regarding bibtex2html: Lacks several math-related translations
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.)


-- 
921278: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=921278
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: bibtex2html
Version: 1.99-2.1
Severity: wishlist
Tags: patch

Dear Maintainer,


I maintain several large bibtex files, including one devoted to
numerical analysis papers, with abstracts that use a lot of math
notation.  I have collected some of the required translations
into a latex macro file that I can load with the -m switch.
However, it would be more convenient to have those translations
built into bibtex2html tool.

I'm proposing four kinds of additions:

 - bibtex2html already had a translation for \log.  I've added
   translations for all 32 of the math functions on p. 162 of the
   TeXbook.

 - I added single-character translations for \lbrace, \rbrace,
   and \over.

 - There were already translations for \sum, \int, and \prod that
   used HTML entities.  I've added translations using
   Unicode.  (Note that there were already translations for "--"
   and "---" to both HTML entities and Unicode, presumably for
   situations where one was acceptable but the other was not, so
   I'm following the same convention.)

 - I added both Unicode and HTML translations for \ell, \ll,
   \gg,\langle, and \rangle.

I'm attaching a patch to make those additions for Debian.  It
would be even better to get them accepted upstream.

 - Jim Van Zandt


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (700, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.18.0-2-amd64 (SMP w/4 CPU cores)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_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

Versions of packages bibtex2html depends on:
ii  ocaml-base-nox [ocaml-base-nox-4.05.0]  4.05.0-11
ii  perl5.28.1-3
ii  texlive-base2018.20190131-1

bibtex2html recommends no packages.

Versions of packages bibtex2html suggests:
pn  hlins  


more-translations
Description: Binary data
--- End Message ---
--- Begin Message ---
Source: bibtex2html
Source-Version: 1.99-3

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

Debian distribution maintenance software
pp.
Ralf Treinen  (supplier of updated bibtex2html package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 12:14:52 +0200
Source: bibtex2html
Architecture: source
Version: 1.99-3
Distribution: unstable
Urgency: medium
Maintainer: Debian OCaml Maintainers 
Changed-By: Ralf Treinen 
Closes: 921278 921593
Changes:
 bibtex2html (1.99-3) unstable; urgency=medium
 .
   * Make this an architecture-dependent package:
 - set Architecture=any
 - fix patch charset, to use the unix module also for compilation to
   native code.
 - debian/rules: auto_build override conditional on whether this is an
   ocaml native architecture or not
 - debian/rules: auto_test override conditional on whether this is an
   ocaml native architecture or not
 - Depends: add {shlibs:Depends}
   * debian/ruies : drop override of dh_auto_install: we don't need it anymore
 since the upstream Makefile does the right thing for native and bytecode
 architectures.
   * debian/rules: drop override of dh_strip which is no longer needed.
   * Apply patch by James Van Zandt that adds many translations of
 math-related symbols. Thanks a lot for the patch! (closes: #921278)
   * Apply patch by James Van Zandt that adds translations of
 accentuated characters. Thanks a 

Bug#934519: marked as done (fence-agents: FTBFS in stretch/buster/sid (ImportError: No module named pywsman))

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:47:32 +
with message-id 
and subject line Bug#934519: fixed in fence-agents 4.0.25-1+deb9u2
has caused the Debian Bug report #934519,
regarding fence-agents: FTBFS in stretch/buster/sid (ImportError: No module 
named pywsman)
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.)


-- 
934519: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=934519
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:fence-agents
Version: 4.0.25-1
Severity: serious
Tags: ftbfs patch

Dear maintainer:

I tried to build this package in stretch but it failed:


[...]
 debian/rules build-arch
dh build-arch --with python2 --with autoreconf
   dh_testdir -a
   dh_update_autotools_config -a
   debian/rules override_dh_autoreconf
make[1]: Entering directory '/<>'
dh_autoreconf ./autogen.sh
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal -I make -I m4
configure.ac:70: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in 
body
../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
../../lib/autoconf/general.m4:2601: _AC_COMPILE_IFELSE is expanded from...
../../lib/autoconf/general.m4:2617: AC_COMPILE_IFELSE is expanded from...

[... snipped ...]

xsltproc ../../fence/agents/lib/fence2wiki.xsl apc_snmp/.fence_apc_snmp.8.tmp | 
grep -v ' apc_snmp/fence_apc_snmp.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python ifmib/fence_ifmib -o metadata > 
ifmib/.fence_ifmib.8.tmp && \
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
ifmib/.fence_ifmib.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl ifmib/.fence_ifmib.8.tmp > 
ifmib/fence_ifmib.8
ifmib/.fence_ifmib.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl ifmib/.fence_ifmib.8.tmp | grep 
-v ' ifmib/fence_ifmib.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python ibmblade/fence_ibmblade -o metadata > 
ibmblade/.fence_ibmblade.8.tmp && \
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
ibmblade/.fence_ibmblade.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl ibmblade/.fence_ibmblade.8.tmp > 
ibmblade/fence_ibmblade.8
ibmblade/.fence_ibmblade.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl ibmblade/.fence_ibmblade.8.tmp | 
grep -v ' ibmblade/fence_ibmblade.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python bladecenter/fence_bladecenter -o metadata > 
bladecenter/.fence_bladecenter.8.tmp && \
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
bladecenter/.fence_bladecenter.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl 
bladecenter/.fence_bladecenter.8.tmp > bladecenter/fence_bladecenter.8
bladecenter/.fence_bladecenter.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl 
bladecenter/.fence_bladecenter.8.tmp | grep -v ' 
bladecenter/fence_bladecenter.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python rhevm/fence_rhevm -o metadata > 
rhevm/.fence_rhevm.8.tmp && \
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
rhevm/.fence_rhevm.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl rhevm/.fence_rhevm.8.tmp > 
rhevm/fence_rhevm.8
rhevm/.fence_rhevm.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl rhevm/.fence_rhevm.8.tmp | grep 
-v ' rhevm/fence_rhevm.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python ilo/fence_ilo -o metadata > ilo/.fence_ilo.8.tmp && \
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
ilo/.fence_ilo.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl ilo/.fence_ilo.8.tmp > 
ilo/fence_ilo.8
ilo/.fence_ilo.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl ilo/.fence_ilo.8.tmp | grep -v 
' ilo/fence_ilo.wiki
set -e && \
PYTHONPATH=/<>/fence/agents/lib:/<>/fence/agents/../lib:/<>/fence/agents/lib
 \
/usr/bin/python alom/fence_alom -o metadata > alom/.fence_alom.8.tmp && 
\
xmllint --noout --relaxng /<>/fence/agents/lib/metadata.rng 
alom/.fence_alom.8.tmp && \
xsltproc ../../fence/agents/lib/fence2man.xsl alom/.fence_alom.8.tmp > 
alom/fence_alom.8
alom/.fence_alom.8.tmp validates
xsltproc ../../fence/agents/lib/fence2wiki.xsl alom/.fence_alom.8.tmp | 

Bug#940547: marked as done (python-cryptography: Testsuite fails with OpenSSL 1.1.1d)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:47:34 +
with message-id 
and subject line Bug#940547: fixed in python-cryptography 1.7.1-3+deb9u2
has caused the Debian Bug report #940547,
regarding python-cryptography: Testsuite fails with OpenSSL 1.1.1d
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.)


-- 
940547: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=940547
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python-cryptography
Version: 2.6.1-3
Severity: serious

The upload of latest openssl 1.1.1d triggert three testsuite failures in
python-cryptography [0]

- _ test_buffer_protocol_alternate_modes[mode5] 
__

|mode = 
|backend = 
|
|@pytest.mark.parametrize(
|"mode",
|[
|modes.CBC(bytearray(b"\x00" * 16)),
|modes.CTR(bytearray(b"\x00" * 16)),
|modes.OFB(bytearray(b"\x00" * 16)),
|modes.CFB(bytearray(b"\x00" * 16)),
|modes.CFB8(bytearray(b"\x00" * 16)),
|modes.XTS(bytearray(b"\x00" * 16)),
|]
|)
|@pytest.mark.requires_backend_interface(interface=CipherBackend)
|def test_buffer_protocol_alternate_modes(mode, backend):
|data = bytearray(b"sixteen_byte_msg")
|cipher = base.Cipher(
|algorithms.AES(bytearray(b"\x00" * 32)), mode, backend
|)
|>   enc = cipher.encryptor()
|
|tests/hazmat/primitives/test_aes.py:495: 
|_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
_ 
|/usr/lib/python2.7/dist-packages/cryptography/hazmat/primitives/ciphers/base.py:121:
 in encryptor
|self.algorithm, self.mode
|/usr/lib/python2.7/dist-packages/cryptography/hazmat/backends/openssl/backend.py:295:
 in create_symmetric_encryption_ctx
|return _CipherContext(self, cipher, mode, _CipherContext._ENCRYPT)
|/usr/lib/python2.7/dist-packages/cryptography/hazmat/backends/openssl/ciphers.py:116:
 in __init__
|self._backend.openssl_assert(res != 0)
|/usr/lib/python2.7/dist-packages/cryptography/hazmat/backends/openssl/backend.py:125:
 in openssl_assert
|return binding._openssl_assert(self._lib, ok)

This is due to commit 2a5f63c9a61be ("Allow AES XTS decryption using duplicate
keys.").
https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2a5f63c9a61be

- _ TestDH.test_dh_parameters_supported 
__

|self = 
|backend = 
|
|def test_dh_parameters_supported(self, backend):
|assert backend.dh_parameters_supported(23, 5)
|>   assert not backend.dh_parameters_supported(23, 18)
|E   assert not True
|E+  where True = >(23, 18)
|E+where > = .dh_parameters_supported
|
|tests/hazmat/primitives/test_dh.py:161: AssertionError

This is due to commit ddd16c2fe988e ("Change DH parameters to generate the
order q subgroup instead of 2q").
https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ddd16c2fe988e

- _ TestECDSACertificate.test_load_ecdsa_no_named_curve 
__

|self = 
|backend = 
|
|def test_load_ecdsa_no_named_curve(self, backend):
|_skip_curve_unsupported(backend, ec.SECP256R1())
|cert = _load_cert(
|os.path.join("x509", "custom", "ec_no_named_curve.pem"),
|x509.load_pem_x509_certificate,
|backend
|)
|with pytest.raises(NotImplementedError):
|>   cert.public_key()
|E   Failed: DID NOT RAISE 
|
|tests/x509/test_x509.py:3722: Failed

This is due to commit 9a43a733801bd ("[ec] Match built-in curves on
EC_GROUP_new_from_ecparameters").
https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9a43a733801bd


The first two changes in OpenSSL have been made on purporse and I'm not
sure about the last one.
Could someone please comment?

[0] 
https://ci.debian.net/data/autopkgtest/testing/amd64/p/python-cryptography/2969575/log.gz

Sebastian
--- End Message ---
--- Begin Message ---
Source: python-cryptography
Source-Version: 1.7.1-3+deb9u2

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

Debian distribution maintenance software
pp.
Sebastian Andrzej Siewior  (supplier of updated 
python-cryptography package)

(This message was 

Bug#941180: marked as done (RM: usbprog -- RoQA; dead upstream; unmaintained; low popcon; RC-buggy)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:15:31 +
with message-id 
and subject line Bug#941180: Removed package(s) from unstable
has caused the Debian Bug report #941180,
regarding RM: usbprog -- RoQA; dead upstream; unmaintained; low popcon; RC-buggy
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.)


-- 
941180: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941180
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: usbprog
Version: 0.2.0-2.2
Severity: normal

I think it's time to remove the usbprog package:

* upstream website gives 500 error
* last upstream release packaged was ~8.5 years ago
* has low popcon - inst:231 vote:180
* has no reverse dependencies (according to dak rm)
* last maintainer upload was over 7.5 years ago
* 4 open bugs with no maintainer response to any of them
* I had to NMU for the last wxWidgets transition 5 years ago, and
  it's now a blocker for the current wxwidgets3.0-gtk3 transition.

If there are no objections within two weeks, I'll turn this into an RM
bug.

Cheers,
Olly
--- End Message ---
--- Begin Message ---
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

libusbprog-dev | 0.2.0-2.2+b3 | amd64, arm64, armel, armhf, i386, mips64el, 
mipsel, ppc64el, s390x
libusbprog0v5 | 0.2.0-2.2+b3 | amd64, arm64, armel, armhf, i386, mips64el, 
mipsel, ppc64el, s390x
   usbprog |  0.2.0-2.2 | source
   usbprog | 0.2.0-2.2+b3 | amd64, arm64, armel, armhf, i386, mips64el, mipsel, 
ppc64el, s390x
usbprog-gui | 0.2.0-2.2+b3 | amd64, arm64, armel, armhf, i386, mips64el, 
mipsel, ppc64el, s390x

--- Reason ---
RoQA; dead upstream; unmaintained; low popcon; RC-buggy
--

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive and will not propagate to any mirrors until the next
dinstall run at the earliest.

Packages are usually not removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems. The release team can force a removal from testing if it is
really needed, please contact them if this should be the case.

We try to close bugs which have been reported against this package
automatically. But please check all old bugs, if they were closed
correctly or should have been re-assigned to another package.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 941...@bugs.debian.org.

The full log for this bug can be viewed at https://bugs.debian.org/941180

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#942186: marked as done (RM: sandboxgamemaker -- RoQA; inactive upstream; NIT; broken; orphaned; RC-buggy; low popcon)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:16:34 +
with message-id 
and subject line Bug#942186: Removed package(s) from unstable
has caused the Debian Bug report #942186,
regarding RM: sandboxgamemaker -- RoQA; inactive upstream; NIT; broken; 
orphaned; RC-buggy; low popcon
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.)


-- 
942186: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=942186
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ftp.debian.org
Severity: normal

* Last upstream release was 2013
* Not in testing
* Doesn't work at all without manually downloading a tarball from
  upstream, pulling out various files, and installing by hand (#764896)
* Orphaned
* Very low popcon (Inst: 58 Vote: 5)
* No rdeps according to: `dak rm -Rn sandboxgamemaker`

Cheers,
Olly
--- End Message ---
--- Begin Message ---
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

sandboxgamemaker | 2.8.2+dfsg-1 | source
sandboxgamemaker | 2.8.2+dfsg-1+b3 | amd64, arm64, armel, armhf, i386, 
mips64el, mipsel, ppc64el, s390x

--- Reason ---
RoQA; inactive upstream; NIT; broken; orphaned; RC-buggy; low popcon
--

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive and will not propagate to any mirrors until the next
dinstall run at the earliest.

Packages are usually not removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems. The release team can force a removal from testing if it is
really needed, please contact them if this should be the case.

We try to close bugs which have been reported against this package
automatically. But please check all old bugs, if they were closed
correctly or should have been re-assigned to another package.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 942...@bugs.debian.org.

The full log for this bug can be viewed at https://bugs.debian.org/942186

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#879121: marked as done (unixodbc-gui-qt FTCBFS: uses AC_CHECK_FILE for /usr/include)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:18:08 +
with message-id 
and subject line Bug#942264: Removed package(s) from unstable
has caused the Debian Bug report #879121,
regarding unixodbc-gui-qt FTCBFS: uses AC_CHECK_FILE for /usr/include
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.)


-- 
879121: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=879121
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: unixodbc-gui-qt
Version: 2.3.0-4
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

unixodbc-gui-qt fails to cross build from source, because it searches
for headers with AC_CHECK_FILES. The latter macro is supposed to search
the host system, but we need the headers on the build system. Just
trying "test -e ..." is good here. After doing so, unixodbc-gui-qt cross
builds successfully. Please consider applying the attached patch.

Helmut
diff -u unixodbc-gui-qt-2.3.0/qt.m4 unixodbc-gui-qt-2.3.0/qt.m4
--- unixodbc-gui-qt-2.3.0/qt.m4
+++ unixodbc-gui-qt-2.3.0/qt.m4
@@ -111,8 +111,8 @@
   # qt_dir_lib="$qt_dir"/lib
   # qt_dir_bin="$qt_dir"/bin
 
-  AC_CHECK_FILE([$qt_dir_include/QtGui/QWizard], [have_qtwizard=yes], [have_qtwizard=no])
-  AC_CHECK_FILE([$qt_dir_include/QtGui/QMdiArea], [have_qtmdiarea=yes], [have_qtmdiarea=no])
+  if test -e "$qt_dir_include/QtGui/QWizard"; then have_qtwizard=yes; else have_qtwizard=no; fi
+  if test -e "$qt_dir_include/QtGui/QMdiArea"; then have_qtmdiarea=yes; else have_qtmdiarea=no; fi
 
   MOC="$qt_dir_bin"/moc
   UIC="$qt_dir_bin"/uic
--- End Message ---
--- Begin Message ---
Version: 2.3.0-4+rm

Dear submitter,

as the package unixodbc-gui-qt has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/942264

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#920554: marked as done (unixodbc-bin: Binaries listed in description don't match binaries provided)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:18:08 +
with message-id 
and subject line Bug#942264: Removed package(s) from unstable
has caused the Debian Bug report #920554,
regarding unixodbc-bin: Binaries listed in description don't match binaries 
provided
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.)


-- 
920554: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=920554
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: unixodbc-bin
Version: 2.3.0-4+b1
Severity: important

Dear Maintainer,

First of all, THANK YOU, for maintaining this package!

Now, the problem:

The package description lists three binaries that are to be included with the
package, ODBCConfig, DataManager, and odbctest.  However, none of these
binaries are actually included.

Also, the package does provide binaries ODBCCreateDataSourceQ4, and
ODBCManageDataSourcesQ4.  However, these are not mentioned in the package
description.

Please provide the ODBCConfig, DataManager and odbctest binaries in this
package; and, please update the description to indicate that the package also
provides ODBCCreateDataSourceQ4 and ODBCManageDataSourcesQ4.

Thanks again!
Gene



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

Kernel: Linux 4.9.0-8-amd64 (SMP w/8 CPU cores)
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)

Versions of packages unixodbc-bin depends on:
ii  libc6  2.24-11+deb9u3
ii  libgcc11:6.3.0-18+deb9u1
ii  libodbc1   2.3.4-1
ii  libodbcinstq4-12.3.0-4+b1
ii  libqt4-network 4:4.8.7+dfsg-11
ii  libqtassistantclient4  4.6.3-7+b1
ii  libqtcore4 4:4.8.7+dfsg-11
ii  libqtgui4  4:4.8.7+dfsg-11
ii  libstdc++6 6.3.0-18+deb9u1
ii  odbcinst1debian2   2.3.4-1

unixodbc-bin recommends no packages.

unixodbc-bin suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Version: 2.3.0-4+rm

Dear submitter,

as the package unixodbc-gui-qt has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/942264

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#875172: marked as done ([rlplot] Future Qt4 removal from Buster)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:17:21 +
with message-id 
and subject line Bug#942263: Removed package(s) from unstable
has caused the Debian Bug report #875172,
regarding [rlplot] Future Qt4 removal from Buster
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.)


-- 
875172: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875172
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: rlplot
Version: 1.5-3
Severity: wishlist
User: debian-qt-...@lists.debian.org
Usertags: qt4-removal


Hi! As you might know we the Qt/KDE team are preparing to remove Qt4
as [announced] in:

[announced] 


Currently Qt4 has been dead upstream and we are starting to have problems
maintaining it, like for example in the [OpenSSL 1.1 support] case.

[OpenSSL 1.1 support] 

In order to make this move, all packages directly or indirectly depending on
the Qt4 libraries have to either get ported to Qt5 or eventually get
removed from the Debian repositories.

Therefore, please take the time and:
- contact your upstream (if existing) and ask about the state of a Qt5
port of your application
- if there are no activities regarding porting, investigate whether there are
suitable alternatives for your users
- if there is a Qt5 port that is not yet packaged, consider packaging it
- if both the Qt4 and the Qt5 versions already coexist in the Debian
archives, consider removing the Qt4 version

= Porting =

Some of us where involved in various Qt4 to Qt5 migrations [migration] and we
know for sure that porting stuff from Qt4 to Qt5 is much much easier and less
painful than it was from Qt3 to Qt4.

We also understand that there is still a lot of software still using Qt4.

Don't forget to take a look at the C++ API changes page [apichanges] whenever
you start porting your application.

[migration] http://pkg-kde.alioth.debian.org/packagingqtbasedstuff.html
[apichanges] http://doc.qt.io/qt-5/sourcebreaks.html

For any questions and issues, do not hesitate to contact the Debian Qt/KDE
team at debian-qt-...@lists.debian.org

The removal is being tracked in 

Lisandro,
on behalf of the Qt4 maintainers
--- End Message ---
--- Begin Message ---
Version: 1.5-4+rm

Dear submitter,

as the package rlplot has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/942263

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#941083: marked as done (ITP: stream-lib -- library for summarizing data in streams)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:00:10 +
with message-id 
and subject line Bug#941083: fixed in stream-lib 2.9.8-1
has caused the Debian Bug report #941083,
regarding ITP: stream-lib -- library for summarizing data in streams
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.)


-- 
941083: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941083
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Owner: Andrius Merkys 
Severity: wishlist
Control: block 585905 by -1

* Package name    : stream-lib
  Version : 2.9.8
  Upstream Author : Matt Abrams 
* URL : https://github.com/addthis/stream-lib
* License : Apache-2.0
  Programming Lang: Java
  Description : library for summarizing data in streams
 A Java library for summarizing data in streams for which it is
infeasible to
 store all events. More specifically, there are classes for estimating:
 cardinality (i.e. counting things); set membership; top-k elements and
 frequency. One particularly useful feature is that cardinality
estimators with
 compatible configurations may be safely merged.

This package is a dependency of apache-cassandra.

Remark: This package is to be maintained with Debian Java Maintainers at
   https://salsa.debian.org/java-team/stream-lib
--- End Message ---
--- Begin Message ---
Source: stream-lib
Source-Version: 2.9.8-1

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

Debian distribution maintenance software
pp.
Andrius Merkys  (supplier of updated stream-lib package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 24 Sep 2019 01:27:19 -0400
Source: stream-lib
Binary: libstream-java
Architecture: source all
Version: 2.9.8-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Andrius Merkys 
Description:
 libstream-java - library for summarizing data in streams
Closes: 941083
Changes:
 stream-lib (2.9.8-1) unstable; urgency=medium
 .
   * Initial release (Closes: #941083)
Checksums-Sha1:
 7a7033fc9c0110766a5a626086c20d805c11fc66 2160 stream-lib_2.9.8-1.dsc
 6f949d26827e95ad74870004da31bb401fc670a3 919812 stream-lib_2.9.8.orig.tar.gz
 d0c6f519949973d6124c2d9dca83eea3b34e1925 10628 stream-lib_2.9.8-1.debian.tar.xz
 a3bfd94f83933b52d95119cf72778c80ca2358e0 158908 libstream-java_2.9.8-1_all.deb
 a0da45419fe063f324d1cc9518052ed2e1264c71 13177 
stream-lib_2.9.8-1_amd64.buildinfo
Checksums-Sha256:
 2ab7b05a6bec2298081e3b791914eaa4a40539b88ae7184b650cb392d9c85daf 2160 
stream-lib_2.9.8-1.dsc
 b2a48d89f150545eed41ca4cdfcc1ec4730a107b67b61ddede6bdf6ae4417d1e 919812 
stream-lib_2.9.8.orig.tar.gz
 e87f7eeebdd5813c932f0abffa487523bcdaba257f456b626fb9f580e30d8805 10628 
stream-lib_2.9.8-1.debian.tar.xz
 437b64662553d665b79f1293b7bd0d6a0f77abeacdb3af38663ba9ee63f8e244 158908 
libstream-java_2.9.8-1_all.deb
 50b2ff0c74ee6cdabcbde7c332eaa8ae8dd4d5f858ac90e47e5902cec4f1e8df 13177 
stream-lib_2.9.8-1_amd64.buildinfo
Files:
 6a15c4ed04d0e463666a4f150c19d2d1 2160 java optional stream-lib_2.9.8-1.dsc
 03d7ff980782da9bb97764c8d6fb8080 919812 java optional 
stream-lib_2.9.8.orig.tar.gz
 76c680ff4e6ea5d054617c6b72b3a8c8 10628 java optional 
stream-lib_2.9.8-1.debian.tar.xz
 2adae2733c11fe902533526ae3a4a291 158908 java optional 
libstream-java_2.9.8-1_all.deb
 ca49d02e8c1bf352c9014571fc07b453 13177 java optional 
stream-lib_2.9.8-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEdyKS9veshfrgQdQe5fQ/nCc08ocFAl2K+gISHG1lcmt5c0Bk
ZWJpYW4ub3JnAAoJEOX0P5wnNPKH7W0P/1IsQ5ey2M2odbCriGyuqz0x7vM5+8s+
olBetjUyyvEKhBtDiBBZusCkqT1r9RD0wxHtjbuuAxpifYLPdZua0IJirwAsBOoD
9okN2TPYV4el0VKWvJJQUn2CqeYWthbKKBzrLbWWcE+w7LL3xEgXgh+fVhbbaKiU
dhD/R2s58PYD6dCABZFVOLoT9lwSxmaMPpdh5cIUjZUr+hUGmsHKFvi0XyZrTlHK
CnZzXh34RR/elHI8KV1WoSat44DeoCYHRqNo3S5HH3YwytTO7hcNUpHv1Kd2G5os
/LCVjyLWUDu+Pe2wziaSa7l5VO5/arMy8BSsXQtbBfgT7xCZbx0RaU88mTI7yj9l
OlRAduyArXTMrypL/RvGg334uGoiC/hsSQGJ+QtfF0/HeGf7cBs8eQ7q1oePVvWI
RyS4ccvfAtjHiC//VRmpLusuX9sYRyzMQwPJgqXH964UBgHxKKyHC/FLwuM/wyWO

Bug#935210: marked as done (python-nbxmpp: Please port to Python 3 and/or drop Python 2 package)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 19:20:10 +
with message-id 
and subject line Bug#935210: fixed in python-nbxmpp 0.6.10-1.1
has caused the Debian Bug report #935210,
regarding python-nbxmpp: Please port to Python 3 and/or drop Python 2 package
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.)


-- 
935210: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=935210
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python-nbxmpp
Severity: normal
User: debian-pyt...@lists.debian.org
Usertags: py2removal

Hello, please port python-nbxmpp to Python3 and/or drop the python 2
package. This will help the goal of removing Python 2 from Debian,
and would also (more immediately) allow to remove packages currently
dependencies of this one.

More info at: https://wiki.debian.org/Python/2Removal

Thanks, Sandro 
--- End Message ---
--- Begin Message ---
Source: python-nbxmpp
Source-Version: 0.6.10-1.1

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

Debian distribution maintenance software
pp.
Sandro Tosi  (supplier of updated python-nbxmpp package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 06 Oct 2019 14:33:39 -0400
Source: python-nbxmpp
Architecture: source
Version: 0.6.10-1.1
Distribution: unstable
Urgency: medium
Maintainer: Debian XMPP Maintainers 
Changed-By: Sandro Tosi 
Closes: 935210
Changes:
 python-nbxmpp (0.6.10-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Drop python2 support; Closes: #935210
Checksums-Sha1:
 4d2a10a0238a66aa37f4d27418d48befd33ccc2d 2127 python-nbxmpp_0.6.10-1.1.dsc
 fc141309184f0173e7a06ec668f2f5cb936e6fac 5780 
python-nbxmpp_0.6.10-1.1.debian.tar.xz
 0f3d6d64f92aac0e3687bcb5d324a3f413b08461 6212 
python-nbxmpp_0.6.10-1.1_source.buildinfo
Checksums-Sha256:
 900e6cc4521931b7932b898a7147a723bacb86e227124d82374eeef2f52f1792 2127 
python-nbxmpp_0.6.10-1.1.dsc
 72e8c95c19501b1f3b6872076beaec3dc895336d0555ad786eb42ba244bfe1de 5780 
python-nbxmpp_0.6.10-1.1.debian.tar.xz
 fd279d450723200b76d02514dd9673c9194e7a17d6282614e1874e8c706fe1bc 6212 
python-nbxmpp_0.6.10-1.1_source.buildinfo
Files:
 9ae2a4fccf5d0681e55b8035128683ed 2127 python optional 
python-nbxmpp_0.6.10-1.1.dsc
 38e8489d08c6b601e054f8285c9d1a2a 5780 python optional 
python-nbxmpp_0.6.10-1.1.debian.tar.xz
 33b835b7388687ad670be7b8a6fdba0d 6212 python optional 
python-nbxmpp_0.6.10-1.1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEufrTGSrz5KUwnZ05h588mTgBqU8FAl2aM/4ACgkQh588mTgB
qU9JyRAAh4uKFlUmS1X6vqcQOilMuTt5qgaxJZJgtZFAPWzTtCxXIIf8OYr2rwt0
iPpTleigv1qsELzNEe748bqBe6uYluV0ySiuGHcj341ZP64uogE3IYY0GLWUti6E
T+6TmTqSqKf/izutxdqLB/xdQntmKSm6RhA7D7wk+EC2CKqowkUDRToTibcHKADi
zVUaBPHQGeG/ysJ9JJK2Rovs+T3n1ZHaiwG0ACRM+2DugsfqTBjam92D26g0RPDq
iD6VfSPRUhtIWMPEP3r9C85w82/0hmA0EuBuwZrlHUKEIs6q6SdAyTCnRd5y2KE1
M3XtA3siRK70FDhjM3Y3PbBTsJWaNYoVFEts45IhoBBmmgsUylOA+pFcumM6wtux
SR7roErcSqFqBsRfnz9L7BE2ytemenIK5la5gEzdYpJ5UhI3aWWftxOcgBkfHG4L
Az6QoPPUzMYsM+WibGfIYfk5VY7itxvcmZlrGNoN2BaA2Oj/S5O4FUYfVnWD2s/W
l5BZ0+8Ky9ZJG/NamGhxNc4JH8h0LbCGEhfty6OpkFYOs+5n2OCVVCekJIfbfvqD
cKIiQkycmCFGtaN4DO2moRD11g0zDsAe79vP2t7h5R2Q++6/3G5M8CVb46ubs9vS
+F03l/V1l/GEjqRWzyVsc3XA4dFEv4qWqTSm1m649mrybTmy0Rg=
=gMVm
-END PGP SIGNATURE End Message ---


Bug#941179: marked as done (O: sandboxgamemaker -- 3D game maker and 3D game design program)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:16:42 +
with message-id 
and subject line Bug#942186: Removed package(s) from unstable
has caused the Debian Bug report #941179,
regarding O: sandboxgamemaker -- 3D game maker and 3D game design program
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.)


-- 
941179: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941179
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: normal
--- End Message ---
--- Begin Message ---
Version: 2.8.2+dfsg-1+rm

Dear submitter,

as the package sandboxgamemaker has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/942186

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#933408: marked as done (usbprog: Please rebuild against wxWidgets GTK 3 package)

2019-10-13 Thread Debian Bug Tracking System
Your message dated Sun, 13 Oct 2019 15:15:38 +
with message-id 
and subject line Bug#941180: Removed package(s) from unstable
has caused the Debian Bug report #933408,
regarding usbprog: Please rebuild against wxWidgets GTK 3 package
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.)


-- 
933408: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=933408
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: usbprog
Severity: normal

Hi,

Your package appears to be using the wxWidgets GTK 2 implementation.  In 
Debian, we have had a GTK 3 implementation of wxWidgets for some time.  
For the bullseye release, the wxWidgets package maintainers plan to 
remove the GTK 2 version, so we kindly request that you switch your 
package to use the GTK 3 version.  We have a transition tracker [1] 
setup to track progress.

Switching to the GTK 3 version may be as simple as:
1) Update your Build-Depends
   libwxgtk3.0-dev -> libwxgtk3.0-gtk3-dev
   libwxgtk-media3.0-dev -> libwxgtk-media3.0-gtk3-dev
2) Rebuild
3) Test

If everything seems to be working fine, that's probably all you need to do.

There are a couple of known issues:
1) If your package uses wxGLCanvas, this doesn't currently work when running
under Wayland.  As a workaround, you can force use of X.  See bug: [2]
2) If your package uses graphics contexts, it may encounter a problem with
coordinate overflow.  See bug: [3]

If you have any questions, or need assistance with the conversion, please
contact the wxWidgets team, team...@tracker.debian.org.

[1] https://release.debian.org/transitions/html/wxwidgets3.0-gtk3.html
[2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=900678
[3] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=906060
--- End Message ---
--- Begin Message ---
Version: 0.2.0-2.2+rm

Dear submitter,

as the package usbprog has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/941180

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


  1   2   >