Your message dated Mon, 22 Feb 2016 00:46:09 +0000
with message-id <[email protected]>
and subject line Bug#815456: Removed package(s) from unstable
has caused the Debian Bug report #259287,
regarding XSI:ism in debian/rules + wishlist fixes...
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.)
--
259287: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=259287
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: apt-zip
Version: 0.13.2
Severity: wishlist
Tags: patch
debian/rules contains use of the XSI:ism `-a'. This patch fixes this.
The reason I filed this as wishlist instead of minor is because this
patch also changes 3 /bin/bash-scripts into /bin/sh-scripts after doing
minor fixes. Feel free to do as you please, but at least apply the
debian/rules part, since that is a real bug (if you have /bin/sh
pointing to /bin/posh for instance, it'll hit you...)
My reason for wanting /bin/sh instead of /bin/bash is pretty simple; it
makes it easier to replace bash for use in embedded systems where every
single byte counts. Granted, apt-zip might not be used too often on
such systems, but I use it myself from time to time =)
Reference:
http://www.opengroup.org/onlinepubs/009695399/utilities/test.html
Regards: David Weinehall
diff -ur apt-zip-0.13.2-old/apt-zip-inst apt-zip-0.13.2/apt-zip-inst
--- apt-zip-0.13.2-old/apt-zip-inst 2001-08-28 22:48:52.000000000 +0300
+++ apt-zip-0.13.2/apt-zip-inst 2004-07-13 20:34:25.000000000 +0300
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
exithook()
{
@@ -25,7 +25,7 @@
if [ -r ${APTZIPINSFILE} ] ; then
. ${APTZIPINSFILE}
else
- [ -z "$PACKAGES" -a -z "$APTGETACTION" ] &&
+ [ -z "$PACKAGES" ] && [ -z "$APTGETACTION" ] &&
error "There is no ${APTZIPINSFILE} file. Set --aptgetaction or
--packages instead."
fi
diff -ur apt-zip-0.13.2-old/apt-zip-list apt-zip-0.13.2/apt-zip-list
--- apt-zip-0.13.2-old/apt-zip-list 2001-08-28 22:48:52.000000000 +0300
+++ apt-zip-0.13.2/apt-zip-list 2004-07-13 20:34:53.000000000 +0300
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
exithook()
{
@@ -10,7 +10,7 @@
. ${SHAREDIR}/common.sh
# options to take care
-[ -z "$APTGETACTION" -a -z "$PACKAGES" ] &&
+[ -z "$APTGETACTION" ] && [ -z "$PACKAGES" ] &&
eval export APTGETACTION=\${APTGETACTION-${DEFAULT_APTGETACTION}}
[ -n "$APTGETACTION" ] && check_aptgetaction
diff -ur apt-zip-0.13.2-old/debian/rules apt-zip-0.13.2/debian/rules
--- apt-zip-0.13.2-old/debian/rules 2001-08-29 16:21:00.000000000 +0300
+++ apt-zip-0.13.2/debian/rules 2004-07-13 20:34:08.000000000 +0300
@@ -27,7 +27,7 @@
dh_testdir
$(MAKE)
- test "$$DEV" = "yes" -o "${DVERSION}" = "${UVERSION}" || \
+ test "$$DEV" = "yes" || test "${DVERSION}" = "${UVERSION}" || \
{ echo "Version mismatch"; false; }
touch build-stamp
diff -ur apt-zip-0.13.2-old/methods/wget apt-zip-0.13.2/methods/wget
--- apt-zip-0.13.2-old/methods/wget 2001-08-28 22:48:52.000000000 +0300
+++ apt-zip-0.13.2/methods/wget 2004-07-13 20:35:09.000000000 +0300
@@ -1,4 +1,4 @@
-#!/bin/bash -e
+#!/bin/sh -e
error()
{
@@ -58,7 +58,7 @@
TARADD=rf
fi
-[ "$OPTION_RESTART" = 0 -a "$OPTION_GNUTAR" != 0 -a "$OPTION_SOLARISTAR" = 0
] && warn "RESTART without SOLARISTAR is currently awfully slow"
+[ "$OPTION_RESTART" = 0 ] && [ "$OPTION_GNUTAR" != 0 ] && [
"$OPTION_SOLARISTAR" = 0 ] && warn "RESTART without SOLARISTAR is currently
awfully slow"
###############
# Stuff dependant on RESTART option
#
--- End Message ---
--- Begin Message ---
Version: 0.18+rm
Dear submitter,
as the package apt-zip 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/815456
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
[email protected].
Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)
--- End Message ---