Your message dated Thu, 28 Nov 2024 18:21:16 +0000
with message-id <[email protected]>
and subject line Bug#1085868: Removed package(s) from unstable
has caused the Debian Bug report #601006,
regarding /usr/bin/monkeysphere fails miserably when it shouldn't due to
irksome set -e
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 [email protected]
immediately.)
--
601006: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601006
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: monkeysphere
Version: 0.33-1
/usr/bin/monkeysphere conains a "set -e" invocation rather
than relying on proper error checking.
This means that arithmatic expressions which return 0 will be
treated as failures. In order to work around this problem,
you can replace things like
(( nline=0 ))
with
(( nline=0,1 ))
or
(( nline=0 )) || true
and things like
(( nline++ ))
with
(( ++nline ))
Personally, though, I would get rid of "set -e" since it is a
blight on humanity.
--- End Message ---
--- Begin Message ---
Version: 0.43-3.1+rm
Dear submitter,
as the package monkeysphere 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/1085868
The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.
Please note 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.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Thorsten Alteholz (the ftpmaster behind the curtain)
--- End Message ---