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 #101307, regarding add possibility to choose status file 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.) -- 101307: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=101307 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: apt-zip Severity: wishlist Version: 0.12.1 Hi, If someone wants to maintain this or do a NMU (please feel free to do it) here it's the devel state. diff -ur apt-zip-0.12.1/apt-zip-list apt-zip-0.12.2/apt-zip-list --- apt-zip-0.12.1/apt-zip-list Fri Mar 9 00:22:03 2001 +++ apt-zip-0.12.2/apt-zip-list Sat Jun 16 12:54:22 2001 @@ -14,6 +14,13 @@ eval export APTGETACTION=\${APTGETACTION-${DEFAULT_APTGETACTION}} [ -n "$APTGETACTION" ] && check_aptgetaction +# option to run apt-zip-list as non-root (I think it must work but it +# currently doesn't) +#APTGETEXTRAOPTS="${APTGETEXTRAOPTS} -o Debug::NoLocking=true" + +# option to change the status file +APTGETEXTRAOPTS="${APTGETEXTRAOPTS} ${APTLISTSTATUS}" + # Find block size on zip BSTMP=$(tempfile -d $MEDIUM -p aptzip) if [ $? != 0 ] @@ -31,7 +38,7 @@ [ -n "$PACKAGES" ] && apt-get ${APTGETEXTRAOPTS} -qq --print-uris install $PACKAGES > $TMP [ -n "$APTGETACTION" ] && apt-get ${APTGETEXTRAOPTS} -qq --print-uris ${APTGETACTION} >> $TMP -grep $GREP < $TMP | tr -d "'" > $TEMP +grep $GREP < $TMP | tr -d "'" | sort | uniq > $TEMP if [ $? != 0 ] then error "apt-get failed" diff -ur apt-zip-0.12.1/apt-zip.sgml apt-zip-0.12.2/apt-zip.sgml --- apt-zip-0.12.1/apt-zip.sgml Fri Nov 3 00:52:10 2000 +++ apt-zip-0.12.2/apt-zip.sgml Wed Nov 22 02:57:56 2000 @@ -63,7 +63,8 @@ used on another host (maybe not running a Debian system) to fetch packages previously selected in <citerefentry><refentrytitle/dselect/<manvolnum/8/</citerefentry> or - indicated in the command line, the other <filename>apt-zip.options</filename>saves the options used by + indicated in the command line, the other, + <filename>apt-zip.options</filename>, saves the options used by <command>apt-zip-list</command> to indicates to <command>apt-zip-inst</command> what action to perform and/or which packages to install. diff -ur apt-zip-0.12.1/common.sh apt-zip-0.12.2/common.sh --- apt-zip-0.12.1/common.sh Fri Nov 3 00:52:35 2000 +++ apt-zip-0.12.2/common.sh Sat Jun 16 12:52:32 2001 @@ -1,6 +1,6 @@ # library file sourced by apt-zip-* -APTZIPVERSION=0.12.1 +APTZIPVERSION=0.12.2 export APTZIPVERSION CONFFILE=/etc/apt/apt-zip.conf @@ -41,17 +41,18 @@ where options can be: -h, --help Print this help message -v, --version Print version and exit - -m, --method=METH Fetch method METH used on download host - -M, --medium=DIR Removable medium at mountpoint DIR for the transfers + -M, --method=METH Fetch method METH used on download host + -m, --medium=DIR Removable medium at mountpoint DIR for the transfers + -s, --skip-mount Do not mount a device on the dir specified by --medium -o, --options=LIST List of options -a, --aptgetaction=ACTION Action ACTION done by apt-get -p, --packages=LIST List of extra packages to install + -S, --status=FILE File used as the status file -A, --accept=LIST List of accepted protocols for download (http,ftp,..) -R, --reject=LIST List of rejected protocols for download (file,cdrom,..) -f, --fix-broken Call apt-get with this flag - -s, --skip-mount Do not mount a device on the dir specified by --medium EOF } @@ -165,6 +166,16 @@ --packages|-p) if [ $# -lt 2 ]; then syntax_error "$1 needs an argument"; fi PACKAGES="$PACKAGES, $2" + shift + shift + ;; + --status=*) + APTLISTSTATUS=${1#--status=} + shift + ;; + --status|-S) + if [ $# -lt 2 ]; then syntax_error "$1 needs an argument"; fi + APTLISTSTATUS=$2 shift shift ;; diff -ur apt-zip-0.12.1/debian/changelog apt-zip-0.12.2/debian/changelog --- apt-zip-0.12.1/debian/changelog Fri Nov 3 00:50:58 2000 +++ apt-zip-0.12.2/debian/changelog Sat Jun 16 12:48:14 2001 @@ -1,3 +1,12 @@ +apt-zip (0.12.2) unstable; urgency=low + + * Added an option to choose the status file + * Fix a bug with the Solaris which. + * Fix a typo with the -m and -M options + * Added options to save bandwith + + -- Santi Bejar <[email protected]> Fri, 9 Mar 2001 00:48:10 +0100 + apt-zip (0.12.1) unstable; urgency=low * Change apt-zip.deb for apt-zip.options for clarity. diff -ur apt-zip-0.12.1/debian/rules apt-zip-0.12.2/debian/rules --- apt-zip-0.12.1/debian/rules Thu Feb 24 00:49:17 2000 +++ apt-zip-0.12.2/debian/rules Sat Jun 16 12:46:14 2001 @@ -11,10 +11,10 @@ PACKAGE=apt-zip -# Test that I did not forget to update the version in the source -# When I develop, versions usually do not match, so the test can be -# bypassed using "env DEV=yes debian/rules ...". Do not set this in the -# environment, or the check is never done ! +# Test that I did not forget to update the version and manpage in the +# source. When I develop, versions and manpage usually do not match, so +# the test can be bypassed using "env DEV=yes debian/rules ...". Do +# not set this in the environment, or the check is never done ! DVERSION=$(shell dpkg-parsechangelog | grep '^Version: ' | cut -d' ' -f2) UVERSION=$(shell grep ^APTZIPVERSION= common.sh | cut -d= -f2) diff -ur apt-zip-0.12.1/methods/wget apt-zip-0.12.2/methods/wget --- apt-zip-0.12.1/methods/wget Fri Nov 3 00:45:55 2000 +++ apt-zip-0.12.2/methods/wget Sat Jun 16 12:57:22 2001 @@ -19,12 +19,19 @@ #!/bin/sh # This file was auto-generated by apt-zip-list ${APTZIPVERSION} # Method: wget - Options: ${OPTIONS} + +# Options to save bandwith (not tested) +# Seconds to be stopped (0 to not stop) +stopped=0 +# Second to be alive +alive=\${stopped-1} + err(){ echo >&2 "Fetching \$1 failed (\$2)" } check(){ [ ! -r "\$1" ] && return 1 - [ "\`which md5sum\`" ] && + [ "\`which md5sum | grep -v '^no md5sum in'\`" ] && if [ "\`md5sum \$1 | cut -d' ' -f1\`" = \$2 ] then return 0 else err \$1 "wrong MD5"; return 1 @@ -125,22 +132,38 @@ else cat <<EOF getfile(){ - do_wget \$1 \$2 \$3 \$4 && - $TAR $TARADD $APTZIPTARFILE \$2 && - rm \$2 + do_wget \$1 \$2 \$3 \$4 && + $TAR $TARADD $APTZIPTARFILE \$2 && + rm \$2 } touch foo-stamp && $OPTION_TAR cf $APTZIPTARFILE foo-stamp && rm foo-stamp EOF fi +cat <<EOF +if [ -z "\$stopped"] || ["\$stopped" = 0] ; + then + downloadfile(){ + getfile \$1 \$2 \$3 \$4 } +else + downloadfile(){ + getfile \$1 \$2 \$3 \$4 & + while (kill -STOP \$! ) + do sleep \$stopped + kill -CONT \$! + sleep $alive + done 2> /dev/null + } + +EOF ############### # Feed the data to the core function # -cat <<-EOF - while read URL FILE SIZE MD5 - do getfile \$URL \$FILE \$SIZE \$MD5 || true - done <<EOP +cat <<EOF +while read URL FILE SIZE MD5 + do downloadfile \$URL \$FILE \$SIZE \$MD5 +done <<EOP EOF ###############
--- 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 ---

