Bug#312731: jack: default choice of replacement char breaks flac encoding

2005-06-19 Thread Martin Michlmayr
+try: +percent = float(s[y0 + 1:y1]) +except ValueError: +percent = 0 else: percent = 0 """, -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#312731: jack: default choice of replacement char breaks flac encoding

2005-06-19 Thread Martin Michlmayr
* Martin Michlmayr <[EMAIL PROTECTED]> [2005-06-19 23:14]: > because it is always possible that the filename contains ": ". > > > diff -urN jack-3.1.1~/jack_helpers.py jack-3.1.1/jack_helpers.py > --- jack-3.1.1~/jack_helpers.py 2005-06-19 23:07:23.9

Bug#295207: AttributeError: 'module' object has no attribute 'progress_changed'

2005-06-20 Thread Martin Michlmayr
tags 295207 + patch pending thanks * Martin Michlmayr <[EMAIL PROTECTED]> [2005-02-14 12:38]: > When you run jack with -R but there is nothing to do, it fails with > AttributeError: 'module' object has no attribute 'progress_changed' Here's a patch: diff -u

Bug#266052: jack: doesn't support UTF8 freedb entries

2005-06-20 Thread Martin Michlmayr
if cf['_keep_wavs']: os.rename(wavname, newname + ".wav") jack_m3u.add_wav(newname + ".wav") -jack_functions.progress(i[NUM], "ren", "%s-->%s" % (i[NAME], newname)) +jack_functions.progress(i[NUM], "ren", "%s-->%s" % (i[NAME], u_newname)) elif cf['_silent_mode']: jack_functions.progress(i[NUM], "err", "while renaming track") print if not cf['_silent_mode']: if jack_freedb.names_available: -print "Done with \"" + a_artist+ " - " + a_title + "\"." +print "Done with \"" + p_artist + " - " + p_title + "\"." else: print "All done.", if cf['_set_id3tag'] and cf['_id3_year'] != -1: diff -urN jack-3.1.1~/jack_utils.py jack-3.1.1/jack_utils.py --- jack-3.1.1~/jack_utils.py 2005-06-20 17:04:24.197237912 +0100 +++ jack-3.1.1/jack_utils.py2005-06-20 17:19:03.289595560 +0100 @@ -165,7 +165,9 @@ dirs2 = [] for i in dirs: -replace_list = (("%a", names[0][0]), ("%l", names[0][1]), ("%y", `cf['_id3_year']`), ("%g", cf['_id3_genre_txt'])) +replace_list = (("%a", names[0][0].encode(cf['_charset'], "replace")), +("%l", names[0][1].encode(cf['_charset'], "replace")), +("%y", `cf['_id3_year']`), ("%g", cf['_id3_genre_txt'])) x = jack_misc.multi_replace(i, replace_list, unusable_charmap) exec("x = x" + cf['_char_filter']) dirs2.append(x) diff -urN jack-3.1.1~/jack_workers.py jack-3.1.1/jack_workers.py --- jack-3.1.1~/jack_workers.py 2005-06-20 17:04:24.197237912 +0100 +++ jack-3.1.1/jack_workers.py 2005-06-20 17:04:27.899675056 +0100 @@ -55,7 +55,7 @@ default_signals() if nice_value: os.nice(nice_value) -os.execvp(args[0], args) +os.execvp(args[0], [a.encode(cf['_charset'], "replace") for a in args]) else: data['pid'] = pid if os.uname()[0] == "Linux": @@ -76,7 +76,7 @@ args = [] for i in cmd: if i == "%n": args.append(`track[NUM]`) -elif i == "%o": args.append(track[NAME] + ".wav") +elif i == "%o": args.append(track[NAME].decode(cf['_charset'], "replace") + ".wav") elif i == "%d": args.append(cf['_cd_device']) elif i == "%D": args.append(cf['_gen_device']) else: args.append(i) @@ -105,9 +105,9 @@ quality = cf['_vbr_quality'] args.append("%.3f" % quality) elif i == "%i": -args.append(track[NAME] + ".wav") +args.append(track[NAME].decode(cf['_charset'], "replace") + ".wav") elif i == "%o": -args.append(track[NAME] + jack_targets.targets[jack_helpers.helpers[cf['_encoder']]['target']]['file_extension']) +args.append(track[NAME].decode(cf['_charset'], "replace") + jack_targets.targets[jack_helpers.helpers[cf['_encoder']]['target']]['file_extension']) else: if jack_targets.targets[helper['target']]['can_pretag']: if i == "%t": @@ -202,7 +202,7 @@ quality = cf['_vbr_quality'] args.append("%.3f" % quality) elif i == "%o": -args.append(track[NAME] + jack_targets.targets[jack_helpers.helpers[cf['_encoder']]['target']]['file_extension']) +args.append(track[NAME].decode(cf['_charset'], "replace") + jack_targets.targets[jack_helpers.helpers[cf['_encoder']]['target']]['file_extension']) elif i == "%d": args.append(cf['_cd_device']) elif i == "%D": @@ -315,7 +315,7 @@ # ## set up output wav file: # -wav = wave.open(track[NAME] + ".wav", 'w') +wav = wave.open(track[NAME].decode(cf['_charset'], "replace") + ".wav", 'w') wav.setnchannels(2) wav.setsampwidth(2) wav.setframerate(44100) -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#242965: Unable to rip a certain track

2005-06-20 Thread Martin Michlmayr
* Martin Michlmayr <[EMAIL PROTECTED]> [2005-05-24 00:13]: > * Philipp Weis <[EMAIL PROTECTED]> [2005-05-23 18:56]: > > I don't have access to my CDs for the next two weeks. I'll let you > > know if was able to find the CD and reproduce the bug in a few weeks.

Bug#272619: jack: dies with most rips

2005-06-20 Thread Martin Michlmayr
merge 272619 310478 thanks * Martin Michlmayr <[EMAIL PROTECTED]> [2005-06-13 08:10]: > > Sorry, I switched to grip for a while. Give me a few days to see if I can > > replicate this with jack--I can tell you that when this was happening > > cdparanoia ran fine apart fr

Bug#315223: O: mird1 -- optional

2005-06-21 Thread Martin Michlmayr
reassign this bug to ftp.d.o in a few days unless anyone steps up to maintain it in the meantime. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#203896: Processed: I'll take yydecode

2005-06-21 Thread Martin Michlmayr
* Anthony DeRobertis <[EMAIL PROTECTED]> [2005-06-21 08:36]: > sharutils contains the only "uudecode" in Debian, so I'm not sure what > the commentor in the bug was talking about. OK, interesting. > I guess I should go ahead and start preparing an updated package f

Bug#315004: raidtools2: Ignoring /etc/raidtab breaks upgrade to mdadm

2005-06-21 Thread Martin Michlmayr
it will work for most people. In any case, I'm not sure how many people will not have upgraded before r1 given that kernel security fixes are schedulded to come out before. If you have any idea about a good solution that is acceptable for r1, I'd certainly like to hear it. But pe

Bug#315406: Accepted mgp 1.11b-5 (i386 source)

2005-06-22 Thread Martin Michlmayr
ering problem > need cast for TT_Char_Index() for ttf version >= 1.4, not == 1.4 > closes: Bug#315412 Hmm, are you sure it works again? I just tried and the fonts still look pretty bad. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] w

Bug#315406: Accepted mgp 1.11b-5 (i386 source)

2005-06-22 Thread Martin Michlmayr
* Fumitoshi UKAI <[EMAIL PROTECTED]> [2005-06-23 01:55]: > I hope so. Try "-x m17n" or "-x m17n -x xft". m17n rendering engine > is high priority but it may not show so good rendering result, so > you may need to disable it by -x option. Hmm, doesn'

Bug#314158: translate still b0rken

2005-06-24 Thread Martin Michlmayr
* Christian Kujau <[EMAIL PROTECTED]> [2005-06-23 02:46]: > % echo $LANG - $LANGUAGE I can reproduce this problem. I'm at a conference right now, but I'll send a patch next week. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED

Bug#242965: Unable to rip a certain track

2005-06-25 Thread Martin Michlmayr
ill occurs, or leave it open for another four or fife weeks till I > get back home to check this. I'll just leave it open. Thanks for the note. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#314817: pysco(GNU/kFreeBSD): FTBFS: kfreebsd-i386 not in the architecture list

2005-06-28 Thread Martin Michlmayr
* Aurelien Jarno <[EMAIL PROTECTED]> [2005-06-18 19:53]: > Package: pysco It appears as if there was no such package in Debian. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#315406: Accepted mgp 1.11b-5 (i386 source)

2005-06-29 Thread Martin Michlmayr
s? > Not for me, but maybe something else in my font setup is broken. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#315412: Accepted mgp 1.11b-5 (i386 source)

2005-06-30 Thread Martin Michlmayr
* Fumitoshi UKAI <[EMAIL PROTECTED]> [2005-06-30 03:12]: > How about "mgp -V -x m17n -x xft" ? It would be verbose so that > some information would be reported on stderr. You can see > which font files are used. The log and .mgp files are attached. -- Martin Michlm

Bug#315406: Accepted mgp 1.11b-5 (i386 source)

2005-07-01 Thread Martin Michlmayr
it was just a font problem but didn't have time to look at it. I guess I copied this japanese font from some example file... -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#242884: hmm

2005-07-01 Thread Martin Michlmayr
* Joey Hess <[EMAIL PROTECTED]> [2005-07-01 13:31]: > If Filippo's patch is inetgrated into the redirector then things might > work, using a watch file like this one: OK, I've applied it in CVS now. The web site should get rebuilt in a few hours. -- Martin Michlmayr

Bug#242884: hmm

2005-07-02 Thread Martin Michlmayr
* Filippo Giunchedi <[EMAIL PROTECTED]> [2005-07-02 12:39]: > http://people.debian.org/~filippo/sf.phps ) OK -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#314953: openoffice.org-spellcheck-de-* ought to depend on myspell-de-*-oldspell

2005-07-19 Thread Martin Michlmayr
rules. The same goes for the AT and CH packages. I cannot find this package in Debian. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#279000: Python curses bindings and UTF-8

2005-07-19 Thread Martin Michlmayr
Has anyone had a chance to look into UTF-8 aware Python bindings for ncurses? -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#319537: drdb0.7-module-source: Should depend on dpatch

2005-07-22 Thread Martin Michlmayr
reassign drbd0.7-module-source serverity 319537 important merge 308295 319537 thanks * x <[EMAIL PROTECTED]> [2005-07-22 16:34]: > Oops, the package is drbd0.7-module-source, and this bug has already > been reported there. Sorry about the mess. OK, no problem. -- Martin Mi

Bug#319537: drdb0.7-module-source: Should depend on dpatch

2005-07-22 Thread Martin Michlmayr
* Ian Turner <[EMAIL PROTECTED]> [2005-07-22 15:16]: > Package: drdb0.7-module-source > Version: 0.7.10-3 This package doesn't seem to be in Debian. Do you know where you obtained it from? What does dpkg -p drdb0.7-module-source | grep Maintainer say? -- Mart

Bug#319870: continous space increase in mail statusbar applet

2005-07-25 Thread Martin Michlmayr
ii libsm6 4.3.0.dfsg.1-14 X Window System Session Management ii libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li ii libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte ii xlibs4.3.0.dfsg.1-14 X Keyboa

Bug#319872: please mention ion3-scripts in README.Debian (was: update alt_resize.lua...)

2005-07-25 Thread Martin Michlmayr
3.0.dfsg.1-14 X Keyboard Extension (XKB) configu -- no debconf information -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#319894: jack gets tracksize calculation wrong (related to data tracks)

2005-07-25 Thread Martin Michlmayr
ct-o ii python-cddb 1.4-3 Python interface to CD-IDs and Fre ii python-eyed3 0.6.6-1Python module for id3-tags manipul ii python-pyvorbis 1.3-1 A Python interface to the Ogg Vorb ii vorbis-tools 1.0.1-1.4 Several Ogg Vorbis

Bug#319901: jack gets FreeDB ID calculation wrong

2005-07-25 Thread Martin Michlmayr
action tool for sampl ii flac 1.1.1-5Free Lossless Audio Codec - comman ii python2.3.5-2An interactive high-level object-o ii python-cddb 1.4-3 Python interface to CD-IDs and Fre ii python-eyed3 0.

Bug#320043: additional .pc files

2005-07-26 Thread Martin Michlmayr
* Matthias Klose <[EMAIL PROTECTED]> [2005-07-26 18:46]: > Package: mozilla-firefox-dev > > usr/lib/pkgconfig/firefox-nspr.pc > usr/lib/pkgconfig/firefox-nss.pc Are you talking about Debian? I can find neither this package nor these files. -- Martin Michlmayr http://www.cy

Bug#319901: jack gets FreeDB ID calculation wrong

2005-07-26 Thread Martin Michlmayr
tags 319901 + patch pending thanks * Martin Michlmayr <[EMAIL PROTECTED]> [2005-07-25 16:16]: > Under some circumstances the ID used for the generation of the > jack- directory does not correspond to the real ID of the CD. In > particular, "jack -Q" generated the follow

Bug#320080: please turn ID3_V1 off by default, correct help msg of write_id3v2

2005-07-26 Thread Martin Michlmayr
1.1.1-5Free Lossless Audio Codec - comman ii python2.3.5-2An interactive high-level object-o ii python-cddb 1.4-3 Python interface to CD-IDs and Fre ii python-eyed3 0.6.5-1Python module for id3-tag

Bug#319937: Mention Flac in manpage

2005-07-26 Thread Martin Michlmayr
hed and @@ -471,6 +471,7 @@ .SH SEE ALSO .BR cdparanoia (1), .BR cdda2wav (1), +.BR flac (1), .BR oggenc (1) and .BR lame (1) -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#272619: jack: dies with most rips

2005-07-26 Thread Martin Michlmayr
* Martin Michlmayr <[EMAIL PROTECTED]> [2005-05-23 15:18]: > Also, I don't think it has anything to do with it being track 9. It's > probably just that your CD is defective (scratched) and cdparanoia Or maybe it is. Is track 9 the last track and is it followed by a da

Bug#242965: related to #319894?

2005-07-26 Thread Martin Michlmayr
this bug might be the same as: #319894: jack gets tracksize calculation wrong (related to data tracks) -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#297978: jack: --exec option is not saved

2005-07-26 Thread Martin Michlmayr
tags 297978 + moreinfo thanks * Martin Michlmayr <[EMAIL PROTECTED]> [2005-06-19 20:20]: > > The --exec option is apparently not saved when running jack with the > > --save option. > > Sorry, I cannot reproduce this. Maybe you just got confused by the > fact that

Bug#266052: jack: utf8 support: still not displayed right, falls over trying to id3 tag

2005-07-26 Thread Martin Michlmayr
d3_year']) -tag.update() +try: +tag.update() +except UnicodeEncodeError: +pass mp3file.close() elif jack_helpers.helpers[cf['_encoder

Bug#242965: Unable to rip a certain track

2005-07-26 Thread Martin Michlmayr
seful, but here it goes: I have another theory about this bug now. Do you know if by any chance this track is followed by a data track? If so, I've probably just committed a fix to SVN. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a

Bug#242965: Unable to rip a certain track

2005-07-26 Thread Martin Michlmayr
* Martin Michlmayr <[EMAIL PROTECTED]> [2005-06-25 10:20]: > * Philipp Weis <[EMAIL PROTECTED]> [2005-06-24 21:03]: > > Sorry, I missed the opportunity to check this while I was home, and it > > will be another four weeks till I have access to that CD again. So you &g

Bug#319894: jack gets tracksize calculation wrong (related to data tracks)

2005-07-26 Thread Martin Michlmayr
merge 319894 319901 found 319901 2.99.6-1 thanks * Martin Michlmayr <[EMAIL PROTECTED]> [2005-07-25 15:41]: > jack sometimes aborts right at the end of the last audio track when a > CD has a data track at the end. Ripping the track by hand with > cdparanoia shows that it works, ev

Bug#319950: Fixes for Flac support

2005-07-26 Thread Martin Michlmayr
-o %o %i", +'otf-cmd': "flac --channels 2 --bps 16 --sample-rate 44100 --force-raw-format --endian=big --sign=signed -o %o -", 'status_blocksize': 160, 'status_start': "%", 'percent_fkt': r""" -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#319950: Fixes for Flac support

