Bug#1010879: reportbug: mmh is not co-installable with nmh

2022-05-12 Thread William Hay
Package: mmh
Version: mmh-0.4.4
Severity: wishlist

Dear Maintainer,
I want to use a more modern version of MH but retain the refile command
from nmh because I use the rmmproc functionality.
Attempting to install mmh with apt install mmh says it will remove nmh.
I was hoping the two would be co-installable.  I assume this conflict
occurs because both install executables with the same name in
/usr/bin/mh.  mailutils-mh avoids this conflict by installing
executables in /usr/bin/mu-mh.  Ideally both nmh and mmh would move
to different directories and manage /usr/bin/mh via /etc/alternatives or
similar but if not nmh was there first.

Thanks,
William

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

Kernel: Linux 5.16.0-0.bpo.4-amd64 (SMP w/2 CPU threads; PREEMPT)
Kernel taint flags: TAINT_WARN, TAINT_FIRMWARE_WORKAROUND
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages mmh depends on:
ii  file   1:5.39-3
ii  libc6  2.31-13+deb11u3
ii  libtinfo6  6.2+20201114-2

mmh recommends no packages.

mmh suggests no packages.



Processing of jaula_1.4.0-7_source.changes

2022-05-12 Thread Debian FTP Masters
jaula_1.4.0-7_source.changes uploaded successfully to localhost
along with the files:
  jaula_1.4.0-7.dsc
  jaula_1.4.0-7.debian.tar.xz
  jaula_1.4.0-7_amd64.buildinfo

Greetings,

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



Bug#984070: marked as done (jaula: ftbfs with GCC-11)

2022-05-12 Thread Debian Bug Tracking System
Your message dated Thu, 12 May 2022 15:34:28 +
with message-id 
and subject line Bug#984070: fixed in jaula 1.4.0-7
has caused the Debian Bug report #984070,
regarding jaula: ftbfs with GCC-11
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.)


-- 
984070: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=984070
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:jaula
Version: 1.4.0-6
Severity: normal
Tags: sid bookworm
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-11

[This bug is not targeted to the upcoming bullseye release]

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-11/g++-11, but succeeds to build with gcc-10/g++-10. The
severity of this report will be raised before the bookworm release,
so nothing has to be done for the bullseye release.

The full build log can be found at:
http://people.debian.org/~doko/logs/20210228/filtered/gcc11/jaula_1.4.0-6_unstable_gcc11.log
The last lines of the build log are at the end of this report.

To build with GCC 11, either set CC=gcc-11 CXX=g++-11 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-11/porting_to.html

GCC 11 defaults to the GNU++17 standard.  If your package installs
header files in /usr/include, please don't work around C++17 issues
by choosing a lower C++ standard for the package build, but fix these
issues to build with the C++17 standard.

[...]
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 
-g -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong -Wformat 
-Werror=format-security -c jaula_syntax_error.cc -o jaula_syntax_error.o 
>/dev/null 2>&1
jaula_parse.cc:459:22: warning: ‘template class std::auto_ptr’ is 
deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
  459 | std::auto_ptrpItemVal(parseValue(lexan, 
token));
  |  ^~~~
In file included from /usr/include/c++/11/memory:76,
 from jaula_parse.cc:47:
/usr/include/c++/11/bits/unique_ptr.h:57:28: note: declared here
   57 |   template class auto_ptr;
  |^~~~
jaula_parse.cc: At global scope:
jaula_parse.cc:563:5: error: ISO C++17 does not allow dynamic exception 
specifications
  563 | throw(Exception)
  | ^
make[4]: *** [Makefile:617: jaula_parse.lo] Error 1
make[4]: *** Waiting for unfinished jobs
In file included from jaula_value.cc:41:
../jaula/jaula_value.h:110:45: error: ISO C++17 does not allow dynamic 
exception specifications
  110 |   virtual void set(Value const &origin) throw(Bad_Data_Type);
  | ^
../jaula/jaula_value.h:130:43: error: ISO C++17 does not allow dynamic 
exception specifications
  130 |   Value &operator=(Value const &orig) throw(Bad_Data_Type);
  |   ^
In file included from jaula_value.cc:42:
../jaula/jaula_value_array.h:151:45: error: ISO C++17 does not allow dynamic 
exception specifications
  151 |   virtual void set(Value const &origin) throw(Bad_Data_Type);
  | ^
In file included from jaula_value.cc:43:
../jaula/jaula_value_boolean.h:98:45: error: ISO C++17 does not allow dynamic 
exception specifications
   98 |   virtual void set(Value const &origin) throw(Bad_Data_Type);
  | ^
