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 #358605,
regarding apt-zip fetch script should have a --relocate option
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.)


-- 
358605: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=358605
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: apt-zip
Severity: wishlist

I've got apt-zip 0.9 installed, and generally find it useful. However, the
fetch script it generated didn't seem to cope too well if the link dropped
and the script had to be restarted. As the fetch script only moves files into
../disk once they are completely transferred, I made a modification to it to
skip downloading any files found in ../disk. This way I could restart the
script and it would not needlessly get any files already successfully
downloaded. My modified fetch script starts:

#!/bin/sh
# auto-generated file from apt-zip-list
set -e
err(){ echo >&2 "Fetching $1 failed ($2)"; }
do_wget(){
wget --passive-ftp -t3 -nv -O $2 $1
ret=0
[ "`which md5sum`" ] && 
if [ "`md5sum $2 | cut -d' ' -f1`" = $4 ]
then return 0
else err $2 "wrong MD5"; return 1
fi
[ "`which gzip`" ] &&
if ar p $2 data.tar.gz | gzip -t
then return 0
else err $2 "wrong contents"; return 1
fi
return 
}
getfile(){
if [ -f ../disk/$2 ]
then
echo Already got $2
else
do_wget $1 $2 $3 $4 &&
mv $2 ../disk/
fi
}
mkdir -p partial disk && cd partial
while read URL FILE SIZE MD5
do getfile $URL $FILE $SIZE $MD5
done <<EOP



If you think this is useful please feel free to include this modification in
the package.

Thanks for a useful program,

Nicholas Clark



--- 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 ---

Reply via email to