2005-07-26 Thread Martin Michlmayr
d %q should just refer to compression rather than quality. However, that's currently not possible because there's no -q option but only -0, -1, -2, ... options which you cannot pass to flac via jack (there'd have to be a space so you have 2 arguments). Maybe I'll fix thi

Bug#292612: jack: Cannot cope with empty title

2005-07-26 Thread Martin Michlmayr
here. Can you please send me the jack-* files from that directory? -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#304744: jack: Erratic error messages for fuzzy freedb match

2005-07-26 Thread Martin Michlmayr
eedb_inexact_match < 1: print "Warning: calculated id (" + cd_id + ") and id from freedb file" print " :", read_ids print " : do not match, hopefully due to inexact match." -- Martin Michlmayr http:/

Bug#304744: jack: Erratic error messages for fuzzy freedb match

2005-07-26 Thread Martin Michlmayr
if not id_matched and warn and freedb_inexact_match < 1: print "Warning: calculated id (" + cd_id + ") and id from freedb file" print " :", read_ids print " : do not match, hopefully due to inexact match." -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#293339: this is up to upstream

2005-07-26 Thread Martin Michlmayr
tags 293339 + upstream thanks upstream has to decide whether this is a good idea or not. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#272619: jack: dies with most rips

2005-07-26 Thread Martin Michlmayr
l just standard audio CDs. I will try it again now with the same CDs > and the most recent version of jack and let you know the result. Thanks. If it still fails, please use the patch from #319901 and see if that helps. If not, I'd also like to see the output of 'cdparanoia -Q&

Bug#320102: inexact match warning not nice

2005-07-26 Thread Martin Michlmayr
5-2An interactive high-level object-o ii python-cddb 1.4-3 Python interface to CD-IDs and Fre ii python-eyed3 0.6.5-1Python module for id3-tags manipul ii python-pyvorbis 1.3-1 A Python interface to the Ogg Vorb ii vorbis-tool

Bug#320075: from the old maintainer

2005-07-26 Thread Martin Michlmayr
FWIW, the old maintainer (Jonathan Hseu) says the following about this package: "falconseye upstream is no longer updated and has quite a few important bugs, so someone should take that up only _if_ they are willing to fix them." -- Martin Michlmayr http://www.cyrius.com/ -- To U

Bug#320102: jack: Erratic error messages for fuzzy freedb match

2005-07-27 Thread Martin Michlmayr
" + cd_id +print " FreeDB ID:" + ",".join(read_ids) for i in read_ids: for j in i: if j not in "0123456789abcdef": -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#242965: Unable to rip a certain track

2005-07-27 Thread Martin Michlmayr
* Philipp Weis <[EMAIL PROTECTED]> [2005-07-26 23:54]: > I'll have access to this CD again in about a week and will get back to > you. Also, I am sure that there are no data tracks on this CD. Great, thanks. Maybe you can take the CD home with you in case we have to do more

Bug#292612: jack: Cannot cope with empty title

2005-07-27 Thread Martin Michlmayr
= jack_freedb.interpret_db_file(jack_ripstuff.all_tracks, todo, cf['_freedb_form_file'], verb = cf['_query_on_start'], dirs = 1) if err: error("query on start failed to give a good freedb file, aborting.") else: - err, jack_tag.track_names

Bug#242965: Unable to rip a certain track

2005-07-27 Thread Martin Michlmayr
* Martin Michlmayr <[EMAIL PROTECTED]> [2005-07-27 12:04]: > Great, thanks. Maybe you can take the CD home with you in case we have to > do more tests. And if you cannot do that, please send the output of cdparanoia -Q -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBS

Bug#320168: please add track (FreeDB) metadata to FLAC files

2005-07-27 Thread Martin Michlmayr
0.6.6-1Python module for id3-tags manipul ii python-pyvorbis 1.3-1 A Python interface to the Ogg Vorb ii vorbis-tools 1.0.1-1.4 Several Ogg Vorbis Tools -- no debconf information -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email

Bug#266052: jack: utf8 support: still not displayed right, falls over trying to id3 tag

2005-07-27 Thread Martin Michlmayr
* Martin Michlmayr <[EMAIL PROTECTED]> [2005-07-26 21:50]: > MP3 has (at least) two different type of tags, version 1 and version > 2. Version 2 supports UTF8 and when you look at your file you should > see that it has been tagged properly. jack can also add version 1 > tag

Bug#319950: Fixes for Flac support

2005-07-27 Thread Martin Michlmayr
would that be overwritten? I think #272622 contains (at least an partial) answer; I still have to look at this bug report in more detail. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#320168: please add track (FreeDB) metadata to FLAC files

2005-07-28 Thread Martin Michlmayr
tags 320168 + patch pending thanks * Martin Michlmayr <[EMAIL PROTECTED]> [2005-07-27 13:26]: > FLAC files are currently not tagged with data from FreeDB. It would > be nice if this would be done. The python-flac package contains > Python bindings to the FLAC library. Here is a

Bug#161225: jack: submit updated CDDB entries

2005-07-28 Thread Martin Michlmayr
tags 161225 + patch pending thanks * Martin Michlmayr <[EMAIL PROTECTED]> [2002-09-17 21:18]: > When I specify the --edit-cddb option and imprive the CDDB entry, jack > should ask me if I want to submit the updated version back to freedb. > It could simply generate the md5sum be

Bug#222784: Way for exec_no_err to get list of encoded oggs

2005-07-28 Thread Martin Michlmayr
py 2005-07-28 18:24:57.642563896 +0100 @@ -225,5 +225,7 @@ else: print +os.environ["JACK_JUST_ENCODED"] = "\n".join(jack_m3u.m3u) +os.environ["JACK_JUST_RIPPED"] = "\n".join(jack_m3u.wavm3u) jack_m3u.write() -- Martin

Bug#172634: Doesn't give proper info about "invalid freedb file" on --submit

2005-07-28 Thread Martin Michlmayr
ncode CDs with one command -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#267101: Please close

2005-03-24 Thread Martin Michlmayr
a bug report on ftp.debian.org. Removal requests are acton up very quickly these days. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#274299: acknowledged by developer (Experimental upload now in unstable)

2005-03-24 Thread Martin Michlmayr
ed because packages from experimental are now listed > on packages.d.o. Yeah, the contents of the message I sent was wrong; I've since then fixed by script. But anyway, I believe the bug should be closed. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EM

Bug#240587: acknowledged by developer (Experimental upload now in unstable)

2005-03-25 Thread Martin Michlmayr
I've fixed my script already. I think the bug should be closed anyway since the package is in the archive but if you disagree please feel free to re-open it. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#301448: should decode mail before text searches

2005-03-25 Thread Martin Michlmayr
igh-performance mail transport -- no debconf information -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#301447: should decode mail before searching

2005-03-25 Thread Martin Michlmayr
ns for Perl ii perl 5.8.4-8Larry Wall's Practical Extraction ii perl-base [libscalar-list-uti 5.8.4-8The Pathologically Eclectic Rubbis -- no debconf information -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject

Bug#301448: should decode mail before text searches

2005-03-25 Thread Martin Michlmayr
. > | Otherwise by default you match against raw bodies. > > Closing the bug, then. Thanks for the hint, and sorry for wasting your time. Setting $thorough_search works perfectly. -- Martin Michlmayr http://www.cyrius.com/

Bug#301412: console-keymaps-ps2: short description should not start with a capital nor end with a full stop

2005-03-25 Thread Martin Michlmayr
ole-keymaps-atari, console-data, console-keymaps-sun, console-keymaps-amiga, console-keymaps-at, console-keymaps-usb, console-keymaps-mac, console-keymaps-acorn, console-keymaps-dec -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "

Bug#210198: htmldoc to be removed from testing; will remove orphaned axkit, axkit-xsp-webutils

2005-03-26 Thread Martin Michlmayr
of which are There are also a number of packages which build-depend on htmldoc, so I don't think removing it is the best option (fyi: fltk1.1, munin, freeswan, openswan, privoxy). Maybe one of the people who need htmldoc (or some QA person) can take a look at #300460. -- Martin Mic

Bug#293336: it says oggenc cannot do fixed bitrate which is not true

2005-03-26 Thread Martin Michlmayr
above, jack still fails because it thinks that oggenc doesn't support fixed bitrates which is wrong. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#299218: Debian on cobalt cube

2005-03-28 Thread Martin Michlmayr
d > > fix the problem. > > Duplicate of #299218 - Fixed in upload 8.126 It seems this patch accidentally got lost, though. It's not in 8.129. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#301772: mplayer-nogui: Can you add mplayer.desktop to this package?

2005-03-28 Thread Martin Michlmayr
e independent on XMMS? Debian doesn't distribute a package for mplayer. I'm CCing Christian Marillat whose package you're probably using. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#302026: /etc/vservers/newvserver.defaults.conf is missing

2005-03-29 Thread Martin Michlmayr
reassign 302026 util-vserver thanks * Mykola A. Nickishov <[EMAIL PROTECTED]> [2005-03-29 21:53]: > Package: vserver > Version: 0.29-3 vserver has been superseded by util-vserver. Can you try to install that? -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, ema

Bug#302356: statusbar checks mail even when screensaver is running

2005-03-31 Thread Martin Michlmayr
exte ii xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu -- no debconf information -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#242884: hmm

2005-07-03 Thread Martin Michlmayr
* Joey Hess <[EMAIL PROTECTED]> [2005-07-02 19:02]: > QA doesn't seem to have the new version yet, does it? Try now. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#242884: hmm

2005-07-03 Thread Martin Michlmayr
* Filippo Giunchedi <[EMAIL PROTECTED]> [2005-07-03 12:10]: > Martin, could you please remove the trailing / in the last line of sf.php? > after that, it should work as expected! The one in header()? Done. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, ema

Bug#317064: ITP: libcompress-bzip2-perl -- Perl interface to the Bzip2 library

2005-07-06 Thread Martin Michlmayr
reassign 317064 wnpp thanks * Timo Schneider <[EMAIL PROTECTED]> [2005-07-06 01:01]: > Package: libcompress-bzip2-perl WNPP bugs have to be filed against the "wnpp" pseudo package, see http://www.debian.org/devel/wnpp/ -- Martin Michlmayr http://www.cyrius.com/ -- To UN

Bug#317071: FTBFS: Cannot find postgresql header file

2005-07-06 Thread Martin Michlmayr
reassign 317071 aolserver4-nspostgres thanks * Matt Kraai <[EMAIL PROTECTED]> [2005-07-05 14:29]: > Package: aolserver4-nspostgresql > Version: 4.0-2 -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe&q

Bug#317270: x-server: cannot start xwindows

2005-07-07 Thread Martin Michlmayr
* fai <[EMAIL PROTECTED]> [2005-07-07 10:18]: > Package: x-server > Version: startx > Severity: normal Can you please show the error message you get? What does /var/log/XFree86.0.log says? -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED]

