Your message dated Fri, 08 Jan 2010 19:03:14 +0000
with message-id <[email protected]>
and subject line Bug#413840: fixed in qemu 0.11.1-2
has caused the Debian Bug report #413840,
regarding make /usr/bin/qemu the native arch
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.)
--
413840: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=413840
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: qemu
Version: 0.8.2-4etch1
Severity: wishlist
Tags: patch
Shouldn't /usr/bin/qemu be an alias for qemu-system-$(ARCH), where $(ARCH) is
the native architecture? Defaulting to i386 doesn't make much sense nowadays,
specially since x86_64 is gradually obsoleting it.
See attached patch (already sent upstream).
-- System Information:
Debian Release: 4.0
APT prefers stable
APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Versions of packages qemu depends on:
ii bochsbios 2.3-2 BIOS for the Bochs emulator
ii libasound2 1.0.13-2 ALSA library
ii libc6 2.3.6.ds1-13 GNU C Library: Shared libraries
ii libncurses5 5.5-5 Shared libraries for terminal hand
ii libsdl1.2debian 1.2.11-8 Simple DirectMedia Layer
ii openhackware 0.4.1-2 OpenFirmware emulator for PowerPC
ii proll 18-2 JavaStation PROM 2.x compatible re
ii vgabios 0.6a-1 VGA BIOS software for the Bochs an
ii zlib1g 1:1.2.3-13 compression library - runtime
Versions of packages qemu recommends:
ii debootstrap 0.3.3.2 Bootstrap a basic Debian system
ii sharutils 1:4.2.1-15 shar, unshar, uuencode, uudecode
pn vde <none> (no description available)
-- no debconf information
--- qemu-0.8.2.old/Makefile.target 2006-07-22 19:23:34.000000000 +0200
+++ qemu-0.8.2/Makefile.target 2007-07-08 14:05:33.000000000 +0200
@@ -43,11 +43,7 @@
QEMU_USER=qemu-$(TARGET_ARCH2)
# system emulator name
ifdef CONFIG_SOFTMMU
-ifeq ($(TARGET_ARCH), i386)
-QEMU_SYSTEM=qemu$(EXESUF)
-else
QEMU_SYSTEM=qemu-system-$(TARGET_ARCH2)$(EXESUF)
-endif
else
QEMU_SYSTEM=qemu-fast
endif
@@ -531,6 +527,13 @@
install: all
ifneq ($(PROGS),)
$(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
+ifeq ($(ARCH), $(TARGET_ARCH2))
+ifdef _WIN32
+ mv "$(DESTDIR)$(bindir)/qemu-system-$(TARGET_ARCH2)$(EXESUF)"
"$(DESTDIR)$(bindir)/qemu$(EXESUF)"
+else
+ ln -s qemu-system-$(TARGET_ARCH2)$(EXESUF)
"$(DESTDIR)$(bindir)/qemu$(EXESUF)"
+endif
+endif
endif
ifneq ($(wildcard .depend),)
--- End Message ---
--- Begin Message ---
Source: qemu
Source-Version: 0.11.1-2
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:
libqemu-dev_0.11.1-2_i386.deb
to main/q/qemu/libqemu-dev_0.11.1-2_i386.deb
qemu-system_0.11.1-2_i386.deb
to main/q/qemu/qemu-system_0.11.1-2_i386.deb
qemu-user-static_0.11.1-2_i386.deb
to main/q/qemu/qemu-user-static_0.11.1-2_i386.deb
qemu-user_0.11.1-2_i386.deb
to main/q/qemu/qemu-user_0.11.1-2_i386.deb
qemu-utils_0.11.1-2_i386.deb
to main/q/qemu/qemu-utils_0.11.1-2_i386.deb
qemu_0.11.1-2.diff.gz
to main/q/qemu/qemu_0.11.1-2.diff.gz
qemu_0.11.1-2.dsc
to main/q/qemu/qemu_0.11.1-2.dsc
qemu_0.11.1-2_i386.deb
to main/q/qemu/qemu_0.11.1-2_i386.deb
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: SHA1
Format: 1.8
Date: Fri, 08 Jan 2010 09:26:11 -0800
Source: qemu
Binary: qemu qemu-system qemu-user qemu-user-static qemu-utils libqemu-dev
Architecture: source i386
Version: 0.11.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian QEMU Team <[email protected]>
Changed-By: Vagrant Cascadian <[email protected]>
Description:
libqemu-dev - static libraries and headers for QEMU
qemu - fast processor emulator
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: 413840
Changes:
qemu (0.11.1-2) unstable; urgency=low
.
* Add versioned build-depends on etherboot.
* Add PXE boot support for virtio network adapters.
* Move qemu-make-debian-root to qemu-utils package, as it only produces disk
images not useable by qemu-user. Lower recommends on debootstrap to
suggests. Add Conflicts and Replaces on older versions of qemu-user.
* Register /usr/bin/qemu with the alternatives system. Closes: #413840.
* qemu: Add ${misc:Depends} so that debhelper can add dependencies if needed.
Checksums-Sha1:
126b1408325ce1fb36488c46de2b211fc75ef335 1918 qemu_0.11.1-2.dsc
3edcde17647b3637d4aaa267f273099d1fee9582 29131 qemu_0.11.1-2.diff.gz
15c2fc5a43f45e8b059d81d05660d3d4e096f730 96902 qemu_0.11.1-2_i386.deb
1cb34847a2fe045e220215978e00779fa26f06a7 11492070 qemu-system_0.11.1-2_i386.deb
7c9107ec5eda1e0d3b516623e97c970fab2f9cfe 5173390 qemu-user_0.11.1-2_i386.deb
25755ac828e620dc1ef24489438de228c9ef060f 8725464
qemu-user-static_0.11.1-2_i386.deb
2772591af576c5bce31a8596cfe66d49ee106061 306962 qemu-utils_0.11.1-2_i386.deb
1928f26cd5074b4645af4f3757a7d84a4d03e174 4936866 libqemu-dev_0.11.1-2_i386.deb
Checksums-Sha256:
07623d34141300da37602682ea63b7b5da2c5c6ad0bf5d07d5eb01368d188164 1918
qemu_0.11.1-2.dsc
45f33c7fbda8b684c8fc3f535c615ddd78a709e4d4f142c6d0f21a4f0a994da5 29131
qemu_0.11.1-2.diff.gz
30be92d46634b956a8622595203fb2369eeab9a6589469bcc4ec3c9b0b88781f 96902
qemu_0.11.1-2_i386.deb
1b37385da9c55d90d2734a4c0f458d689907a8869cd5f5880e9e67924fb0e9fa 11492070
qemu-system_0.11.1-2_i386.deb
42e5627c9468e51368b1bba97da065aa751d6b89dc1d235107c35b571bc35731 5173390
qemu-user_0.11.1-2_i386.deb
08badf31d9b51374784683173991368c16ec8aaf36a4370830177f8191c38168 8725464
qemu-user-static_0.11.1-2_i386.deb
3738568edb77f77c2cfe6569ad3e0884d6d58716527b0c107af62c80fced037c 306962
qemu-utils_0.11.1-2_i386.deb
edc4d47930661c46bec88508312b262116afbe6b0912cfa6f78088df29fa6db0 4936866
libqemu-dev_0.11.1-2_i386.deb
Files:
8baacbd5220e2372998c1e85d13c1bce 1918 misc optional qemu_0.11.1-2.dsc
4263bb4ab731b0d61d170849f7bab92e 29131 misc optional qemu_0.11.1-2.diff.gz
14d9c7b2b5b5f571cc9237f2dd96c6ae 96902 misc optional qemu_0.11.1-2_i386.deb
50b99c7233d39e828f2fa97e9ea19d63 11492070 misc optional
qemu-system_0.11.1-2_i386.deb
4053a6dce9608a8644fd63fbe6259b5c 5173390 misc optional
qemu-user_0.11.1-2_i386.deb
3123dda64ed70cd79665f072204106bf 8725464 misc optional
qemu-user-static_0.11.1-2_i386.deb
9313a96dc1a126157a6dd23d154e6d90 306962 misc optional
qemu-utils_0.11.1-2_i386.deb
77dae0d8f7b37384a925d54a5b786732 4936866 libdevel optional
libqemu-dev_0.11.1-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iEYEARECAAYFAktHfY8ACgkQlPc63BPWGpkB2gCeI7kB6NTZ/LBWam/+jotbYQvY
4ugAnjSQCIYb08u6zQ6RarhbnQ6S1vKW
=7zA5
-----END PGP SIGNATURE-----
--- End Message ---