In file included from jaula_value.cc:44:
../jaula/jaula_value_null.h:83:45: error: ISO C++17 does not allow dynamic 
exception specifications
   83 |   virtual void set(Value const &origin) throw(Bad_Data_Type);
  | ^
In file included from jaula_value.cc:45:
../jaula/jaula_value_number.h:98:45: error: ISO C++17 does not allow dynamic 
exception specifications
   98 |   virtual void set(Value const &origin) throw(Bad_Data_Type);
  | ^
In file included f

jaula_1.4.0-7_source.changes ACCEPTED into unstable

2022-05-12 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 May 2022 15:07:34 +
Source: jaula
Architecture: source
Version: 1.4.0-7
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Nilesh Patra 
Closes: 984070
Changes:
 jaula (1.4.0-7) unstable; urgency=medium
 .
   * QA upload.
   * Bump Standards-Version to 4.6.0 (no changes needed)
   * Remove dh-autoreconf from B-D and --with autoreconf in
 d/rules: Not needed after debhelper 10
   * d/rules: Force std=c++14 to package building (Closes: #984070)
   * Add "Rules-Requires-Root: no"
   * d/control: Change priority from extra to optional
   * Exclude unused patches
   * Remove useless d/*.dirs
Checksums-Sha1:
 3f8167626fd5f47ea4ad8996ba4f29184c54a947 1970 jaula_1.4.0-7.dsc
 7f9a713db65a390da395996c33bbecdf54062cf8 4824 jaula_1.4.0-7.debian.tar.xz
 1ede9769e60190acaf9cafd96216dab698ef1668 7290 jaula_1.4.0-7_amd64.buildinfo
Checksums-Sha256:
 db21e849488a80f765b7204ef5a75981d798fef69eb19595a195d2099c19de15 1970 
jaula_1.4.0-7.dsc
 20ed32a75637985dbd72c5c8f83ee95aca6ce7043b855a0f1a04ae4f1f16f340 4824 
jaula_1.4.0-7.debian.tar.xz
 3011c7dc15cbb9b2dc0fb0342069ef0c3be38512cf177fcb2283165c0a956217 7290 
jaula_1.4.0-7_amd64.buildinfo
Files:
 efcf8512289b173d412c552ee76ed12f 1970 libs optional jaula_1.4.0-7.dsc
 ae6c0b0ac28b3b4826ea648357f8b3cf 4824 libs optional jaula_1.4.0-7.debian.tar.xz
 57b10e6db049ee3fc1f37f057f1a5d60 7290 libs optional 
jaula_1.4.0-7_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEPpmlJvXcwMu/HO6mALrnSzQzafEFAmJ9I2wSHG5pbGVzaEBk
ZWJpYW4ub3JnAAoJEAC650s0M2nxZu8P/0nj42TS1JNWzimCtaDXb/NES7T5g91E
Shk1eb7h2pVfE5asc302bWvMoYcq0yic4NHF1AIcfXks15DyDRHYJz8oXWcnwzzM
LMvqwA2swztCFQgvhM2R1L+mTmi1iiz+PLlzTHFcoex0nIy/qYmQWRm4Uh+h/YP3
UPi6U6Dxh8dOWKvrC0WBPPRRipoDfJJ1r6AL0VSOwvIwthZH9kidRSVy4isfAGiB
voFwhnYMYz6hhtSM0zDgzqzhXP+TE3NDdJZM7yzDIwfnl1i6BSt4PUdSGFEbqWhB
N1wChYtitAPiSWg8+NOBIx/GSj92WB5vmepn8j9LAuMyj0hC2UxIkTIYz3Co/cX5
1Q4tLys0QoTlB2fgyqERnz1VKNNZgxD+XwuM8amy5FZoTwqgsmaX2LzsnO1gmiCa
+Co5+io8Wc4ZOAc51f4yxUugQqen6n/wTWrRN2cLUdrioUVeVH+gPIFDNKzzQM29
i7MVLHWl7pH47lPF3G3WOIHIwKyIBBQ6OXJ8DlNkzJjmTgzQBPC5P4llqxJhVj6G
hicuy38wGjcBSyuhuDE6TC4YPalDiJQJ/wDWzo0nvRKiNUNRKcVsILnFSFpr30yQ
4jxAtiAOtWw5b7HbAJE88EOayyosM/lsCzgj92bAodvNbyPjcOc+1jeazj4GgoSV
ON6CaxeqJHqH
=C1cB
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of abicheck_1.2-8_source.changes

2022-05-12 Thread Debian FTP Masters
abicheck_1.2-8_source.changes uploaded successfully to localhost
along with the files:
  abicheck_1.2-8.dsc
  abicheck_1.2.orig.tar.gz
  abicheck_1.2-8.debian.tar.xz
  abicheck_1.2-8_amd64.buildinfo

Greetings,

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



Processing of grpc-proto_0.0~git20220429.154a1b2-1_source.changes

2022-05-12 Thread Debian FTP Masters
grpc-proto_0.0~git20220429.154a1b2-1_source.changes uploaded successfully to 
localhost
along with the files:
  grpc-proto_0.0~git20220429.154a1b2-1.dsc
  grpc-proto_0.0~git20220429.154a1b2.orig.tar.xz
  grpc-proto_0.0~git20220429.154a1b2-1.debian.tar.xz
  grpc-proto_0.0~git20220429.154a1b2-1_amd64.buildinfo

Greetings,

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



abicheck_1.2-8_source.changes ACCEPTED into unstable

2022-05-12 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 May 2022 14:33:23 -0400
Source: abicheck
Architecture: source
Version: 1.2-8
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Boyuan Yang 
Changes:
 abicheck (1.2-8) unstable; urgency=medium
 .
   * QA upload.
 .
   [ Debian Janitor ]
   * Trim trailing whitespace.
   * Add missing ${misc:Depends} to Depends for abicheck.
   * Set upstream metadata fields: Archive, Repository.
 .
   [ Boyuan Yang ]
   * debian/control: Bump Standards-Version to 4.6.1.
Checksums-Sha1:
 a4902401fb7c093cd956e06de8b88e66e6680641 1773 abicheck_1.2-8.dsc
 32c085c833bb92a6e32e41043ab5e0d5963f789c 53543 abicheck_1.2.orig.tar.gz
 53d3fd662e55afb555818f06d9b231c3c1fa35ca 3112 abicheck_1.2-8.debian.tar.xz
 5c30e4d796d7ec6d281960a2209629e0e3e4df38 5691 abicheck_1.2-8_amd64.buildinfo
Checksums-Sha256:
 18e078c6d18b0bfa1cf484c38bed28765413e7cb6e3a71d84e2045ecbbd24803 1773 
abicheck_1.2-8.dsc
 b53a2e08da609e8d2fe13d7f9c2966598d2b4991e0d473572010eb39d151d803 53543 
abicheck_1.2.orig.tar.gz
 46da4edda2f3dfb6ee38196cd6f9a909ac9d46ce5e76e1e518a686a0ada51416 3112 
abicheck_1.2-8.debian.tar.xz
 e5e4fb8bca86c48c949419ef2cae1dc9bb97711fb593149df1585cf873789be8 5691 
abicheck_1.2-8_amd64.buildinfo
Files:
 aabb392d0fb855f2451253755589b4b9 1773 devel optional abicheck_1.2-8.dsc
 57097ed1f8c20d974b0b1a9850e61f08 53543 devel optional abicheck_1.2.orig.tar.gz
 53ceeb9636ea522ba3d10953ea7e7d90 3112 devel optional 
abicheck_1.2-8.debian.tar.xz
 0b15bb2d45e2d1b18efbed78811519c7 5691 devel optional 
abicheck_1.2-8_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIyBAEBCgAdFiEEfncpR22H1vEdkazLwpPntGGCWs4FAmJ9U3IACgkQwpPntGGC
Ws7uzA/3Y76NnfZZvY3lvbX40I5Av3Hf8etkP6Pylq8tS/AWoBG/QAXpK+PdIMj5
3WuQeCNK6KSPqTM857ZdlNwaJPHt2mJZyavIpOtmmGdREKcX6hz0qSln4AmQAIMV
GPphWD3T21VLGdm/8H3XfvUbWFWv93CoU1yUBYM/r9Aw7peVQdpo4pDfITJGnRLD
NtvegSE4YHESBFaZLrnXq54dfw/T/Rgn0Tg+PNNnZ7XSYRf6pUJToRaL/5USRocW
OZbtAuXzYiGPuEevtIH+NBwUWpHu8cvRedUz5wQbJmVdt8cdvHkwqo4Dypbx+njj
E+y72djAXO70GIS1aN5y6zq6i/hQyJw04OWUTW4oT9ze3Gjk6Qq5f6Fpb9opaqAr
rT/IS123dltE729/Y8x/ENvTPN61sYLmoIS++UIacu3k36NMxZ2Pf+Ew6+kp9ZAp
lcwdOAlugptvdfxgMHdqYQ7UW/fDwrQfbcOJo8XCf9WMahHaaUlkmtlMNIey1iXt
3fDkwFQzBJ9PIY+LU57WY1Uaf6wBgldwRiwgHrQ/+X3AFWRvCAkoejHDOlT6WJiA
XdiMTpxbJK4RT5TsI9b6P3sq/0Vu9CFnYrpMgLaWetyNIm3r/Z4NeqbsHDX4HFAL
fdpmMCYYz0E3YC4QnpRMMYQ/117WAn23Qcv9G7gg2gq7kzMzDA==
=J4i2
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



grpc-proto_0.0~git20220429.154a1b2-1_source.changes ACCEPTED into unstable

2022-05-12 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 May 2022 14:37:42 -0400
Source: grpc-proto
Architecture: source
Version: 0.0~git20220429.154a1b2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Boyuan Yang 
Changes:
 grpc-proto (0.0~git20220429.154a1b2-1) unstable; urgency=medium
 .
   * QA upload.
   * New upstream snapshot.
   * Bump Standards-Version to 4.6.1.
Checksums-Sha1:
 df2a725c3f87b4b6bf941ca5fae70b79906480c6 1973 
grpc-proto_0.0~git20220429.154a1b2-1.dsc
 ebe62ba7ea0961885fc7137d5e658cfb495c8234 37804 
grpc-proto_0.0~git20220429.154a1b2.orig.tar.xz
 0bc4978fb48cd98df9f3a5f94fd188c70ab7407d 2128 
grpc-proto_0.0~git20220429.154a1b2-1.debian.tar.xz
 543eeedb563b328eff8b4e387345d093c3fe07f9 5871 
grpc-proto_0.0~git20220429.154a1b2-1_amd64.buildinfo
Checksums-Sha256:
 ea07d11db04fa2769b35c5362297af1a7d25392a2dd40ac7381aeba27732a336 1973 
grpc-proto_0.0~git20220429.154a1b2-1.dsc
 44eecaff957c448baa8b99e64596c21a0960524db4006af48f4b54a380817083 37804 
grpc-proto_0.0~git20220429.154a1b2.orig.tar.xz
 bc9c3b4e300a9394de515439cf4271c710853156b80951a70fe7688bbc5769b3 2128 
grpc-proto_0.0~git20220429.154a1b2-1.debian.tar.xz
 0d9b009b9fa857d102d01a846158b4a0c9f6b60bbdc1242a5040ecd0cf1812cd 5871 
grpc-proto_0.0~git20220429.154a1b2-1_amd64.buildinfo
Files:
 4f34386e35bb93ffe14af85a40660872 1973 misc optional 
grpc-proto_0.0~git20220429.154a1b2-1.dsc
 d9087a6850fab69e0de6e4f9beac76a0 37804 misc optional 
grpc-proto_0.0~git20220429.154a1b2.orig.tar.xz
 7ebf7ca99813980463a6a85d2d99ec72 2128 misc optional 
grpc-proto_0.0~git20220429.154a1b2-1.debian.tar.xz
 f4da383a141eb2749d8706f4841d33b9 5871 misc optional 
grpc-proto_0.0~git20220429.154a1b2-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEfncpR22H1vEdkazLwpPntGGCWs4FAmJ9VF8ACgkQwpPntGGC
Ws7nlBAAgzbTfMxxoG7tJ7hw++DP1WAeu1n+mTGx39fn/j87/ZPLM6/erVHOBqMd
b0MtoVOJEyoq8XqdwXoHsF9c2ReSyigweyKh+Ca2HqBa2wsptuC1s/D7bqXMOIPX
OrCu0lYM2/HJzSRXwJq1c6XSqvhN0U6+LnhU8+NdDQJ5n+TZDMVz+FxnXjS/5/ZW
DPd815E+t3u9e/5hCEuHX1oiO4s9mfAmhvWyxwvTIgCnkXE9/7HAjO2PTJOXV00a
ozXoBNnAuPLga08SLPZovL/bx1uMQKZd/hBJPEZ4RqPV4+9hnPwaBMfebY6P3LXg
ptgtNGCVtOWbxWE+x9Tmm1fN2Cg6M33spChZPYvuei+747A/eD5YvrLyARdbK17j
pGAHE7SumhQDtjsqaXvfkp+/BefG5ac7FWzdLKcvtDpvcACnWlwe/oaQhwyyPLcH
tGZZ3VPDTlgyfnqDH5OJ35lJJip3E5epA9dU4k6rgb8rI0Lh4ng9YIWFH1wBFxH1
30GGb6+/n/+vFoGg5zxNRAZIiwgHnSqX1sNfRaLkG3l5OinHKAiE97ZoYJmtUBOU
ieAivWHnCd+sVtYBZZlruF8jnxU+HhR5WzTyvj3o7iDqwlK363eEf/2JXUNYvGoD
tE5mVeeV9LKgjROekc+D7jFiFiLwJNVl2pffZ54pT5RtA4YjvDc=
=lVRz
-END PGP SIGNATURE-


Thank you for your contribution to Debian.