Bug#317411: "type 4" GnuPG (gpg) key not clear

2005-07-08 Thread Martin Michlmayr
s gain entropy faster in my experience, and you need a lot of entropy. Just a suggestion; it is not required. -- ($_,$a)=split/\t/,join'',map{unpack'u',$_};eval$a;print;__DATA__ M961H<[EMAIL PROTECTED];"!U2QA8F-D969G:&EJ:VQM;F]P<7)S='5V=WAY>BQN=V]R8FMC 5:75Q96AT9V1Y>F%L=G-P;6IX9BP) - End forwarded message - -- Martin Michlmayr http://www.cyrius.com/

Bug#317416: Please remove the following packages

2005-07-08 Thread Martin Michlmayr
libarr libctk libtest-unit-perl mifluz moria p3nfs pgperl propsel qvplay rio500 rtf2latex shx statslog stklos ttfprint visualos vtcl wminet wmpload xae xfonts-biznet-iso-8859-2 xwave yencode zircon -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a

Bug#317431: AGNULA DeMuDi instalation error

2005-07-08 Thread Martin Michlmayr
* Carlos Costa <[EMAIL PROTECTED]> [2005-07-08 13:04]: > Package: DeMuDi > Version: 0.9 > > On formating during istalation of Debian GNU\Linux based AGNULA, > DeMuDi, it stops at 100% sending the following error: Please report this to DeMuDi. -- Martin Michlmayr http://www

