Your message dated Wed, 22 Nov 2006 08:01:21 +0100 with message-id <[EMAIL PROTECTED]> and subject line Bug fixed in pyracerz 0.2-4 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database)
--- Begin Message ---Package: pyracerz Version: 0.2-3 Severity: normal Tags: patch | $ pyracerz | Traceback (most recent call last): | File "/usr/bin/pyracerz", line 276, in ? | if __name__ == '__main__': main() | File "/usr/bin/pyracerz", line 110, in main | pygame.mixer.music.load(os.path.join("/usr/share/games/pyracerz/sounds", "start.ogg")) | pygame.error: mixer system not initialized After `modprobe snd-pcm-oss` (emulate OSS in ALSA) all worked fine Attached patch will disable sound when mixer is not initialized correctly (i.e. when OSS support in kernel is disabled) -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/dash Kernel: Linux 2.6.18-rc7 Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2) Versions of packages pyracerz depends on: ii libsdl-ttf2.0-0 2.0.8-3 ttf library for Simple DirectMedia ii python 2.4.3-11 An interactive high-level object-o ii python-central 0.5.6 register and build utility for Pyt ii python-numeric 24.2-6 Numerical (matrix-oriented) Mathem ii python-pygame 1.7.1release-4 SDL bindings for games development Versions of packages pyracerz recommends: ii python-psyco 1.5-3 python specializing compiler -- no debconf informationonly in patch2: unchanged: --- pyracerz-0.2.orig/pyRacerz.py +++ pyracerz-0.2/pyRacerz.py @@ -107,8 +107,12 @@ pygame.display.set_icon(pygame.image.load(os.path.join("sprites", "pyRacerzIcon.bmp"))) if misc.music == 1: - pygame.mixer.music.load(os.path.join("sounds", "start.ogg")) - pygame.mixer.music.play() + try: + pygame.mixer.music.load(os.path.join("sounds", "start.ogg")) + pygame.mixer.music.play() + except: + print "pyRacerz cannot initialize sound... disabling" + misc.music = 0 try: import psyco
--- End Message ---
--- Begin Message ---Source: pyracerz Source-Version: 0.2-4 Bug not close because typo in the changelog file: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Mon, 16 Oct 2006 08:17:07 +0000 Source: pyracerz Binary: pyracerz Architecture: source all Version: 0.2-4 Distribution: unstable Urgency: low Maintainer: Carlos Galisteo <[EMAIL PROTECTED]> Changed-By: Carlos Galisteo <[EMAIL PROTECTED]> Description: pyracerz - multiplayer top view 2D racing game Closes: 384659 Changes: pyracerz (0.2-4) unstable; urgency=low . * New maintainer. (Closes: #384659) * Copyright years added. * Migrated to python-support. * Patches are now managed with quilt. * Added patch for disable sound when mixer is not initialized correctly. Thanks to Piotr Ozarowski <[EMAIL PROTECTED]>. (Closes #391536) * Long description and upstream URL included in man page. Files: ce1f4cd5d2ee8206ce489d4a4f01ac9c 706 games optional pyracerz_0.2-4.dsc 69efd9cba266f37829e9f7e22c39da0c 10522 games optional pyracerz_0.2-4.diff.gz 484ddb63a0543096fafc08fc8811fe9c 4699620 games optional pyracerz_0.2-4_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) Comment: Signed by Ana Guerrero iD8DBQFFYP6un3j4POjENGERAnMnAJ9QsDkhvv95skeKC0fMXInAWfl9AQCfUkfU 2xSGEWvt4u7d06DlGZ94imc= =muCi -----END PGP SIGNATURE-----
--- End Message ---

