Your message dated Tue, 04 Apr 2006 15:32:07 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#360801: fixed in jack 3.1.1+cvs20050801-7 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: jack Version: 3.1.1+cvs20050801-6 Severity: minor Tags: patch jack produces a traceback when the locale is not known or hasn't been generated. You can reproduce this with a simple: export LC_ALL=foo 12:[EMAIL PROTECTED]: ~/tmp/jack] jack Traceback (most recent call last): File "/usr/bin/jack", line 37, in ? from jack_globals import * File "/usr/lib/python2.3/site-packages/jack_globals.py", line 21, in ? from jack_config import cf File "/usr/lib/python2.3/site-packages/jack_config.py", line 33, in ? cf = jack_misc.dict2({ File "/usr/lib/python2.3/locale.py", line 417, in getpreferredencoding setlocale(LC_CTYPE, "") File "/usr/lib/python2.3/locale.py", line 381, in setlocale return _setlocale(category, locale) locale.Error: unsupported locale setting zsh: exit 1 jack 13:[EMAIL PROTECTED]: ~/tmp/jack] locale locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Cannot set LC_MESSAGES to default locale: No such file or directory locale: Cannot set LC_ALL to default locale: No such file or directory LANG=en_US.UTF-8 LANGUAGE=en_US:en_GB:en LC_CTYPE="en_US.UTF-8" LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" LC_COLLATE=C LC_MONETARY="en_US.UTF-8" LC_MESSAGES="en_US.UTF-8" LC_PAPER="en_US.UTF-8" LC_NAME="en_US.UTF-8" LC_ADDRESS="en_US.UTF-8" LC_TELEPHONE="en_US.UTF-8" LC_MEASUREMENT="en_US.UTF-8" LC_IDENTIFICATION="en_US.UTF-8" LC_ALL= 14:[EMAIL PROTECTED]: ~/tmp/jack] cat /etc/locale.gen #en ISO-8859-1 [EMAIL PROTECTED] ISO-8859-15 --- /usr/lib/python2.3/site-packages/jack_config.py~ 2006-04-04 19:43:03.000000000 +0200 +++ /usr/lib/python2.3/site-packages/jack_config.py 2006-04-04 19:45:11.000000000 +0200 @@ -22,12 +22,20 @@ import string import jack_misc import locale +import sys import jack_version from jack_globals import * # this must be filled manually (done in main) +# we need a working locale +try: + locale.getpreferredencoding() +except locale.Error, e: + print "Locale problem:", e + sys.exit(1) + # config space with attributes cf = jack_misc.dict2({ -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-1-686 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Cannot set LC_MESSAGES to default locale: No such file or directory locale: Cannot set LC_ALL to default locale: No such file or directory ANSI_X3.4-1968) (ignored: LC_ALL set to foo) Versions of packages jack depends on: ii cdparanoia 3a9.8-13 An audio extraction tool for sampl ii python 2.3.5-5 An interactive high-level object-o ii python-cddb 1.4-5 Python interface to CD-IDs and Fre ii python-eyed3 0.6.10-1 Python module for id3-tags manipul ii python-pyvorbis 1.3-1 A Python interface to the Ogg Vorb ii vorbis-tools 1.1.1-5 several Ogg Vorbis tools jack recommends no packages. -- debconf information: perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = "en_GB:en_US:en_GB:en", LC_ALL = "foo", LC_COLLATE = "C", LANG = "en_US.UTF-8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Cannot set LC_MESSAGES to default locale: No such file or directory locale: Cannot set LC_ALL to default locale: No such file or directory -- Martin Michlmayr http://www.cyrius.com/
--- End Message ---
--- Begin Message ---Source: jack Source-Version: 3.1.1+cvs20050801-7 We believe that the bug you reported is fixed in the latest version of jack, which is due to be installed in the Debian FTP archive: jack_3.1.1+cvs20050801-7.diff.gz to pool/main/j/jack/jack_3.1.1+cvs20050801-7.diff.gz jack_3.1.1+cvs20050801-7.dsc to pool/main/j/jack/jack_3.1.1+cvs20050801-7.dsc jack_3.1.1+cvs20050801-7_i386.deb to pool/main/j/jack/jack_3.1.1+cvs20050801-7_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. Martin Michlmayr <[EMAIL PROTECTED]> (supplier of updated jack 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.7 Date: Wed, 05 Apr 2006 00:24:14 +0200 Source: jack Binary: jack Architecture: source i386 Version: 3.1.1+cvs20050801-7 Distribution: unstable Urgency: low Maintainer: Michael Banck <[EMAIL PROTECTED]> Changed-By: Martin Michlmayr <[EMAIL PROTECTED]> Description: jack - Rip and encode CDs with one command Closes: 356771 360497 360801 Changes: jack (3.1.1+cvs20050801-7) unstable; urgency=low . [ Martin Michlmayr ] * debian/patches/32_man_minus.patch: Escape minus signs in the man page properly. Thanks for the report, Francesco Poli. * debian/patches/45_fix_normalize_example.patch: Likewise. * debian/patches/83_man_plugin.patch: Likewise. * debian/patches/47_locale_check.patch: Check whether the locale is known, otherwise jack will produce a traceback; closes: #360801. * debian/patches/48_search_base_dir.patch: Search base_dir for existing directories; closes: #360497. * debian/patches/33_flac_mutagen.patch: Use mutagen instead of pyflac since the latter is obsolete and has been removed from the archive. Thanks, Joe Wreschnig; closes: #356771. * debian/patches/44_guess_toc_ogg_flac.patch: Update to use mutagen. * debian/patches/77_upd_progress_flac.patch: Likewise. * debian/control (Depends): replace python-flac with python-mutagen. * debian/patches/49_nicer_ripper_encoder.patch: Print a nicer message when an unknown ripper or encoder is specified. * debian/patches/50_check_ripper_encoder.patch: Check whether a command passed via --ripper/--encoder actually exists. Files: b418a73e8f606b2670d056d474105299 686 sound optional jack_3.1.1+cvs20050801-7.dsc 3ffb6459963129dd91aaf026e42a9667 52809 sound optional jack_3.1.1+cvs20050801-7.diff.gz 899fc9c1339321bc5a625862c5268c31 127700 sound optional jack_3.1.1+cvs20050801-7_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (GNU/Linux) iD8DBQFEMvJHKb5dImj9VJ8RAu2pAJ9i1RnYnp+yWNS+yzNP907ZH2hY+gCePoxc pvPwp/AsTj+uBWQIs7KbMV0= =/HIc -----END PGP SIGNATURE-----
--- End Message ---