Bug#307877: please don't cache bogus(?) errors

2005-07-12 Thread Martin Michlmayr
* Bastian Kleineidam <[EMAIL PROTECTED]> [2005-07-11 14:12]: > With your permission (I don't want to generate a lot of traffic to > your site without permission), I will make some more checks with > your website to reproduce the bug. Sure, go ahead. -- Martin Michlmayr h

Bug#303282: pressing 'n' immediately confuses cplay

2005-04-05 Thread Martin Michlmayr
elease: 3.1 APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.10-1-686 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) Versions of packages cplay depends on: ii python2.3.5-2An interactive high-level object-

Bug#210198: htmldoc to be removed from testing; will remove orphaned axkit, axkit-xsp-webutils

2005-04-07 Thread Martin Michlmayr
et then; hopefully > one of the maintainers using it will be able to fix it up. Seems like Lars Wirzenius fixed it. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#298968: Bug#296717: ftp.debian.org: Please remove raidtools2

2005-04-07 Thread Martin Michlmayr
ich depends on mdadm and includes an explanation and instructions). -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#303666: sid's ccd2iso depends on experimental package

2005-04-07 Thread Martin Michlmayr
* Marco Perosa <[EMAIL PROTECTED]> [2005-04-08 02:14]: > Package: ccd2iso I cannot find this package in Debian. Do you know where you got it from? What does dpkg -p ccd2iso | grep Maintainer say? -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL

Bug#304090: README.Debian.gz refers to set-m18-env rather than set-m17n-env

2005-04-10 Thread Martin Michlmayr
X terminal emulator -- no debconf information -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#304015: spcc: a string containing "\r\n" results in a newline in the .asm source (!)

2005-04-11 Thread Martin Michlmayr
* Luke Kenneth Casson Leighton <[EMAIL PROTECTED]> [2005-04-10 12:35]: > Package: spcc > Severity: normal It seems there's no such package in Debian. What does dpkg -p spcc | grep Maintainer say? -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAI

Bug#334644: ERRO LOGOUT KDE (SID)

2005-10-22 Thread Martin Michlmayr
* Moisés Jardim Pinheiro <[EMAIL PROTECTED]> [2005-10-19 05:10]: > Package: > > No momento em que coloco a máquina p/ desligar sempre dá esse erro. Can someone from debian-l10n-portuguese please ask for more information and then reassign this bug to the right package. -- Martin

Bug#334804: cantus scans whole filesystem without any message

2005-10-22 Thread Martin Michlmayr
t and started it > again, with strace. > > Obviously cantus seems to try to scan the _whole_ filesystem hierarchy > (starting at /, crossing mountpoints). Needless to say, this can take cantus and cantus3 were removed from Debian because they're so crap, see e.g. #287985 -- Martin

