Your message dated Thu, 31 May 2012 08:52:55 +0000
with message-id <[email protected]>
and subject line Bug#671723: fixed in qemu 1.1.0~rc3+dfsg-1
has caused the Debian Bug report #671723,
regarding qemu-utils: [PATCH] Why so dummy option parser in 
qemu-make-debian-root?
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.)


-- 
671723: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671723
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: qemu-utils
Version: 1.0.1+dfsg-1
Severity: normal
Tags: patch

qemu-make-debian-root doesn't even understand "-ks"! But "usage" message
says that it understands :)

--- /usr/sbin/qemu-make-debian-root     2012-05-06 13:54:25.864831777 +0400
+++ /tmp/fixed  2012-05-06 14:00:06.910751879 +0400
@@ -18,19 +18,26 @@
 }
 
 KEEPFS=0
-if [ "$1" = "-k" ] || [ "$2" = "-k" ]; then
-    KEEPFS=1
-fi
-
 SPARSE=0
-if [ "$1" = "-s" ] || [ "$2" = "-s" ]; then
-    SPARSE=1
-fi
 
-# Remove any options, tacitly assuming them at the beginning.
-#
-[ $KEEPFS -eq 1 ] && shift
-[ $SPARSE -eq 1 ] && shift
+while :; do
+    case "$1" in
+        -k)
+            KEEPFS=1
+            ;;
+        -s)
+            SPARSE=1
+            ;;
+        -ks|-sk)
+            KEEPFS=1
+            SPARSE=1
+            ;;
+        *)
+            break
+            ;;
+    esac
+    shift
+done
 
 if [ $# -lt 4 ]; then
     echo Usage: "$0 [-ks] size-in-MB distrib deburl image
[files_to_copy_in_/root]" >&2




-- System Information:
Debian Release: 6.0.4
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-12-generic (SMP w/8 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages qemu-utils depends on:
..

qemu-utils recommends no packages.

Versions of packages qemu-utils suggests:
..

-- no debconf information



--- End Message ---
--- Begin Message ---
Source: qemu
Source-Version: 1.1.0~rc3+dfsg-1

We believe that the bug you reported is fixed in the latest version of
qemu, which is due to be installed in the Debian FTP archive:

qemu-keymaps_1.1.0~rc3+dfsg-1_all.deb
  to main/q/qemu/qemu-keymaps_1.1.0~rc3+dfsg-1_all.deb
qemu-system_1.1.0~rc3+dfsg-1_i386.deb
  to main/q/qemu/qemu-system_1.1.0~rc3+dfsg-1_i386.deb
qemu-user-static_1.1.0~rc3+dfsg-1_i386.deb
  to main/q/qemu/qemu-user-static_1.1.0~rc3+dfsg-1_i386.deb
qemu-user_1.1.0~rc3+dfsg-1_i386.deb
  to main/q/qemu/qemu-user_1.1.0~rc3+dfsg-1_i386.deb
qemu-utils_1.1.0~rc3+dfsg-1_i386.deb
  to main/q/qemu/qemu-utils_1.1.0~rc3+dfsg-1_i386.deb
qemu_1.1.0~rc3+dfsg-1.debian.tar.gz
  to main/q/qemu/qemu_1.1.0~rc3+dfsg-1.debian.tar.gz
qemu_1.1.0~rc3+dfsg-1.dsc
  to main/q/qemu/qemu_1.1.0~rc3+dfsg-1.dsc
qemu_1.1.0~rc3+dfsg-1_i386.deb
  to main/q/qemu/qemu_1.1.0~rc3+dfsg-1_i386.deb
qemu_1.1.0~rc3+dfsg.orig.tar.gz
  to main/q/qemu/qemu_1.1.0~rc3+dfsg.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Vagrant Cascadian <[email protected]> (supplier of updated qemu package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Wed, 30 May 2012 20:24:59 -0700
Source: qemu
Binary: qemu qemu-keymaps qemu-system qemu-user qemu-user-static qemu-utils
Architecture: source all i386
Version: 1.1.0~rc3+dfsg-1
Distribution: experimental
Urgency: low
Maintainer: Debian QEMU Team <[email protected]>
Changed-By: Vagrant Cascadian <[email protected]>
Description: 
 qemu       - fast processor emulator
 qemu-keymaps - QEMU keyboard maps
 qemu-system - QEMU full system emulation binaries
 qemu-user  - QEMU user mode emulation binaries
 qemu-user-static - QEMU user mode emulation binaries (static version)
 qemu-utils - QEMU utilities
Closes: 660296 671723
Changes: 
 qemu (1.1.0~rc3+dfsg-1) experimental; urgency=low
 .
   * New upstream release candidate.
   * debian/patches:
     - Update 02_kfreebsd.
     - Remove dont-block-sigchld, applied upstream.
     - Update configure-nss-usbredir.
     - Update fix-armhf-prctl.
   * debian/rules: Remove --disable-darwin-user from configure, as it is no
     longer present.
   * Apply patch to qemu-make-debian-root to improve argument handling.
     (Closes: #671723). Thanks to Askar Safin.
   * qemu-utils: Add recommends on sharutils, used by qemu-make-debian-root
     (Closes: #660296).
   * Add Build-Depends on libusbredirparser-dev to support usbredir protocol.
   * Add Build-Depends on libbsd-dev for kfreebsd.
Checksums-Sha1: 
 57cad79741ec4be4052536753fb5151f9c947a11 3027 qemu_1.1.0~rc3+dfsg-1.dsc
 aaf1e0df9ef13c9a90d9a5aef20483199ad9d02f 5471969 
qemu_1.1.0~rc3+dfsg.orig.tar.gz
 978052a5a2239257aecf44dac0c6ed4aaa762078 41450 
qemu_1.1.0~rc3+dfsg-1.debian.tar.gz
 aea65efa0a855c1db1a34f656244b5bc2f2743af 47286 
qemu-keymaps_1.1.0~rc3+dfsg-1_all.deb
 b91588664366d8ec81a6d099caa68979824b7415 111638 qemu_1.1.0~rc3+dfsg-1_i386.deb
 63f7a70455c33465043081135bd16679492b7cbe 27804328 
qemu-system_1.1.0~rc3+dfsg-1_i386.deb
 5af6b317622a337758d31a9b59549227b15d310d 7622154 
qemu-user_1.1.0~rc3+dfsg-1_i386.deb
 d32142527291a4be766ff01efffa0b4b676040f9 14661866 
qemu-user-static_1.1.0~rc3+dfsg-1_i386.deb
 0ec2629452555fce36ddfdfd43cf2a58cf022e11 721812 
qemu-utils_1.1.0~rc3+dfsg-1_i386.deb
Checksums-Sha256: 
 53fd34ae093e0bf0f54ccd3aeb36a7ba658086e8088b4acd91e154d505f150e2 3027 
qemu_1.1.0~rc3+dfsg-1.dsc
 60924d2689ffba75681b25b934d07a8c2f2442c0046d554a1529bc77ac94a1fb 5471969 
qemu_1.1.0~rc3+dfsg.orig.tar.gz
 4f1ceb98ad1035d1eb603f26b322ef9d4673255d9cd42d5777682a1ab094502b 41450 
qemu_1.1.0~rc3+dfsg-1.debian.tar.gz
 ff75cda8b55cc7d60e6550a460824bbdf19aa6d6631322c2a1fdbda5ad306ce9 47286 
qemu-keymaps_1.1.0~rc3+dfsg-1_all.deb
 eab7cc554054c047675f3b7d1631b506a4a1f68746a85bec03d8161d3e368396 111638 
qemu_1.1.0~rc3+dfsg-1_i386.deb
 59486613c9b81ba559abcdacbbca18a5950158907b8fdee1005a33dbc0f0d8d1 27804328 
qemu-system_1.1.0~rc3+dfsg-1_i386.deb
 e01fbc3d292f768e7881eb0ad85ed44ec0a86445899c79ac9db59c38de38057a 7622154 
qemu-user_1.1.0~rc3+dfsg-1_i386.deb
 2b50bc4698e9513b105d202c4b540d0edc6a34a616f4c4f26059f33dbfed2a62 14661866 
qemu-user-static_1.1.0~rc3+dfsg-1_i386.deb
 3ff1a10455b547b0456f5af5b46209a19ecc1a65754428df6e6fa48ac412a3fc 721812 
qemu-utils_1.1.0~rc3+dfsg-1_i386.deb
Files: 
 0cb95b7b47bc473b6480e30384192a4f 3027 misc optional qemu_1.1.0~rc3+dfsg-1.dsc
 2a3390031230807b6b10ebc94104dad3 5471969 misc optional 
qemu_1.1.0~rc3+dfsg.orig.tar.gz
 2acc110b01a8182e5d3aeb2b81f8ed00 41450 misc optional 
qemu_1.1.0~rc3+dfsg-1.debian.tar.gz
 d1f5b264ceebe3e2f118e762b75be34a 47286 misc optional 
qemu-keymaps_1.1.0~rc3+dfsg-1_all.deb
 21ac89a1c6cd708673f19a8412c61948 111638 misc optional 
qemu_1.1.0~rc3+dfsg-1_i386.deb
 da8d38364bd141a1d0efc90091194861 27804328 misc optional 
qemu-system_1.1.0~rc3+dfsg-1_i386.deb
 cff4bc0cb889bbcb3610549e8f7785eb 7622154 misc optional 
qemu-user_1.1.0~rc3+dfsg-1_i386.deb
 6acaad4ceef19f4d9442c6a235cba529 14661866 misc optional 
qemu-user-static_1.1.0~rc3+dfsg-1_i386.deb
 71766f48fbcd8cfb6b2b1d1300ec0342 721812 misc optional 
qemu-utils_1.1.0~rc3+dfsg-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJPxxHAAAoJELeLgtSBS5G2tgMP+wU1fpASm7VjcrCKRZv45UOU
R6hemdBdAxGJxuTBMtc/WGM4dIvT3XOOjS46FqL7bUS/4LzEx8NT85Z9awdxEqBA
nu0aMNOyC9Aez6o6lUvqUITwu44nQu6AITnt3iJ2QToR5cejHNEqxy41k1Na6vA8
CM2vH5gonprTQ7zCdwgEvEfluE/eptr81bu6J9M6mvig0543vhkjL0eBcZp5Wdn+
Fx8gGh7OVTxtnPQhP3Mt7g141Lo8PJOmYkGFiwsnrFsUQpr0S6OeYZfj24AIIl1M
3sKSaSc1tOf6Q3TREPQ6lvnqaPdTIRkjzkaxiUCfk9PsPNP6hwGiT5is5WYwN1ck
Nw7KVV53PeJ4BmD3JwyAbTb+YdxlahG3D2fTGNwQ5zkUGj1wN9LOjiFtoapW2OLD
E6vHZozCwvSaUxPdSX1NfTuoK5UQ3PBC/GdOakjAtHETqz/O+MnE607//23PlRj8
Yi86E3qKMl0KKxU+XnesXNZu8xMFSYflsmKaux/vINBjl/rmC9l96r8jG3thbDKH
EkDqmYsJI4ebnf6seD2lULZUzYz0aNrbtM7jExtmM23tt2jIEI2oDq32EEn4J98v
VgCgBCxn+bg2e7nNfP3yKhhABJF0w5oWj8R8qOjZ06BnZ2XGguEy8veSGaiUDGTa
WZ1irWto0k+huwU+tz2C
=T4Ln
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to