Bug#247602: progress

2005-10-22 Thread Martin Michlmayr
Do you know if there has been any progress with this? -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#335299: should use existing category when updating CDDB entry

2005-10-23 Thread Martin Michlmayr
eedb_form_file'], verb = cf['_query_on_start'], dirs = 1) -- 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.12-1-686 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages jack depends on: ii cdparanoia3a9.8-11 An audio extraction tool for sampl ii flac 1.1.2-3Free Lossless Audio Codec - comman ii python2.3.5-3An interactive high-level object-o ii python-cddb 1.4-3 Python interface to CD-IDs and Fre ii python-eyed3 0.6.8-1Python module for id3-tags manipul ii python-pyvorbis 1.3-1 A Python interface to the Ogg Vorb ii vorbis-tools 1.0.1-1.5 Several Ogg Vorbis Tools jack recommends no packages. -- no debconf information -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#335299: should use existing category when updating CDDB entry

2005-10-23 Thread Martin Michlmayr
tags 335299 + pending thanks * Martin Michlmayr <[EMAIL PROTECTED]> [2005-10-23 09:27]: > When jack is started with the -Q --edit-cddb options and the user > modifies the CDDB entry and opts to submit the new entry, jack asks > for the category of the CD. However, this is not nec

Bug#335299: should use existing category when updating CDDB entry

2005-10-23 Thread Martin Michlmayr
* Michael Banck <[EMAIL PROTECTED]> [2005-10-23 12:07]: > Very reasonable. Did you notify upstream, or is Arne subscribed via the > PTS these days? My mail had a 'X-Debbugs-Cc' header. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTEC

Bug#327375: xf86cfg gui tool parse error on " 17 " DTC " triple quote

2005-09-11 Thread Martin Michlmayr
/XF86COnfig.new > X server is automatically launched by the tool, but report error > due to bad parsing > The line looks like > > Option ModelName " 17" AD" > > The parse error is AD" is not a valid keyword in this section. > > Card is radeon, screen

Bug#327797: bins: contains paths from the build process

2005-09-12 Thread Martin Michlmayr
hanges to install.sh recently. Sorry about that and thanks for the report. I'll look into this later today and upload a fixed package. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#319870: continous space increase in mail statusbar applet

2005-09-12 Thread Martin Michlmayr
* Martin Michlmayr <[EMAIL PROTECTED]> [2005-08-16 19:24]: > > Anyway, are you using stretchable space now? Do you know if the bug > > is still present in the latest ion3? > > I haven't upgraded unstable recently because of all the b0rken > packages and major tran

Bug#327797: bins: contains paths from the build process

2005-09-12 Thread Martin Michlmayr
REFIX"|sed 's%^/%%'` ETC=$DESTDIR/`echo "$ETC"|sed 's%^/%%'` ETC=`echo "$ETC"|sed 's%/$%%'` RC=$DESTDIR/`echo "$RC"|sed 's%^/%%'` @@ -227,7 +228,7 @@ do echo -n " $FILE" ed "$FILE" </dev/null -1,\$s%/usr/local/share%$SHARE%g +1,\$s%/usr/local/share%$GLOBAL_SHARE%g 1,\$s%/etc/bins%$GLOBAL_RC%g wq EoF -- Martin Michlmayr http://www.cyrius.com/

Bug#328370: rss2email: 'r2e run' crashes with 'TypeError: cannot concatenate 'str' and 'int' objects'

2005-09-14 Thread Martin Michlmayr
p://planet.debian.net/rss20.xml > Traceback (most recent call last): I cannot reproduce this. Do you still see this? -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#328552: kwin-style-newstep uninstallable on sid

2005-09-16 Thread Martin Michlmayr
* Francesco Pedrini <[EMAIL PROTECTED]> [2005-09-16 02:54]: > Package: kwin-style-newstep > Severity: grave It seems there's no such package in Debian. What does dpkg -p kwin-style-newstep | grep Maintainer say? -- Martin Michlmayr http://www.cyrius.com/ -- To UNSU

Bug#328370: rss2email: 'r2e run' crashes with 'TypeError: cannot concatenate 'str' and 'int' objects'

2005-09-16 Thread Martin Michlmayr
ed.errorreportsto - return DEFAULT_FROM + return str(DEFAULT_FROM) ### Simple Database of Feeds ### -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#279805: adopting

2005-09-16 Thread Martin Michlmayr
* Antonio S. de A. Terceiro <[EMAIL PROTECTED]> [2005-09-15 12:04]: > Martin, is there still a chance to stop the removal? The package has already been removed but you can always upload it to the archive again... snapshot.debian.net should have the old sources. -- Martin Michl

<    1   2   3   4   5   6   7   8   9   10   >