[12:00] it asks the question OK as expected when RECONFIGURE=true [12:01] Kamion: if you can verify that it doesn't cause any other weirdness for you, that'd be appreciated [12:01] I'll prepare a casper upload [12:02] if that fixes it, I'll incorporate that into -5, head back to bed for an hour, and will incorporate that into -5 [12:03] and upload -5 more or less as originally planed [12:03] or planne [12:03] or planned. [12:03] daniels: please post debdiffs from -2->-3 and -3->-4 [12:04] mdz: for the source? [12:04] mdz: CD nearly written, will do [12:04] daniels: yeah, debdiff foo.dsc bar.dsc [12:04] Kamion: I just hand-edited it in the ramdisk [12:04] that was my plan also [12:04] there's enough time between casper unpack and 20xconfig to get in there and do the job :-) [12:04] I meant the base live CD :) [12:05] gotcha [12:05] oh, don't worry, I do this sort of shit all the time for d-i ... === Kamion does an unedited boot for control purposes [12:07] casper upload standing by [12:09] mdz: p.u.c/~daniels/xorg/; just noticed another micro-regression [12:09] I'm getting a revert-to-6.8.2-2 kind of feeling [12:09] what regression? [12:10] Kamion: the mkfontdir manpage fell out [12:10] oh, can so live without that [12:10] yes [12:10] screw that :) [12:10] i'd rather stick with -4 plus the nasty hack [12:10] there are 2 other places where RECONFIGURE has an effect, more untested code [12:11] mdz: reverting to -2 breaks Greek installs again, plus something like five or six other languages; I'd really rather not [12:12] mdz: the onnly other spot is making it back the old xorg.conf up and write a new one when it's non-zero, which is desired behaviour anyway [12:12] between that and the i810 changes, which make life far more pleasant for lots and lots of people, I'd really rather not revert to -2 [12:13] Kamion: what fixed Greek installs? [12:13] mdz: moving mkfontscale from xbase-clients to xutils [12:13] oh, that [12:13] reverting that is highly undesirable for Replaces reasons anyway [12:13] mdz: mkfontdir uses mkfontscale exclusively; the former is in xutils, the latter in in xbase-clients, and xutils can't depend on xbase-clients because that defeats the entire purpose of xutils [12:14] Replaces ping-pong is no fun :) [12:14] daniels: I know, I filed the bug ;-P [12:14] it's been broken ever since xbase-clients and xutils were split === zul [~chuck@CPE0006258ec6c2-CM000a73655d0e.cpe.net.cable.rogers.com] has joined #ubuntu-devel [12:14] hey [12:14] zul: hi [12:14] hey mdz [12:14] zul: I wanted to ask your opinion about CONFIG_MEGARAID_NEWGEN [12:14] I just had a friend test on a Dell PE2850, and the CONFIG_MEGARAID_LEGACY doesn't work, while the NEWGEN one does [12:15] daniels: have Debian fixed that one? I'd be amazed if they hadn't had to - unifont depends on xutils in Debian just the same as it does in Ubuntu [12:15] unfortunately they seem to be mutually exclusive [12:15] Kamion: nope [12:15] Kamion: i'll report a bug in debbugs [12:15] i think CONFIG_MEGARAID_LEGACY is backwards compatible but ill check on that [12:15] Kamion: but afaict, it's still ther ein unstable [12:15] daniels: how do Greek installs in Debian work, then? [12:15] daniels: they *do* work I'm pretty sure, they've been autotested [12:16] Kamion: well, it's still in xbase-clients in unstable [12:16] if MEGARAID_NEWGEN=n [12:16] config MEGARAID_LEGACY [12:16] Kamion: i dunno how it works, but apparently it does [12:16] and Arabic, Bulgarian, Chinese, Farsi, Hebrew, Japanese, Korean [12:16] Kamion: clear to upload new casper? [12:17] Kamion: *shrug*, maybe it gets installed by some lucky accident along the way [12:17] mdz: sec [12:17] I don't guess there's any hurry until :33 [12:17] mdz: megaraid_newgen doesnt recognize the older controllers [12:17] I've done the control, not the real test yet [12:17] zul: ouch [12:17] I wonder why they're mutually exclusive, then [12:17] the only reason I could think of was that they would be loaded for the same PCI IDs [12:18] heh...ill go check [12:19] thanks [12:20] mdz: seems to work fine [12:21] mdz: (although it worked here before that patch, too) [12:21] uploaded casper 0.54 [12:22] ok, i'm going back to bed until 0030, but still pingable on my mobile [12:22] Kamion: bug #299811 -> didn't you correct me recently that bare conditionals didn't interfere with set -e? [12:23] daniels: ok, thanks [12:25] test -f /not-exist [12:25] will fail === ggi [~ggi@ggi.base.supporter.pdpc] has joined #ubuntu-devel [12:26] so will [ -f /not-exist ] && ... [12:26] mdz: as far as i can tel megaraid_newgen works with megaraid_mm which is a management module the provides ioctly and sysfs support raid controllers [12:26] the legacy ones uses proc support i think [12:26] (the [ will exit 1, so the && bit doesn't run ... the result of the pipe is 1, so set -e causes the script to fail) [12:27] zul: LEGACY gets us megaraid.ko, NEWGEN gets us megaraid_mbox.ko (driver which seems to support more cadrs) and megaraid_mm.ko (management module) [12:27] [ ! -e file ] || mv $file /var/log/setuid [12:27] would work (the || will eat the 1) [12:28] mdz: i could be wrong ;) [12:28] mdz: you were talking about || [12:28] IIRC [12:28] Kamion: ah, ok [12:29] bash(1) says that 'false && true' or whatever does not trigger 'set -e' [12:29] this appears to be true in bash and dash, but I have a recollection that it may not be true in all shells [12:29] AFAIK false || ... is safe everywhere === Amaranth [~travis@amaranth.user] has joined #ubuntu-devel [12:30] Blinn says "false && true" will break set -e [12:31] Keybuk: naturally, false && $whatever is false so it breaks set -e [12:32] Keybuk: I can't find any shell in which that actually happens though [12:32] Kamion: zsh [12:32] I tried zsh [12:32] descent scott% false && true [12:32] zsh: exit 1 [12:32] yes, but it does not trip set -e [12:32] scott@descent:~$ false && true [12:32] scott@descent:~$ echo $? [12:32] 1 [12:32] exit 1 from a pipeline doesn't trip set -e by itself [12:33] yeah, most shells tend to make that one work [12:33] an && or || guard appears to be sufficient to avoid that in any shell I've tried [12:33] it's not portable though [12:33] no, I can believe that [12:33] just wondering where the submitter of #299811 managed to find a shell where it broke [12:33] mdz: according to the changelog fabio disabled to avoid regressions [12:33] zul: :-( [12:34] $ zsh -c 'set -e; false && true; echo hello' [12:34] hello [12:34] busybox ? [12:34] of course that was in 2.6.9 i dont know if it has gotten any better [12:34] zul: I read that as "try to avoid regressions by using the old driver rather than the new" [12:35] overall, though, this is a regression from 2.4 (which had megaraid and megaraid2, at least one of which would work on these boxes) [12:35] nope, busybox on my wrt seems ok [12:35] *shrug* [12:35] he probably tried very hard :p [12:35] mdz: ah i see [12:35] zul: looks like probably NEWGEN was introduced in 2.6.9 [12:36] mdz: https://www.redhat.com/archives/taroon-list/2004-November/msg00145.html [12:36] zul: what a mess [12:36] mdz: yep [12:37] a bug report about this should arrive soon, but it sounds like we can't do much for Hoary [12:37] should look at 2.6.11 if its any better [12:39] mdz: you still need me atm? Or is it 6h laters also possible? [12:41] is all the kubuntu stuff in the archive now, including binaries? === Kamion notes lack of autopurging of old Kubuntu CDs, and fixes [12:42] mdz: megaraid supports only a limited number of controllers megaraid_mbox supports a whole whack of controllers (including dell perc, lsi, intel raid controllers, fsc and acer raid controllers) [12:42] Kamion: nope, need another upload of kdebase [12:43] mdz : DO you have a clever way to mass-reassign all bugs relating to a source package to a specific bugzilla user?... Searching by components is painful. ;) [12:44] Kamion: why do you ask? [12:44] Riddell: was wondering if you guys were ready for preview-release CD builds to happen [12:45] Riddell: i guess a possible build will fail atm [12:45] Kamion: not yet, is it different from the nightly builds? [12:45] Riddell: releases are always blessed nightly builds (even if those "nightly" builds happen to be triggered manually) [12:46] Riddell: but we often trigger stuff by hand coming up to a release, to speed things up [12:47] Riddell: lamont, mdz, and I can trigger installer initrd / live filesystem rebuilds; mdz, daniels, and I can trigger CD image builds [12:49] Kamion: if there is a really, really sucky bug in Gnome upstream, what are the chances of getting it fixed by an Ubuntu staffer and applied before hoary ;) [12:50] robertj: we're still making GNOME changes; you'd have to talk to seb128 or jdub though, I know very little about the specifics [12:50] "really, really sucky" is often relative :-) [12:50] Kamion: the connect to server dialog is b0rk out of the box for sftp [12:51] works here [12:51] seb128: Its broken on the LiveCD and I had a rawhide user come up with the same result [12:51] I found that if I didn't have an appropriate key in an ssh-agent, the initial connect failed [12:52] you mean the dialog displayed when you click to validate ? [12:52] Kamion: we decided that was probably it [12:52] but it then works thereafter [12:52] seb: when you connect it whines about not having an appropriate handler [12:52] I'm not quite in a position to come up with specifics right now [12:52] I think the real problem is it's an unknown host [12:52] mdz: (save yourself the expense of a call; i'm up now) [12:52] robertj: and it works after that [12:53] yes, after that it will ask you for your password and work happily [12:53] the dialog issue is already in bugzilla [12:53] that's quite of ugly but not a big issue [12:53] any chance of it getting fixed? [12:54] I think this one is over my head [12:54] if you send a patch sure [12:54] if you don't send a patch and don't get fixed in a new upstream tarball not sure [12:55] s/and/or/ [12:55] Keybuk: do you know of a portable way to make shell aliases be expanded? [12:55] depending of the other bugs to fix before [12:55] Kamion: nope, because shell aliases aren't portable shell [12:56] seb128: is this something that bounty money could be used for to make the world go round? [12:56] no [12:56] brb [12:56] I thought all Kornish shells implemented them interactively at least [12:56] that's something that somebody bothered by the issue can fix quite quickly [12:57] ie: every bug fix is not bounty material [01:00] Kamion: no idea, my shell-fu ends where portable scripting ends -- unless it's zsh weirdness :p [01:01] Keybuk: I think this is hard because I'm trying to implement a very weak kind of exception raising in shell ;) [01:01] I want something that prints an error and returns out of the current function, basically [01:01] set aliases -- zsh [01:01] set expand_aliases -- bash [01:01] etc. [01:02] yeah, I bet busybox doesn't have that [01:02] use variables [01:02] portable shell expands spaces in variables === robertj reboots and will be back in a bit [01:05] Keybuk: can't expand a variable to 'foo; return' though === zul [~chuck@CPE0006258ec6c2-CM000a73655d0e.cpe.net.cable.rogers.com] has joined #ubuntu-devel [01:05] can I? [01:06] no, I can't [01:07] it's really to avoid having to do || { warn foo; return; } or whatever the syntax is all over the place [01:08] you can with some trickery [01:08] msg="foo" $throw [01:08] or something [01:08] msg="foo" eval $throw [01:08] you may have to do [01:09] Kamion : What's wrong with _exception() { echo $1; return 1; } ? [01:10] infinity: It only returns you out of the subfunction. [01:10] Oh, duh. [01:11] Keybuk: nice trick [01:11] jbailey : Of course, s/return/exit/ solves that. [01:12] infinity: exit is what I'm doing, but it's too big a hammer [01:12] and I need to save state between calls to the function, so I can't use a subshell [01:12] Kamion : I need to read better. You wanted to only return from a function, not the script. Check. I'll shut up and go back to work. :) === Clint [clint@adsl-69-233-179-235.dsl.pltn13.pacbell.net] has joined #ubuntu-devel === quarupt [~quar@c-67-183-254-78.client.comcast.net] has joined #Ubuntu-devel === jimmer_ [~jimmer@pool-68-161-51-182.ny325.east.verizon.net] has joined #ubuntu-devel [01:15] hello all! === amu [amu@195.227.106.194] has joined #ubuntu-devel [01:16] anybody here interested in hearing some stuff about my experiences with hoary 5.04? [01:17] jimmer_: in this channel, we're most interested in hearing stuff that comes with patches :-) [01:17] infinity: do a search, then "change several bugs at once" [01:17] bugzilla's best for bug reports, or ubuntu-users@lists.ubuntu.com for general reports [01:18] Is there a Project Manager for Ubuntu? [01:18] Kamion, well, that can be fixed... it's just that I don;t know if I want to be an actual part of the Ubuntu effort... [01:18] Kamion: ready for new CD builds? [01:18] quarupt: what do you mean? [01:18] mdz: checking [01:19] Kamion: casper-udeb 0.54 is in the archive [01:19] Well most Open Source projects have one person who Organizes things like meeting releases and such? [01:19] quarupt: why do you ask? [01:19] right, you could have meant either a program (project management application) or a person :-) === mvo -> bed [01:19] Just wondering... [01:19] mvo: night [01:20] night all [01:20] who would be in charge of initrdds? I'm wondering if there's any technical reason that devfs is used still rather than udev, or if it's just not been gotten around to [01:20] schweeb: me; and we do not use devfs any more, we use udev [01:20] if you mean the installer initrd, that is [01:20] devfs is more stable and more documented === mdz gapes at quarupt [01:21] mdz: new live CDs building [01:22] quarupt: the two-headed developer known as mdz and jdub handles that function. :-) [01:22] well i dun like udev since it works entirely in userspace [01:22] fortunately one head is awake on Pacific time, and the other on Australian time, which is uncommonly useful [01:22] since when is jdub on Australian time ?! [01:23] well, theoretically [01:23] kamion: no the kernel initrd... generated by mkinitrd when you install a kernel [01:23] udev will not automatically load a driver if a /dev node is opened [01:23] when it is not present like devfs will do [01:23] schweeb: ah, that would be jbailey [01:23] schweeb: I believe we're switching to hotplug/udev in initramfs post-hoary [01:23] schweeb: it's a sensitive component and it hasn't been migrated yet [01:24] quarupt: nevertheless, we have good reasons to switch to udev throughout the entire system and fix the few problems that result [01:24] Whatever works === koke [~koke@rm-001-26.serve.com] has joined #ubuntu-devel [01:24] not the least of which is that devfs is deprecated upstream [01:24] one being that devfs is liable to be removed from the kernel any time soon [01:25] quarupt: actually, that's one of the biggest udev/devfs myths known to mankind [01:25] It should be around until .12 [01:25] devfs had nothing to do with the automatic module loading [01:25] it just happened to massively-populate /dev [01:25] quarupt: so, hoary+1 [01:25] so the device node tended to exist when you tried to open it [01:25] Really? [01:25] quarupt: might as well get it out of the way now [01:25] you can do exactly the same with udev by making the device-nodes exist before time [01:25] mdz: fwiw, I've just dug up my xresprobe 0.5 branch and dragged back the test support for it, so I can fake various fun situations (DDC failing, DDC from a specific EDID file, a laptop probe from a specific log file), so I can test this sort of thing better in the future [01:25] Keybuk: no, devfs actually has its own madness in that department [01:26] udev isnt for loading kernel modules anyways [01:26] mdz: well, yes, as it had its weird filesystem -- but the kernel will load modules when any device node is opened === mike_douglas [~mike@70.70.204.42] has joined #ubuntu-devel [01:26] Keybuk: with devfs, it loads modules even if the device node doesn't exist [01:26] mdz, didnt i just say that? [01:27] quarupt: no? [01:27] for those of us that don't have a clue what the whole devfs/udev fussis about... like me... http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev-FAQ [01:27] he did [01:27] 00:23 < quarupt> udev will not automatically load a driver if a /dev node is opened [01:27] 00:23 < quarupt> when it is not present like devfs will do [01:27] the answer these days is that if you don't have the module loaded, clearly there's something wrong preventing the hardware from being detected, so loading the module when you try and open the device is going to fail anyway [01:27] but really, this argument is so six months ago ;) [01:28] lol true dat [01:29] daily-live rsyncing [01:29] Hotplug works fine 99% of the time in Hoary anyways [01:30] Can't say that about many other distro's not out of the box anyways [01:31] meh; so you can't Replace a directory with a non-directory [01:31] how do we handle that on the backwards equivalent [01:31] we still have several regressions from discover to fix [01:31] mdz: ah, thanks... ran in to problems with Xen and devfs on my systems... mostly cause I didn't compile devfs in, and it took me a few to diagnose the problem, heh [01:32] Do any of you guys actually code for a living? [01:32] uh yes [01:32] most of the people talking with you at the moment do [01:32] stand back, we're professionals [01:32] lol [01:32] The most coding I get to do at my job is writing some lame vb script to change something in the AD or system policy [01:33] I hate my job [01:33] If we could just run at least our web server on linux id be happy [01:34] This is so off topic [01:34] sorry === schweeb changes channels to #it-angst [01:35] So are we getting close to a release or what? [01:35] alt.sysadmin.recovery [01:35] quarupt: dude; "are we nearly there yet" doesn't go over well in this channel; just letting you know :) [01:36] meh, I'm so just going to ignore this [01:36] Well Hoary seems pretty stable [01:36] quarupt: just sit back and enjoy the ride [01:36] quarupt: the release schedule is on the wiki [01:36] "can't install banana because it would mean if you'd done this the other way round I'd've broken because you would've replaced a directory with a non-directory ..." [01:36] quarupt: the release date for Hoary was set 6 months ago [01:36] and we are on track to meet our target [01:36] I wanna deploy Ubuntu at my work on some workstations but he wont let me install anything that is "Beta, Testing, Unstable" [01:37] quarupt: how about "Ubuntu 4.10", our officially supported stable release, then [01:37] Because Warty is nothing compared to Hoary === thoreauputic [~debianarc@wolax7-173.dialup.optusnet.com.au] has joined #ubuntu-devel [01:37] it's "released" [01:37] it's "supported" [01:37] quarupt, just install and change /etc/motd and /etc/issue [01:37] it's "stable" [01:37] it gets "security updates" [01:38] So Hoary is Stable right now too, just not officially [01:38] it "works" [01:38] quarupt: the people you are addressing have a much better idea of Hoary's stability [01:38] because they are the people who are stabilizing it [01:38] I have had it running for like a month staright running my web server myy ftp and and ssh with over 40 connections a day [01:38] and it takes it like a man [01:39] thanks for testing it [01:39] quarupt: seriously, we're straying into off-topic... [01:39] Im sure they do have a better Idea, Im not complaining Im just trying to say I think its looking awesome [01:39] Okay sorry again === wasabi_ [~wasabi@69.26.213.178] has joined #ubuntu-devel [01:40] well non-developers cants say much that is on "topic" === jimmer_ [~jimmer@pool-68-161-51-182.ny325.east.verizon.net] has left #ubuntu-devel ["Leaving"] [01:40] that isn't true [01:41] Im just another annoying line in someones scroll back buffer trying to catch up on what they missed, when they were sleeping [01:41] certainly people who aren't yet Ubuntu developers can, and do; it's just that this is not a general chat channel, it's a development channel, and thus development-oriented conversation is appreciated :-) [01:41] that's how you're behaving right now, yes. but you could easily be helping us to test this milestone we're preparing [01:41] How [01:42] cdimage.ubuntu.com/daily/current/, cdimage.ubuntu.com/daily-live/current/; burn, test, report [01:42] http://cdimage.ubuntu.com/daily/current/ and http://cdimage.ubuntu.com/daily-live/current/ [01:42] I allready use almost 80% of my 4gigs of ram running all sorts of servers and desktop applications [01:42] quarupt : For web servers, there's very little change between warty and hoary, except a few bugs fixed here and there, and a couple incremented features. With the snail's pace at which server software evolves, combined with a 6-month release schedule, I can't see how upgrading to hoary buys you anything esxcept for missing security updates. [01:42] Quarupted : On the other hand, I'll never turn down someone's offer to beta test things. :) [01:43] I love Beta testing [01:43] I was there with Potato, Sarge, and now SID [01:43] so you want me to burn that image try to install it and report? [01:43] that's certainly what I've been spending the last few hours on [01:44] but we can only cover so many cases ourselves [01:44] I dont have any free Partitions, but i do have a VMware ready to go [01:45] Do you guys have allot of people testing your AMD64 live cd? [01:45] I can do that [01:46] it does get testing, but I'm sure rather less than i386 [01:46] amd64-live successful [01:46] Quarupted: yes, please do [01:46] im on it [01:46] Quarupted: burn and test as many of those images as you are able [01:47] I can only test live ones now, untill i do some resizing on mp Partition table [01:47] 666.0 Megs for the AMD64 Live now thats an Omen === thoreauputic_ [~debianarc@wolax7-096.dialup.optusnet.com.au] has joined #ubuntu-devel [01:49] it's perilously close to being oversized is what it is [01:49] in fact it's precisely on the mark [01:49] yup at 500k its gunna take like 8 Minutes [01:50] mdz: anything we can take out of that? the next live cloop build will probably overflow it, given partimage breakage [01:53] Unpacking banana (from banana_1.0_all.deb) ... [01:53] Replaced by files in installed package banana-icecream ... [01:53] yayyy [01:53] mdz: in fact I'm pretty sure we've overflowed the 74min disk limit, judging from what cdrecord is telling me [01:53] Keybuk: nice [01:55] let's try this with one of pitti's PACKAGES OF DOOM [01:57] powerpc-live: success [01:57] Kamion: the amd64 cloop suffers from size creep [01:57] we can reset it, at the expense of rsyncability [01:57] mdz: yeah, I know [01:57] but we reset it quite recently [01:58] and the WinFOSS stuff has made its size jump right up [01:58] yeah, then we upgraded X [01:58] the only thing we could realistically remove from the cloop would be language packs [01:58] let's ask lamont to reset it tomorrow then [01:58] Kamion: mail pitti to consider trimming language packs in the morning [01:58] I question whether we can release with it over the limit [01:59] I suppose we could make it an erratum [01:59] (Array 7, I mean) [02:02] Kamion: amd64 install dumped me to the menu at time zone configuration [02:03] Unpacking language-pack-cy (from language-pack-cy_20050310_all.deb) ... [02:03] Selecting previously deselected package language-pack-cy-base. [02:03] Unpacking language-pack-cy-base (from language-pack-cy-base_20050310_all.deb) ... [02:03] Replaced by files in installed package language-pack-cy ... [02:03] Setting up language-pack-cy (20050310) ... [02:03] Setting up language-pack-cy-base (20050310) ... [02:03] mdz: version of tzsetup-udeb? [02:03] Keybuk: rock [02:04] Kamion: 2.62ubuntu12 [02:04] after a successful base-install [02:04] tzsetup-udeb succeeded but requested to be left unconfigured [02:05] is this the rtc issue? [02:06] no, shouldn't be [02:06] please send me /var/log/syslog [02:07] powerpc-install made it to archive-copier [02:07] you might need to put 'set -x' at the top of tzsetup-udeb.postinst and rerun to make it meaningful [02:07] Kamion: emailed [02:08] Kamion: shall I retry from the menu, then? [02:08] (with set -x) [02:08] mdz: please [02:10] Mar 17 01:09:10 main-menu[4300] : (process:13447): RET=10 tzconfig/gmt doesn't exist [02:11] Kamion: mailed you the full log (take 3) [02:13] meh, it breaks with more than one file [02:13] Kamion: tzconfig/gmt is in debconf's db in the chroot, but not in cdebconf's in the initrd [02:13] bleh, ok, wonder how that worked for me [02:14] wonder how it worked for me on i386 [02:14] I mean powerpc [02:15] oh, it didn't [02:15] it dropped me back to the menu after archive-copier [02:15] I thought tzsetup-udeb came first, for some reason [02:15] I propose that if it worked for you, you had different software on your CD [02:15] that's so weird, I had 3/3 working [02:15] and rsync says nothing [02:16] oh [02:16] none of my installs were on a system where Ubuntu was the only OS on the CD [02:16] I mean on the hard disk [02:16] that is the case that fails === Kamion hunts down the scratch box === justdave [~dave@66.227.241.236.gha.mi.chartermi.net] has joined #ubuntu-devel [02:17] looks like an install CD delay, then :( [02:18] no d-i build necessary, though, right? [02:18] nope === thully [~thully@208.sub-166-155-119.myvzw.com] has joined #ubuntu-devel === jbailey [~jbailey@CPE000ded9d787c-CM014260028338.cpe.net.cable.rogers.com] has joined #ubuntu-devel [02:21] mdz: this is all down to the GMT-suppression thing being a nasty hack, of course :( it should just lower the priority ... [02:21] mdz, im about to boot into the AMD64 live, what kinda things should I test once im in? [02:21] hm, only in pool/main/m, and still got xorg to go [02:22] Quarupted: well, X will only start in 1024x768, so hope to hell that works on yoru stup [02:22] your setup, even [02:22] it should [02:22] i run 1280x1024 now [02:23] Actually nvm, the Image didnt even burn to a disk [02:23] rad [02:23] Unpacking language-pack-cy-base (from language-pack-cy-base_20050310_all.deb) ... [02:23] Replaced by files in installed package language-pack-cy ... [02:23] snarf is keeping existing `./usr/share/locale-langpack/cy/LC_MESSAGES/gok.mo' [02:23] snarf is keeping existing `./usr/share/locale-langpack/cy/LC_MESSAGES/messages.mo' [02:23] Weird [02:23] yayy, fixed that bug [02:23] Quarupheiz; http://www.ubuntulinux.org/wiki/QAtesting [02:24] Keybuk: 164595? [02:24] mdz: indeed [02:24] cool [02:24] Keybuk: how afraid do we need to be about putting that fix into hoary? [02:24] well i wont be able to test it if i cant get the Image to burn [02:24] the fix is getting smaller and smaller [02:24] so I'm actually pretty confident that it's safe [02:25] Quarupted: as I said above, if you only have 650MB disks then it won't burn [02:25] bah [02:25] Kamion: if you want to build it without the winfoss on it, I've no problem with that [02:25] as a quick and unintrusive fix [02:25] just temporarily for array 7? [02:25] the winfoss on the amd64 CD is much less interesting than on i386 [02:26] Kamion: yeah [02:26] or even permanently, if we could better use the space [02:26] though I imagine we'd trim it rather than remove it entirely === Quarupt [~quar@c-67-183-254-78.client.comcast.net] has joined #Ubuntu-devel [02:26] Quarupt: 01:25 < Kamion> Quarupted: as I said above, if you only have 650MB disks then it won't burn [02:27] there 700MB [02:27] mdz: ok, removed, rebuilding [02:29] I'm not going to make :33 I'm afraid [02:29] I think its gunna burn alright this time [02:29] Kamion: I can kick cron.daily if necessary [02:29] ok [02:29] need to test first [02:30] feel free to send a udeb my way if you need confirmation [02:30] - db_fset tzconfig/gmt seen true [02:30] + target_debconf sh -c ' [02:30] + . /usr/share/debconf/confmodule [02:30] + db_fset tzconfig/gmt seen true' [02:30] that's the diff to tzsetup-udeb.postinst [02:30] (basically) [02:31] mdz: I am here, btw === mdz hides [02:33] Kamion: would target_debconf_communicate or similar be a less ugly way of accomplishing the same thing? [02:34] mdz: yes; but that code will go away soon anyway [02:34] as previously mentioned it's a buggy approach [02:34] thully has a bug open on it, wrong expert-mode behaviour [02:34] on a related note, /me adds "cdebconf-copydb" to the list for breezy [02:35] hell yeah. sadly it needs a total rewrite of cdebconf's rfc822db [02:35] anything else to add to the "gross hacks that should go away" BOF while I'm there? [02:36] the linux-{386,686,k6,k7,powerpc,whateverthehellelse} grep in base-installer [02:36] lol [02:37] done [02:37] I think we ought to specify this stuff in Sydney to ensure that we allocate development time for it [02:37] [FC4T1] To add insult to injury, opening Firefox greeted us with: "There ought to be release notes for Fedora Core 3.90 here, but there aren't. In the meantime, we bring you this ASCII art hat." [02:37] otherwise we'll be forever implementing new features and not fixing the old ones :-P [02:37] mdz: yeah [02:38] mdz: but but but fixing things isn't sexy [02:39] oh, FFS [02:39] it's so much faster to hit the reset button than it is to wait for the System menu to get its act together and actually appear on the live CD [02:39] evms-udeb has a binary that depends on ncurses, but I don't see an ncurses udeb. Where should that be provided from? [02:39] jbailey: ncurses, I imagine ... [02:40] yeah, can we like, prio-RT whatever is the gnome menu bar process? [02:40] it's so lame that it's always swapped out and takes so long to come up [02:40] does it *really* want to have its own UI, though? I think not [02:40] evms-udeb is an idea that never actually materialized [02:41] evms's interface is pretty decent on it's own. I was thinking of plugging that into it [02:41] and just jumpting to it from the partitioner [02:41] elmo: mlockall() [02:41] should be integrated into partman [02:41] I mean, if you want ENTERPRISE volume management... =) [02:41] Kamion, partman should show the /dev/evms device certainly, but I really think the evms gui can alter them fine [02:41] it would be feasible to do the things that partman can do with lvm, with evms [02:41] ah, a'ight. I'll stop trying to get it to work and figure out why it broke then. =) [02:41] but if you want to do the additional stuff EVMS can do, I think that's madness [02:42] no, we have enough bugs about back-and-forth in the installer breaking stuff without having another totally unintegrated UI in there [02:42] jbailey: it's never even been in the same room as working [02:42] =( [02:42] I'm fine with using the evms logic and stuff, but it needs to plug into partman [02:42] one of these days i'll put it together. ;0 [02:42] the evms logic is HUGE heh. [02:42] anyway, I cannot discuss this now [02:42] that tzsetup-udeb fix was wrong and I need to fix it [02:43] does ubuntu have a menu entry for running the file manager as root? [02:43] mdz: 'kay thanks. [02:45] mdz: speak of the devil there is an update to megaraid_mmbox [02:46] er..megaraid_mbox === Quarupt [~quar@c-67-183-254-78.client.comcast.net] has joined #Ubuntu-devel [02:46] The live CD hung up at loading isofs [02:46] :( [02:47] Must not like my Hardware [02:47] dunno [02:47] mdz: ok, so what's the plan for this patch? [02:48] have done some pretty rigorous tests, and works fine [02:48] Keybuk: cry about the fact that we can't possible test it enough :-( [02:48] s/possible/possibly/ [02:48] So sorry I couldnt Test it, but i don't think it likes my hardware [02:49] Quarupt: it's a live CD, it likes all hardware [02:50] well it wouldnt load isofs tried 3 times wait 5 minutes each time [02:51] mdz: heh, but do you want it uploaded or not? [02:51] Keybuk: why the hell not? we're DOOMED [02:51] rofl [02:51] Keybuk: (read: after array 7) [02:52] wouldn't before give us more testing? [02:52] Quarupt: that module has nothing to do with your hardware; I strongly suspect the problem is with your media [02:52] wow, I had no idea how bad the stat() damage from the new langpack stuff was [02:52] Keybuk: we're literally preparing it right now === Kamion idly murders Keybuk [02:52] without strace, starting totem takes under a second on my amd64 [02:53] daniels: It's pretty brutal. [02:53] daniels, didnt i mention i tried 3 different copies? [02:53] it takes a bit over 15 seconds with strace, because gnome-terminal just can't handle the staggering amount of crap being spewed to the terminal [02:53] Quarupt: not to me, no [02:53] mdz: uploaded. don't look at the code [02:53] Kamion: cue elmo? [02:55] cron.daily runing [02:55] elmo: buildds could probably squeeze in before the next cron.daily, if so ... [02:55] Kamion: buildds pre-dep on cron.daily [02:55] yeah, I mean if cron.daily mysteriously went off now ;) [02:56] ah [02:56] assuming it's through cron.unchecked anyway [02:56] or whatever it's called [03:02] Suspend to disk and suspend to RAM work perfectly on robot101's obscenely crap craptop [03:02] TOTALLY RAD LAPTOP SUPPORT [03:02] oh, crap, tzsetup-udeb.prebaseconfig has the same problem === mdz high-fives mjg59 === Kamion goes off to cry [03:03] Kamion: showstopper? === daniels consoles Kamion. [03:03] yes, prebaseconfig crashes [03:03] Kamion: i feel your pain [03:05] robot is upset that he had to go and buy an X40 and it turned out that his laptop worked anyway [03:05] Totally rad laptop results in decreased life expectency and depression === Robot101 [robot101@light.bluelinux.co.uk] has joined #ubuntu-devel === Robot101 needs to do some computationally intensive stuff and see if it crashes :P [03:06] mdz: ok, confirmed that xserver-xorg 6.8.2-5 works fine for a) complete DDC failure (asks and respects the mode question), b) upgrade (leaves your config alone), c) ddc (writes the right thing out), and d) laptop (writes the right thing out) [03:07] daniels: sounds good (after array 7) [03:07] mdz: (yeah) [03:07] Kamion: are you sure you don't want to sleep and do this tomorrow? [03:07] mdz: does the timezone setup thing in casper/pre.d actually do any good whatsoever? [03:07] yes, sure [03:07] Kamion: if there's anything I can usefully do, let me know [03:07] I'm not fussed if array 7 is delayed by a day [03:07] because it does fuck-all good in d-i right now, and I want to delete it [03:08] we might as well put in xorg 6.8.2-5 and Keybuk's new dpkg [03:08] and I can undo the casper damage [03:08] Kamion: I have no idea [03:08] Kamion: I haven't tested preseeding a time zone on the live CD, and if it doesn't work for final, I'm not going to cry over it [03:08] ok, let's leave it until tomorrow :( sorry about this, my fault [03:08] paracetamoxyfrusybendroneomycin [03:09] Kamion: no worries, thanks for staying up [03:09] daniels, Keybuk: fire when ready [03:09] Kamion: eh, xorg was tanked as well === ..[topic/#ubuntu-devel:Kamion] : Ubuntu Development | #ubuntu for support and general discussion | #ubuntu-love for getting involved | http://www.ubuntulinux.org/wiki/DeveloperResources | http://www.ubuntulinux.org/wiki/HoaryGoals | Kubuntu on #kubuntu-devel | Hoary preview release: http://releases.ubuntu.com/hoary/ | Array CD 7 2005-03-17; please test uploads to main carefully | Release Candidate: March 30th [03:10] mdz: you might as well kick that horror show hack out of casper, then [03:10] daniels: and I can undo the casper damage [03:10] mdz: right [03:10] should I cram dbus and dbus-mono in as well? or since they're for universe shit anyway, probably worth waiting until after just to be totally sure [03:11] I'd wait [03:11] if it isn't too much hassle to do so [03:11] (not to demean universe; just using 'shit' as any random grouping of stuff) [03:11] Kamion: yeah [03:11] Kamion: not at all [03:11] I'm going to stay up a bit more to get these fixes tested properly, then crash [03:12] Kamion: oh, if you're going to do that, then I'll build some candidates later [03:12] (assuming you upload it) [03:14] mdz: thanks, that'd be good [03:14] shall I disable the daily cron jobs? [03:15] ok, 6.8.2-5 is up [03:25] Ubuntu daily/daily-live CD build cron jobs disabled, build 'em manually if you want 'em === jlj [~agp@host-81-191-64-79.bluecom.no] has joined #ubuntu-devel [03:38] with the amd64 cloop; can somebody just SCP it across to an i386 machine, partimage -e it and scp it back again. Hackery, but it'd solve the problem and not loose the rsync status [03:39] (or run the i386 version with ia32-libs) [03:46] wow, the fan actually works too === thoreauputic [~debianarc@wolax7-096.dialup.optusnet.com.au] has joined #ubuntu-devel === jamesh [~james@203-59-82-98.dyn.iinet.net.au] has joined #ubuntu-devel === mdz [~mdz@ca-studio-bsr1o-251.vnnyca.adelphia.net] has joined #ubuntu-devel === ogra [~ogra@p5089DDDE.dip.t-dialin.net] has joined #ubuntu-devel [03:49] when clean installing hoary, should optical drives beusing dma by default? Mine weren't. [03:49] robot101's laptop is now entirely love [03:49] mjg59: just how oddball a laptop is it? [03:49] zenwhen: no [03:49] oh ok [03:49] zenwhen: #3672 [03:50] My oddball 266Mhz 4010CDS runs GREAT with hoary. [03:50] :) [03:50] In all its dual scan lcd glory. [03:51] mdz: ok, base-config 2.62ubuntu14 should actually work; tested in as many faked-up configurations as I could think of [03:51] Kamion: ok, cheers === stub [~stub@dsl-246.248.240.220.dsl.comindico.com.au] has joined #ubuntu-devel [03:53] mdz: It's some ancient FIC thing with a Celeron 366 [03:53] So probably circa 2000 [03:53] I should get out my old toshiba and see how it fares with Hoary [03:54] I've been slack on i386 install testing anyway because I don't want to clobber my laptop [03:54] toshiba with a a flakey keyboard? [03:55] Only issue is that the contrast is strange on resume, but it does the same on apm [03:55] I'm a touch amazed, really [03:55] hm, s-t-d seems to hang on the Averatec [03:55] The avaratec is almost as bad as the craptop [03:56] yeah, via throughout [03:56] Can you edit /etc/default/acpi-support and switch off dpms, then try s-t-d again? [03:56] You ought to get more output that way === Keybuk watches the Dr Who trailer for the gazillionth time [04:00] mjg59: that time it suspended, but didn't resume; just came back up normally [04:00] Kamion: Is this a clean Hoary install? Or an upgrade? [04:00] mjg59: does it care if my resume partition is mistakenly type 0x83 rather than 0x82? [04:00] mjg59: clean hoary, and has RESUME= in mkinitrd.conf before you ask [04:00] Hrm. Possibly. [04:00] I'd be a bit surprised, though. [04:00] Possibly that path ought to have more debugging in it... [04:01] Can you try it with 0x82 and see if it makes a difference? (I'd be surprised, but...) [04:02] sure, one sec [04:06] mjg59: changing the type did it === bradb [~bradb@modemcable022.154-81-70.mc.videotron.ca] has joined #ubuntu-devel [04:09] mjg59: and it appears to be able to s-t-r, but not resume [04:09] the entire first episode of Dr.Who is on Limewire [04:10] which I guess isn't saying much [04:13] later all [04:17] Kamion: what do you think we should do about the en_US/en_GB issue? [04:17] (#4271) [04:20] shit, I forgot to eat [04:20] bbiab [04:21] Kamion: It worked with a different type? Excellent [04:21] What's the failure mode on resume from RAM? It just boots instead? [04:23] infinity: are you able to test live or install CDs? [04:33] /./me i === Robot101 whistles innocently [04:35] Quarupt: is incomplete pre-edit version, which rumour has it the BBC leaked deliberately to gain publicity === adamh [~adamh@modemcable051.139-81-70.mc.videotron.ca] has joined #ubuntu-devel [04:38] I'm thinking of switching over to Ubuntu from Debian. One of the benefits I think I'd get is that I wouldn't have to jhbuild all of GNOME just to hack at Epiphany. Am I right? Are there any GNOME hackers here who switched to Ubuntu? :) [04:38] yse === mmuzzy [~mmuzzy@ip24-250-44-152.ri.ri.cox.net] has joined #ubuntu-devel [04:39] No more need for jhbuild? [04:40] adamh: quite a few; it's heaps easier tracking the package releases on the development branch, and building just what you need [04:41] jdub: Development branch? <-- hoary? [04:42] currently, yes [04:43] Well, if it works for jdub it's good enough for me! Here we go... goodbye Debian :) [04:43] (The irony here is that I'm going through the trouble of reinstalling my OS just because I'm too lazy to do a kernel recompile) [04:50] Kamion/mdz: reset of amd64 cloop? [04:51] lamont: not yet please, array 7 not yet done [04:51] mjg59: just boots instead [04:51] Kamion: just say when. [04:51] mdz: I have a plan for that one; intending to make localechooser's fallback for English just 'en', so you get LANGUAGE=en_GB:en for British English and en_US:en for American English, etc. [04:52] mdz: the downside is that en_(other than GB|US) won't get either of en_GB and en_US, which in practice means they'll get American translations rather than British ones, which will probably irritate some people [04:52] mdz: but for the time being I think that's tolerable [04:53] Kamion: I think that's the best we'll do for hoary [04:53] I'm not even sure what we should do long-term [04:53] yeah [04:53] maybe store a list of which countries prefer which variants of English [04:53] it seems like the correct solution would involve identifying the locale of the untranslated strings [04:53] so en_ZA => en_GB:en, say === Yomic [~Yomi-kun@ip70-178-179-66.ma.dl.cox.net] has joined #ubuntu-devel [04:53] (warning: may not be true) [04:53] en_ZA:en_GB:en, rather [04:53] What version of Python is in Hoary? [04:54] Yomic: 2.4.1a0 [04:54] Yomic: http://higgs.djpig.de/ubuntu/www/ [04:54] Thanks. [04:55] lamont: tomorrow sometime [04:55] lamont: would running the i386 partimage binary, as sladen suggested, be feasible? [04:56] Kamion: as a manual action, yes. [04:57] why not automatic? === srbaker [~srbaker@blk-137-92-118.eastlink.ca] has joined #ubuntu-devel [04:58] xorg bulit on i386 and amd64 [04:58] and ppc [05:00] once those are accepted, we'll roll new livefs builds and install CD builds [05:01] mdz : No burner currently. === Sym [~zero@dialup-4.246.253.94.Dial1.SanJose1.Level3.net] has joined #ubuntu-devel === mroth [~mroth@mroth.user] has joined #ubuntu-devel === kain [~kain@ip-72-109.sn2.eutelia.it] has joined #ubuntu-devel [05:09] elmo: when can I expect X to reach mirnyy? [05:11] if the Acrhive Manger wont open a rar, and either will ark, Ark says unrar isnt in my PATH? [05:11] oops wrong chan [05:14] mdz: should be there now [05:15] elmo: hmm, anonftpsync on little doesn't bring it in [05:18] zulcss@gmail.com is "zul" on here, right? [05:18] To update to hoary, all I have to do is change all the 'warty's to 'hoary's then 'apt-get dist-upgrade' ? [05:18] mroth: yes [05:18] Yomic: HoaryUpgradeNotes in the wiki [05:18] in the repositories* [05:18] Okay, thanks. [05:19] mdz: seen him around lately [05:19] mroth: he was here earlier, but is gone for the night [05:19] oh for christ's sake [05:19] mdz: righteo, thanks === stuNNed_ [~stuNNed@adsl-068-209-149-165.sip.msy.bellsouth.net] has joined #ubuntu-devel [05:20] mdz: sorry - I skillfully broke the main archive while setting up the test one; it's syncing now, I'll shout when it's done [05:20] elmo: I'm glad you didn't go to sleep :-) [05:23] mdz: should be good [05:23] syncing little [05:25] elmo: should be clear for livefs builds as well? [05:25] I don't know where they point [05:25] rockhopper's in sync too [05:25] so yeah [05:26] err, auckland, blah === stuNNed [~stuNNed@stunned.user] has joined #ubuntu-devel === ironwolf [~ironwolf@c-24-6-169-124.client.comcast.net] has joined #ubuntu-devel [05:40] In the update to hoary I recieved two 404 errors: [05:40] Failed to fetch http://ubuntu-bp.sourceforge.net/ubuntu/dists/hoary-backports/main/binary-i386/Packages.gz 404 Not Found [05:40] Failed to fetch http://ubuntu-bp.sourceforge.net/ubuntu/dists/hoary-backports/universe/binary-i386/Packages.gz 404 Not Found [05:41] Kamion: hrm.. I was thinking of moving the 2GB fsimage over to an i386 box, running it there, and then pushing it back... I suppose we could just run the 32-bit i386 binary given the right motivation... [05:41] elmo: livecd rootfs build points at jackass... === elmo runs aways screaming [05:43] lamont: because of the md5 mismatch crap or just 'cos? [05:44] because all the other chroots on the buildd's do too. [05:44] and _that's_ because of the timing issue on the mirror push vs w-b freeing up packages [05:45] yeah, I know why buildds do it, just not sure why live rootfs would need to, but meh, doesn't matter [05:47] the truthful answer is that the same script built the chroot for the livecd fs build... [05:48] and ISTR we had reasons for not wanting the buildd machines hitting a.u.c. if it should change, it's not a big deal [05:50] If I make a script for upgrading to hoary, could you guys put in in the sources or maybe somewhere on the page? [05:52] just something that changes all the instances of Warty to Hoary in the sources list, and runs apt-get update and apt-get dist-upgrade [05:52] something like that should be handled by a competent admin really [05:52] or at least someone who has read over the doc once or twice and is comfortable watching it [05:52] some things shouldnt be scripted, imo [06:00] I want an Ubuntu business card. [06:06] morning === robtaylor_ [~robtaylor@217.204.121.82] has joined #ubuntu-devel === Hayden [~h@203-219-130-10-qld.tpgi.com.au] has joined #ubuntu-devel [06:26] fabbione: removing that ipmi patch seemed to fix my laptop [06:27] Keybuk: seems or it fixes? [06:27] well, it's behaving normally now [06:27] which I guess counts as "fixed" :) [06:27] ok thanks [06:31] -stolen-from-head_053-ipmi_unhandled_message_counting [06:31] this one right? [06:31] yup [06:32] ok [06:32] can you give me a short descr of the problem? so i can include it in the changelog.. [06:35] Missed interrupts causing HP laptops to not correctly set the initial number of fans after boot [06:36] thanks [06:37] done [06:41] cool, thanks :p [06:43] no problem [06:48] right, time to crash I think [06:48] or at least veg for a few hours, and try to push my body clock round to real hours a bit === farruinn [~nathan@cpe-69-201-13-153.twcny.res.rr.com] has joined #ubuntu-devel === zenrox [~zenrox@wbar7.sea-4-12-028-223.dsl-verizon.net] has joined #ubuntu-devel === mroth [~mroth@c-24-7-68-186.client.comcast.net] has joined #ubuntu-devel === infinity watches what he hopes is his last php4 build of the week (month?) [07:26] Not holding my breath, mind you. [07:26] Pah, php4's a doddle. ;) [07:27] Trying to fix every (real) bug I know of in one upload is always a curious challenge. :) [07:28] ... and bound to fail. [07:28] Well, it fixes every bug you know of, and introduces three tha tyou don't. [07:28] Generally that's the issue, yes. :) [07:28] Though I tend to catch several new bugs on the way too, so I think I still end up ahead. [07:28] Somehow. [07:29] I'm working on fixing bugs I don't know about at the moment. [07:29] Always the worst part. :) [07:29] Especially since you spent all that time creating those bugs in the first place, only to go remove them later. [07:30] Heh. [07:30] No one appreciates the effort that goes into writing buggy software anymore. === infinity digs back into his. [07:30] Oh, actually, looks like it's home-time. [07:31] daniels : You around tomorrow morning?... I may need a mess of stuff sponsored at some point. [07:31] mdz: i'm just about to head out; i'll be back at about 1400 UTC. i'll theoretically be reachable on my mobile, but it would be good if it could wait. i'll be a good 2h from connectivity even if urgent stuff pops up. [07:31] infinity: yeah, SMS/call if I'm not awake [07:31] daniels : Will do. === infinity kisses Monash's fair network goodbye for the day. === lamont sleeps [07:32] array 7 candidate is up, please test [07:32] daniels : Oh, that reminds me. [07:32] inf Oh? [07:32] mdz: 20050317? [07:32] daniels : Bring me installer/live CDs to test on my shitty old laptop when you hook me up with the hard drive. [07:33] daniels: daily/20050317 [07:33] (No burner until we unbox the amd64 beast) [07:33] daily-live/20050317.2 [07:33] daily/current and daily-live/current [07:33] inf Sure. [07:33] daniels : Danke. === dholbach [~daniel@td9091c17.pool.terralink.de] has joined #ubuntu-devel [07:35] goooood morning [07:36] mdz : You're welcome to reassign anything even vaguely httpd (libapache*, apache{,2} php, etc) to me, unless thom really objects. I'm digging through every seriously-irritiating rc-ish bug I can think of in the whole apache dependency chain right now. [07:36] s/httpd/httpd-related/ [07:36] and loving every minute of it, no doubt [07:36] The worst offender being a completely broken php4, of course. [07:37] dilinger : I pretend to enjoy apache2. The rest drive me near suicide, but that's nothing new. ;) [07:38] daniels: don't go anywhere [07:38] I just did a live CD test and X configuration failed [07:39] define 'failed' [07:39] i.e. what machine is it on, what method is it expected to use, how did it get configured, logs, configuration [07:39] daniels: it's the BusID bug from ilke 3 months ago, returned [07:40] AGAIN === daniels frowns. [07:40] what directory did ya guys stick the kernel headers in? [07:40] Quarupt: support questions in #ubuntu [07:41] No one knows there [07:41] mdz: if you could re-run with DEBUG_XORG_PACKAGE="developer", that would be much appreciated [07:41] Quarupt: then wait; this is not a support channel (not even a second-tier one) === srbaker [~srbaker@blk-137-92-118.eastlink.ca] has joined #ubuntu-devel [07:41] mdz: if [ "$1" = "reconfigure" ] || [ -n "$DEBCONF_RECONFIGURE" ] ; then [07:41] this is not triggering, from xserver-xorg.config.in [07:42] Just tell me where the stupid header files arre its a devel question [07:42] Quarupt: I will not explain again [07:42] Im asking here because there not in the default location [07:43] mdz i dun care about your power trip, this is a dev channel im asking dev questions [07:43] Quarupt: there are developers here who are trying to work, and you are being a nuisance [07:43] I am asking you to take your questions to a more appropriate forum [07:43] Please dont speak to me anymore [07:44] The headers are not in /usr/src thats the default, so where are they? [07:45] Quarupt : 'apt-cache search kernel headers', and kindly stop being so abrassive. [07:45] Quarupt: stop being impolite and use apt-file, dpkg -c, locate, find or whatever to find out - since you're asking developer questions, you should know [07:46] no i mean on my machine im not looking for new headers [07:46] screw this ill ask in Debian-dev === Quarupt [~quar@c-67-183-254-78.client.comcast.net] has left #Ubuntu-devel [] [07:47] I bet they'll love him there. [07:47] I don't see him there. [07:48] daniels: we cannot continue with these 4-hour test cycles [07:48] He's probably asking in xchat-dev how to join a new channel first. [07:48] mdz: four-hour test cycles? [07:48] daniels: where you upload a new xorg, we wait for it to build, build CDs, I download them, and test them [07:49] mdz: if you can get the dpkg-reconfigure thing run with DEBUG_XORG_PACKAGE="developer", or get xserver-xorg.config run with sh -x (i.e. change its shebang), I can tell you exactly where the problem lies [07:50] I'll have your debug output in a moment\ [07:50] mdz: either $1 isn't "reconfigure", DEBCONF_RECONFIGURE isn't set, XORG_FORCE_PROBE is set to some value other than "yes", or db_reset is not doing its thing [07:50] thanks [07:50] $1 is never "reconfigure" in postinst [07:51] this is config, not postinst [07:51] XORG_FORCE_PROBE is not set [07:51] config has code to run db_reset on every xserver-xorg template if -n "$RECONFIGURE" [07:51] and, in turn, RECONFIGURE=true if $1 = reconfigure or -n $DEBCONF_RECONFIGURE [07:52] xserver-xorg postinst warning: overwriting possibly-customised configuration [07:52] file; backup in /etc/X11/xorg.conf.200503170650 [07:52] dexconf: error: cannot generate configuration file; [07:52] xserver-xorg/config/display/default_depth not set. Aborting. Reconfigure the [07:52] X server with "dpkg-reconfigure xserver-xorg" to correct this problem. [07:52] xserver-xorg postinst warning: error while preparing new Xorg X server [07:52] configuration file in /etc/X11/xorg.conf.dpkg-new; not attempting to [07:52] update existing configuration [07:52] morning all [07:52] I typo'd the variable name, so I don't have the debug output, but that's stderr [07:53] daniels: I jumped the gun in blaming the BusID thing; it's just not updating the configuration file _at all_ [07:53] so it's the one generated on the buildd [07:53] both the busid and everything else [07:53] morning mdz === daniels stares at default_depth. [07:53] hey sabdfl [07:53] sabdfl: g'morning [07:53] sabdfl: having fun? [07:54] mdz: sh -x'ing postinst is onw the interesting bit [07:54] actually, no it's not [07:54] daniels: yes, I'm booting the live CD again, and trying to edit the script during the 10-second window, again [07:55] stand by [07:55] good morning fabbione, sabdfl [07:55] I refuse to believe that this is specific to the live CD [07:55] did you test dpkg-reconfigure on these packages? [07:55] mdz: humour me -- edit xserver-xorg.postinst.in, look for if [ "$RET" = "false" ] ; then\ndb_set xserver-xorg/config/display/default_depth $DISPLAY_DEPTH\nfi [07:55] mdz: change $DISPLAY_DEPTH to $DEFAULT_DEPTH [07:56] and build new X packages and new CD images again? [07:56] not tonight [07:56] mdz: yes. tested dpkg-reconfigure and a fresh install with all of a) forced ddc failing, b) forced ddc succeeding, and c) forced laptop succeeding on amd64 and i386; tested upgrades with my standard configuration [07:56] mdz: so I assume there's no way you could edit it before it gets invoked [07:57] xserver-xorg.postinst.in is not a part of the installed package, afaik [07:57] s/.in$// [07:58] daniels: I cannot spend more time on this [07:58] we are going to need to revert, as I said in the first place [07:59] we just blew 5 hours because of this [07:59] and the day after the milestone was due is no time to be debugging the scripts [08:00] mdz: as I said, it works fine here [08:01] it breaks the live CD completely, trust me [08:01] my current bet is on extreme weirdness with the live CD's cdebconf, et al [08:01] the live CD's cdebconf worked spectacularly with 6.8.2-2 [08:01] yes, and is now broken with it [08:02] we'll revert back to 6.8.2-2 for array 7, as much as I think that a bad idea [08:02] and I'll keep chasing up this cdebconf stuff [08:02] hold on.... [08:03] can't we just do in such a way that X detect that it is a liveCD [08:03] and take appropriate action to explude that kind of code that is "delicate"? [08:03] instead of bouncing -2 -5 no -3.1? [08:03] explude -> exclude [08:03] fabbione: i'm pretty sure that I know how to work around the cdebconf breakage, but I'm not too keen on a four-hour cycle, unless ... [08:04] mdz: is there any chance I can convince you to unpack the iso, make a one-line change, and test that? [08:05] mdz: if so: [08:05] 06:55 < daniels> mdz: humour me -- edit xserver-xorg.postinst.in, look for if [ "$RET" = "false" ] ; then\ndb_set xserver-xorg/config/display/default_depth $DISPLAY_DEPTH\nfi [08:05] 06:55 < daniels> mdz: change $DISPLAY_DEPTH to $DEFAULT_DEPTH [08:05] if not, I'll revert the debconf code to -2 and we'll ship with that === mpt_switzerland [~mpt@185.16.202.62.fix.bluewin.ch] has joined #ubuntu-devel [08:07] i had the feeling i was melting.. it's over 5C [08:09] daniels: we need to roll back [08:09] mdz: ok. if you can do that testing anyway, it would help me hugely. [08:09] we have a milestone to release and this code isn't ready; I'm not going to go through another round of tweaking it [08:10] even if it's academic at this point, we need to do this at some stage, so anything you can do towards that end would be a huge help. [08:12] I need for you to be able to do this testing without me [08:12] i am wget'ing the live cd now [08:12] I cannot be xorg debug proxy on top of the other things I need to do [08:12] unfortunately this takes a fairly long time, even on dsl [08:12] which is why i'm not doing it myself [08:12] daniels: i am going to test with you [08:13] mdz: don't worry.. i will test with daniels [08:13] fabbione: basically, if you have the live CD, just make that change mentioned above to xserver-xorg.postinst before dpkg-reconfigure gets invoked and it should work [08:13] daniels: first i need to see if it is broken here [08:13] daniels: you should be able to use a hoary preview live CD and swap in X [08:14] since you have locally-built packages [08:14] fabbione: it'll be broken unless you have an ati card on 0:5:0 or whatever the buildd has [08:14] mdz: ok.. than i can test :-) [08:14] as soon as archive allows me to rsync === niran [~niran@lucianus.Stanford.EDU] has joined #ubuntu-devel === mirak [~mirak@AAubervilliers-152-1-3-33.w82-121.abo.wanadoo.fr] has joined #ubuntu-devel [08:18] daniels: i have issues to rsync from archive. too many lusers connected [08:18] daniels: let's revert as mdz suggested and i will test with you later. [08:18] daniels: does it sound a good plan? [08:19] daniels: of course only the bits the break [08:19] fabbione: yeah, I'm just in the middle of uploading now [08:19] daniels: not the entire thingy, since i can see from the changelog that some important stuff went in -4 [08:19] i've just kicked xserver-xorg.{config,postinst}.in back to what -2 was [08:19] ok [08:19] sounds good [08:19] md5sums match and all [08:22] daniels, fabbione: emailed casper log showing DEBUG_XORG_PACKAGE=developer output [08:22] mdz: perfect. thanks === BlackHussar [~BlackHuss@dsl081-081-225.lax1.dsl.speakeasy.net] has joined #ubuntu-devel [08:24] mdz: yeah, it's what i thought [08:26] ok.. rsycing now... [08:26] ah damn... [08:27] sparc was just uploading Xorg -5 [08:27] that means another build in a few hours [08:27] yeah, and lots of mirror pain [08:27] given the rapid sequence of -4, -5, -5.1, and then -6 to come reaosnably soon as this code needs testing [08:28] we gambled, and we lost. now we need to play it safe. [08:28] hence -5.1 === d3vic3 [~d3vic3@dumbledore.hbd.com] has joined #ubuntu-devel === Burgundavia [~Burgundav@S0106000000cc07fc.gv.shawcable.net] has joined #ubuntu-devel [08:39] morning d3vic3 === fabbione sighs.... [08:43] ah there it is.. liveCD [08:43] yummy [08:43] fabbione: when do you get up nowadays?! (c: [08:43] stockholm: 6am usually... [08:44] fabbione: but no children yet? that is why we get up so early. [08:44] nope.. no mini-fabbione around .... [08:44] yet [08:44] morning dholbach [08:44] hey d3v1c3 [08:45] hey fabbione [08:45] fabbione: right, so you'll need to unpack the live CD and cloop as explained in LiveCDCustomizationHowto and then make that change to /var/lib/dpkg/info/xserver-xorg.postinst within the cloop, then rebuild it all [08:45] fabbione: you need a fair bit of disk space and a LOT of ram (or a lot of swap) [08:45] fabbione: i am going to riccione on saturday, playing beach volleyball! [08:45] daniels: ok don't worry.... [08:45] daniels: can you just only send me the change again via email? [08:46] daniels: it will take a little while before i will get there [08:46] fabbione: sure [08:46] fabbione: that's fine [08:46] stockholm: riccione? in march? [08:46] are you on somekind of crack? [08:48] daniels: i have ram and disk space... so that's not an issue [08:49] fabbione: awesome ... email sent [08:50] fabbione: there are allmost 20C now! [08:50] while here we had 20cm snow over night. [08:52] fabbione: ok, i've gotta go now, already an hour late for dinner with gf's parents and i'm too exhausted to think any more anyway [08:52] fabbione: i'll be back a bit after 1400 utc, have mobile on me if urgent [08:53] stockholm: ehhee [08:54] daniels: ok don't worry. [08:54] daniels: i will sms you if there are problems [08:56] whoo, -12C [08:56] and snowung [08:56] *ing [08:57] and 10-25cm of snow [08:57] Hannes_: where is that? [08:58] Pori, finland [08:59] is that north of wasa? [08:59] south of [09:00] ~200km [09:00] on the coast [09:00] ok, not *that* far away. [09:01] no [09:01] in the middle of vasa and bo (turku) === tritium [~rimbert@12-202-90-180.client.insightBB.com] has left #ubuntu-devel ["Leaving"] === carlos [~carlos@69.Red-80-33-181.pooles.rima-tde.net] has joined #ubuntu-devel === doko__ [~doko___@dsl-084-059-044-184.arcor-ip.net] has joined #ubuntu-devel === GheRivero [~ghe@hiscpdprx01.upsa.es] has joined #ubuntu-devel === medwards_ [~chatzilla@adsl-64-175-14-61.dsl.snfc21.pacbell.net] has joined #ubuntu-devel === dand [~dand@gw.datagroup.ro] has joined #ubuntu-devel === Seveas [~seveas@ksl403-uva-132.wireless.uva.nl] has joined #ubuntu-devel === medwards_ [~chatzilla@adsl-64-175-14-61.dsl.snfc21.pacbell.net] has left #ubuntu-devel [] === medwards_ [~chatzilla@adsl-64-175-14-61.dsl.snfc21.pacbell.net] has joined #ubuntu-devel === jordi [~jordi@115.Red-213-96-69.pooles.rima-tde.net] has joined #ubuntu-devel [09:48] Is it appropriate to ask here about the LiveCD construction system? === mvo [~egon@ip181.135.1511I-CUD12K-01.ish.de] has joined #ubuntu-devel [09:56] hey mvo [09:57] medwards_: http://www.ubuntulinux.org/wiki/LiveCDCustomizationHowTo [09:57] hi dholbach, morning all [09:57] hey mvo [09:57] hey mvo [09:57] amu: i get an error starting up kdm [09:58] fabbione: apt-get install kubuntu-default-settings [09:58] amu: "Cannot open theme file /usr/share/apps/kdm/themes/kubuntu" [09:59] amu: it should probably installed automatically or as Depends: [09:59] it's anybody working on it? === martink [~martin@pD9EB3B07.dip0.t-ipconnect.de] has joined #ubuntu-devel [09:59] hi fabbione, hi amu [10:00] array-7 is not out yet? can I help with testing candidate? [10:00] fabbione: yep, dependswas added [10:00] mvo: liveCD is borked and we are fixing it [10:00] it's a problem with X [10:01] much much better :-) [10:01] amu: it looks good [10:02] fabbione: install is ok? should I test? or is it already blessed? [10:02] mvo: please test the install [10:02] more test is always good === mvo is rsyncing [10:04] fabbione: ohh no. i'm relying on the livecd :P though i'm using a much older snapshot and it seems to work [10:06] how can I disable being forced to go through the entire Xorg configuration 3 times whenever the packages are upgraded? I'm getting real tired of hitting escape === stub [~stub@dsl-246.248.240.220.dsl.comindico.com.au] has joined #ubuntu-devel [10:13] sorry jane, do you have one of my emails in which i did this calculation before? [10:13] ops === koke [~koke@rm-001-26.serve.com] has joined #ubuntu-devel [10:26] Kamion, mdz: i have a question for you with regard the powerpc kernels. [10:27] Right now, they ship a .coff kernel, which is between 1 and 2 MB big, multiplied by the 6 powerpc flavours. [10:27] Debian removes this file. [10:28] what is it used for? [10:28] i believe that with the initrd-kernel concept, it is not only not usefull on any ubuntu supported hardware, but additionally it will not even work, not having the initrd. [10:28] Treenaks: it was for pre-yaboot/quik booting of oldworld powerpc through the serial console OF prompt. [10:29] Treenaks: i doubt it has ever been used in the last 3-6 years, and the mkvmlinuz support allows to generate the .coff from the vmlinux kernel and include the initrd. [10:29] svenl: which nobody does nowadays, because of yaboot/quik [10:29] Treenaks: exact. [10:29] Treenaks: fabbione feels uneasy removing it though, this near the hoary release. [10:30] Treenaks: but it would save around 10MB on the powerpc iso, so ... [10:33] which is why i ask Kamion or mdz about it, Kamion as powerpc porter or whatever, and mdz because he mentioned the powerpc iso space limit. === psy_ [~psychic@83.149.84.61] has joined #ubuntu-devel [10:35] hi [10:36] does anyone know how you should use gettext in combination with libglade? [10:38] psy_: the guys in #gtk+ on irc.gnome.org probaly know more about it [10:39] :) [10:39] ty [10:39] de rien :-) === mako [mako@micha.hampshire.edu] has joined #ubuntu-devel === stockholm [~andi@petrus.schuldei.org] has left #ubuntu-devel [] === Simira [~simira@56.80-202-210.nextgentel.com] has joined #ubuntu-devel === pitti [~pitti@dialin-145-254-190-096.arcor-ip.net] has joined #ubuntu-devel [11:00] Hi guys [11:00] hi pitti === seb128 [~seb128@ANancy-151-1-37-88.w83-196.abo.wanadoo.fr] has joined #ubuntu-devel [11:02] hi seb128 [11:03] Hi seb128 [11:03] hey [11:03] seb128: I know what's wrong with g-vfs, I found the bug :-) [11:03] seb128: (wrt adding harddisk partitions to fstab) === Cym [~zero@dialup-4.246.102.84.Dial1.SanJose1.Level3.net] has joined #ubuntu-devel [11:04] pitti: oh, cool [11:04] pitti: what is it ? [11:04] infinity: oddly, i have no objection :-) [11:05] seb128: initially user_visible is 1, but then gvfs calls a hal_modify_drive (or so) function which sets it to 0 [11:05] hi pitti [11:05] hey seb [11:05] morning thom [11:05] seb128: invalid drives work because there is no hal drive [11:05] morning folks [11:05] seb128: but valid partitions can't be seen by hal, so the policy sets it to invisible [11:05] seb128: I'm fixing hal for this and also fix gvfs to fix the crash when updating fstab [11:05] Hi fabbione, how are you [11:06] pitti: busy :-) [11:06] pitti: k, thanks [11:09] fabbione: surprise :-) [11:09] pitti: do you have anything for me today? [11:10] fabbione: I worked offline until now (modem), I did not read mail yet; but not right now [11:10] fabbione: you prepare a new kernel? [11:10] ok [11:10] yeah working on it.. but it won't be uploaded before Array7 is out [11:11] see you later [11:11] morning [11:12] ogra: hey dude [11:12] Hi ogra === rubenv [~lambda1@kotnet-148.kulnet.kuleuven.be] has joined #ubuntu-devel [11:18] seb128, pog [11:18] pong even [11:18] hi [11:18] :) [11:19] should I ping you about the xscreensavers issues ? [11:19] yup [11:19] i'll start with them today again.. [11:20] a sec, I've one [11:21] https://bugzilla.ubuntu.com/show_bug.cgi?id=7658 === ogra looks [11:23] hmm, wondering how i can reproduce that for testing..... [11:23] mvo: have you talked to jdub and whoever else needs to decide about nano? [11:24] seb128, thanks :) [11:24] jordi: not yet, everyone is busy with array-7 [11:24] mvo: that is so minor :P [11:24] ogra: np :p [11:24] hey jordi [11:24] hi seb [11:25] jordi: not too desapointed by the maintainer upload for your almost new package ? :) [11:25] jordi: compared to get magnificent nano editor :P [11:25] seb128: so happy :) [11:26] seb128: now I wonder if the suid root -> sgid mail fix I introduced in evo will persist when he ploads 2.2 [11:26] fabbione: just finished security review, no new kernel stuff today [11:26] jordi: ah ah [11:26] pitti: thanks [11:26] hey, postgresql 8 in experimental [11:27] thanks elmo/Kinnison [11:27] cool [11:28] do we have an upload freeze for the new array ? [11:28] or that's ok to upload ? [11:29] seb128: freeze i think [11:29] k [11:29] it also depends what you need to upload [11:30] I don't need anything [11:30] there is some new versions for GNOME stuff, no hurry [11:30] (ie: glade2) [11:31] probably better to wait after Array7 [11:31] yep [11:31] thanks [11:31] no problem === fabbione starts to cook some food [11:32] mvo: there are further fixes in CVS. === lupusBE [~lupus@dD5E03F5F.access.telenet.be] has joined #ubuntu-devel [11:35] ping jdub [11:35] jordi: let's see if jdub is around === ups [~ups@61.246.163.3] has joined #ubuntu-devel === jinty [~jinty@haydn.debian.org] has joined #ubuntu-devel [11:41] hoi doko__ [11:42] jinty: hoi :) [11:42] hey sivang [11:42] looks quiet in here [11:43] jinty: I guess everybody are busy or soemthing [11:43] hey jinty [11:43] jinty, nah [11:43] hola all [11:44] so there is life [11:44] jinty: schoolbell in the works ... ;) [11:45] great, thanks, just had a mail on the list asking which repository to use [11:46] now I can reply [11:53] mornin fabbione [11:54] fabbione: how is the temperature in DN nowadays? [11:54] Kamion: "Looking for keymap to install:\nNONE" after the reboot to stage2 in the installer shouldn't be NONE, right? [11:54] hi Simira [11:55] Simira: it's 2 days that is around 6/7 C === rjo [~jordens@rjo.developer.debian] has joined #ubuntu-devel [12:11] Kamion: are you around? === marcin_ant [~marcin@www.e-dev.tele2.pl] has joined #ubuntu-devel === Fablive [~ubuntu@port49.ds1-van.adsl.cybercity.dk] has joined #ubuntu-devel [12:14] fabbione: please do go ahead and remove vmlinux.coff; I can think of no reason to keep it [12:14] Kamion: can you please build livecd with xorg 6.8.2-5.1? [12:14] mvo: yeah, I don't know what that is, sorry [12:15] Kamion: we need it for Array 7 [12:15] 6.8.2-5 was borked [12:15] yeah, just a sec [12:15] Kamion: ok. i can remove the coff thingy.... i have no issue with that other than breaking something :) [12:15] I only just woke up [12:15] Kamion: sure. let me know when i can rsync for testing [12:15] daniels: why is it -5.1 and not -6, BTW? [12:15] fabbione: how wonderful! [12:15] Kamion: please also a kubuntu run :) [12:16] fabbione: svenl's right there, it's an old thing for oldworld [12:16] daniels: the fractions are generally security updates [12:16] pitti: because he has -6 ready somewhere else [12:16] and unuseful [12:16] ok [12:16] Kamion: ok. i am just a bit conservative at this point in time [12:16] Ubuntu live CDs kicked [12:16] Kamion: wonderfull [12:16] fabbione: I think the space saving would indeed be very useful [12:16] amu: after I'm done with Ubuntu, sure === Kamion will kick install CDs too now [12:17] Kamion: done [12:17] svenl: ^^ === fabbione -> food.. brb === d3vic3 [~d3vic3@dumbledore.hbd.com] has joined #ubuntu-devel [12:34] re [12:37] Kamion: I have a "X failed to start" in my test-install of the current cdimage. I guess that's a known issue already (because of the b0rked X)? [12:37] mvo: mostlikely yes [12:38] mvo: I guess ... [12:38] it's all rebuilding at the moment [12:40] shout when it's ready :) [12:42] fabbione: ok, thanks. [12:42] fabbione: need to investigate the gigabit ethernet issue now, will keep you informed, and fix the hotplug thingy. [12:43] svenl: i would also like to understand what a user is supposed to do with the mkvinitrd thing [12:43] ok.. we ship the files.. and ? [12:43] is it something that happens automatically or does the user have to build his own thing [12:43] fabbione: decide he would like to install ubuntu on a prep box, even if you don't support it officially ? [12:44] fabbione: it goes in a kernel-package postinst hook [12:44] Kamion: yes.. i got that and i can see it [12:44] fabbione: so you can ship yaboot-less one file netboot images for powerpc, especiall for ibm-rs6k, whose firmware is buggy and can netboot only one file, thus no yaboot and separate kernel and initrd. [12:45] Kamion: the mkvmlinuz in hoary (12) does not have the postinst hook magic though, and maybe it is better so. [12:45] svenl: yeah, we aren't going to change that now I think, it can wait until post-hoary [12:45] Kamion: definitively. [12:45] svenl: ok, so basically we ship these extra files as helper, but we don't use them directly (yet) [12:45] Kamion: especially as ubuntu has no official support for non-yaboot powerpc. [12:45] fabbione: exact. [12:45] svenl: how big are they? [12:46] fabbione: we could build netboot chrp and prep images though. [12:46] we killed the 1~2Mb coff thingy.... [12:46] the extra files are tiny AFAIK [12:46] fabbione: a couple of .o files, let me check. [12:46] 328k uncompressed for debian 2.6.10. [12:46] last 2 questions... is the tool to create such image aware of the .o location? [12:46] so maybe 100K, don't kno. [12:47] fabbione: you can pass it by -d option (which is done in debian-installer), but it will also locate it from the kernel path. [12:47] since i move them to linux- instead of kernel- [12:47] fabbione: read the manpage, it is rather complete. [12:47] fabbione: i can provide a patch for that, or you could. [12:47] it hardcodes kernel-image-* [12:47] we'll have to fix that [12:47] Kamion: easy to fix though. [12:47] Kamion: ok. what package is? [12:48] svenl: ok. last question.. can you give me a detailed entry for the changelog? :-) [12:48] # try a default location, then use the current directory [12:48] if objdir=/usr/lib/kernel-image-$release; test -d $objdir; then [12:48] this one, at line 135 or thereabout needs changing, nothing more. [12:49] just for mkvmlinuz support ? [12:49] svenl: yes please [12:49] yes, the above line is the only one needing change. [12:49] yes.. in which package? [12:49] mkvmlinuz. [12:49] /usr/sbin/mkvmlinuz [12:50] its a shell script. [12:50] ok [12:50] svenl: i want the changelog entry for the kernel package :-) [12:50] will you make it version 12.1 or something such as to not introduce version skew with debian later when you sync ? [12:50] svenl 12ubuntu1 [12:50] we have a standard version scheme [12:52] ogra: yay, fixed the fstab bug [12:54] Kamion: are you ok if i upload it now? [12:54] (not the kernel... [12:54] mkvmlinuz) [12:54] pitti: you rock :) === massarino [massarino@ppp-62-10-141-207.dialup.tiscali.it] has joined #ubuntu-devel [12:55] seb128: you too :-) [12:55] :) [12:55] #ubuntu-it [12:56] fabbione: ok, cool. === massarino [massarino@ppp-62-10-141-207.dialup.tiscali.it] has left #ubuntu-devel ["Sto] [12:56] fabbione: i would go ahead, nothing really uses it anyway, so ... [12:56] svenl: that is not the issue. we are building CD [12:56] for Array 7 [12:57] i know nothing uses it === decko [decko@decko.user] has joined #ubuntu-devel [12:57] Kamion: does ubuntu's base-installer already not have the mkvmlinuz call ? [12:57] but each package that goes in now, might delay testing [12:57] let's just wait [12:57] it is more wise [12:58] fabbione: yep, it is not needed anyway right now. [01:03] pitti, WOOT === ogra applauds pitti [01:04] :) [01:09] keep some applauds for this afternoon, he's going to squash the libgnomecups bug :p [01:10] brb === pitti [~pitti@dialin-145-254-190-096.arcor-ip.net] has joined #ubuntu-devel === Goshawk [~Goshawk@host109-109.pool8251.interbusiness.it] has joined #ubuntu-devel [01:13] fabbione: mkvmlinuz> sure, it's not on the CD [01:13] svenl: not for any subarches I care about, and mkvmlinuz is not on the CD, so [01:13] ok [01:13] how is it going with the CD's? [01:14] install CDs building, live cloops are done [01:14] rocking [01:14] however I'm now in the pub so all is much better :) [01:14] ahhhh [01:14] ehhehehe [01:14] Kamion: what time is at your place? 13:14? :-) [01:14] beer++ [01:14] dholbach: 12:14 [01:14] Kamion: oh yes... i see :-) === trukulo [~mzarza@26.Red-81-45-239.pooles.rima-tde.net] has joined #ubuntu-devel [01:15] I generally work with Kinnison on Thursdays, and he wanted to attend his meeting from the pub :) [01:15] german craftsmen say "Kein Bier vor vier!" (no beer before 16:00) - but i won't stop you ;-) [01:16] sjoerd: here? [01:16] Kamion: pub within wifi distance of your house? [01:16] nice [01:16] dholbach: in dutch it's "Bier uur" (sounds/looks like "Vier uur") ;) [01:16] dholbach: and what about the "Elferzug"? :-) [01:16] thom: nope, pub with free wifi [01:16] ah, even better [01:16] dholbach: here we talk about the sun being over the yard-arm (i.e. after 12:00) [01:17] Kamion: sounds much better to me :-) [01:17] #u-devel - where you can learn invaluable cultural facts :-) [01:17] pitti: quite luckily i live far away enough from cologne to NOT know what the elferzug thinks about it :-) [01:19] aha, and the bandwidth is better here than at home, too [01:19] Kamion: btw, yesterday I tested the PowerPC DVD, it does not boot at all. does it work for you? [01:19] Kamion: IBM pseries and netbooting ? [01:20] pitti: never tried it [01:20] pub with wireless, I wonder... :) [01:21] svenl: no idea; mkvmlinuz is in the archive though, so theoretically doable [01:21] Kamion: like said, netboot pulled it in. [01:22] mvo: there is a bug open about improving gksu dialog: #7385. I don't know if you are interested by it, feel free to Cc you and comment if you are :) [01:23] svenl: right [01:23] has kernel-team mail just dropped like crazy, or are there no kernel bugs? [01:23] cc: the kernel is officialy Bug Free [01:23] Kamion: not that important, since you are not pulling in mkvmlinuz 13. [01:23] Treenaks: or is bugzilla broken :) [01:23] the kernel does NOT have bugs [01:24] it's all fault of your buggy hardware [01:24] cc: kernel-bugs@ now [01:24] fabbione, 2.6.10 ? [01:24] pitti: I'll give the DVD a go when I get a chance, but it'll take a while ... [01:24] Kamion: oh, didn't realise. someone should've posted to kernel-team. i will now :P [01:24] Kamion: is install completed? [01:24] I do have a DVD reader in this laptop, just not a burner [01:24] seb128: thanks, I'll have a look [01:24] fabbione: yeah, just done === fabbione rsync [01:25] Kamion: i386 dvd works fine btw (just tested the live part so far) [01:25] mvo: thank you [01:25] mvo: can you test too please? [01:25] daily 20050317.1 [01:25] pitti: cool. wonder what broke with powerpc [01:25] pitti: thanks for testing that though [01:26] is it just me, or do other people also get apt-get authentication errors? [01:26] fabbione: rsyning now [01:26] elmo: can you sync lsof 4.74.dfsg.2-1 (in incoming currently) [01:26] pitti: there's still a low but worrying frequency of those [01:26] Kamion: for ppc, after pressing "c" for CD-ROM boot, I just get a small error message and are immediately thrown back to OF [01:26] elmo: (yes, please blow away the ubuntu changes) [01:27] fabbione: if you have the time, could you maybe have a look at http://ubuntu.gplan.info/fuse - the new version changed slightly and i'm not sure if it needs additional changes [01:28] dholbach: sorry.. not today. please remind me tomorrow [01:29] fabbione: alright... will do and prepare python-fuse for now [01:30] guys can you please hold the uploads? we are trying to get Array7 out... [01:30] okay [01:30] pitti: oh, powerpc didn't build in the last run [01:31] Kamion: I have an older version (dholbach: which one?) [01:32] pitti: 20050312 looks nominally OK [01:32] dholbach: which version did you send me? [01:32] has anyone tested xorg 6.8.2-5.1 with the cds? [01:32] daniels: they're still building [01:32] Kamion: for downloading the DVD I tunneled IP-over-snailmail :-) [01:32] heh [01:33] Kamion: ok [01:33] daniels: i did it locally [01:34] daniels: upgrading the livefs from 5 to 5.1 [01:34] Kamion: I have 20050308 [01:34] and i did send you the sms :-) [01:34] ok, i'll hang around until the new cds are built, and i can rsync and test the live cd [01:34] yeah, just want to be sure [01:34] so do i [01:34] upgrading isn't the same [01:34] last time i went to sleep before something was finished i got woken up a couple of hours later and didn't end up getting back to sleep [01:34] yah [01:34] install-cd is here === mvo burns [01:35] well, we'll find out [01:35] I'm rsyncing, but I won't be able to actually test for a couple of hours [01:36] Kamion: is the live up? [01:37] fabbione: yes, just [01:37] daily-live 20050317.3 [01:37] is current linked to it? [01:38] ah there it is [01:38] come down baby === fabbione sucks from a fat pipe [01:40] for some reason , I'm getting a whopping 14kB/sec, so I haven't actually finished 0317.2 yet. sigh. [01:43] mmm, my inotify is not working, how can I force the menu to re-read the applications thir without killing the panel?? [01:43] if it's possible :) [01:45] why not just kill the panel? [01:46] IIRC some KDE apps in the systray behave strange after killing it. And maybe the update-notifier [01:47] koke: update-notifier should be fixed (it should just restart when the panel was killed) [01:47] koke: please file a bug if not :) [01:47] mvo: OK, I'll try === fabbione burns the live [01:49] mvo: it's ok. only disappeared kmail and akregator :) [01:51] koke: thanks :) === pitti works offline for a bit, cu later === smurfix [~smurf@smurfix.developer.debian] has joined #ubuntu-devel [01:54] elmo: thanks for getting new libgdamm1.3 through [01:54] elmo: thanks for the nessus sync! [01:55] elmo: thanks for your bank account code.. let the packages for the others :-) === mvo chuckles [01:58] Kamion: is there some way to make ssh grab its password from a pipe/fd? === Simira [~simira@56.80-202-210.nextgentel.com] has joined #ubuntu-devel [02:00] Mithrandir: SSH_ASKPASS? === smurfix [~smurf@run.smurf.noris.de] has joined #ubuntu-devel === macewan [~macewan@ip68-101-19-222.nc.hr.cox.net] has joined #ubuntu-devel [02:01] Kamion: that's not for passwords, just for passphrases, it seems? [02:02] (and I can't put a public key there, since it's an ssh-accessible public svn repo) [02:05] Mithrandir: you sure? ssh calls the read_passphrase() function when replying to a password prompt === pitti [~pitti@dialin-145-254-076-134.arcor-ip.net] has joined #ubuntu-devel [02:05] SSH_ASKPASS=ssh-askpass ssh root@10.5.0.1 [02:05] Password: [02:05] SSH_ASKPASS=ssh-askpass ssh root@10.5.0.1 [02:05] Password: [02:05] (sorry for the double) [02:05] oh, no, it turns off the RP_USE_ASKPASS flag in that code path [02:05] oh well [02:06] yeah [02:06] seb128: bah, jody changed very much in the new libgnomecups, it's not a simple bugfix [02:06] I should whack the hula people to provide a secret key one can use anonymously for accessing the svn [02:07] dunno if you can do it with a keyboard-interactive device [02:07] seb128: what is jody's nick? "jody"? === Safari_Al [~tr@ppp248-98.lns2.adl2.internode.on.net] has joined #ubuntu-devel [02:09] pitti: yes [02:09] pitti: right [02:09] hmm, he's not online [02:09] I looked in #gnome [02:09] /whois [02:09] --- [jody] idle 08:09:57, signon: Thu Mar 3 00:02:18 [02:09] you can probably drop a message in query [02:09] jdub: hey ! [02:10] jdub: https://bugzilla.ubuntu.com/show_bug.cgi?id=7279, do we want this entry in the menu ? [02:11] seb128: no, in fact i was just about to ping you about a few of those [02:11] seb128: cd database, database properties, multimedia systems -> should be killed [02:12] i had trouble killing stuff from the prefs menus, but perhaps recent changes in gnome-menus has helped [02:13] jdub: BTW have you seen the panel update ? :) [02:13] yes, saw your upload :-) [02:14] jdub: what trouble ? adding a NoDisplay=true is not enough ? [02:14] we can also drop the entries [02:14] seb128: wanted to do it in gnome-menus rather than individual packages [02:15] pitti: I seem to have a problme with cdbs-edit-patch, I think it's not applying one of the patches I have on d/p [02:15] sivang: it does not apply patches which come lexicographically _after_ the patch you are editing [02:15] sivang: this is an important feature, not a bug [02:15] anyway, i should go back to bed :-) === fabbione goes live [02:16] pitti: I wasn't suggesting this was a bug, would you care to explain the rationale? [02:16] is there an easy way to determine, if a user is running a KDE or a Gnome environment? [02:16] jdub: I'll mask "cd database, database properties, multimedia systems" for the moment [02:16] doko: not in a particularly sane way, no [02:16] doko: you shouldn't need to [02:16] jdub: ping [02:17] jdub: mewants ubuntu-no mailing list! [02:17] sivang: because the patches that come after the one you are editing are also applied later; so the edited patch must not depend on changes from later patches [02:17] Simira: how about a "no-ubuntu" mailing list! === I-Rock [~ubuntu@port49.ds1-van.adsl.cybercity.dk] has joined #ubuntu-devel [02:17] Simira: requests via email please === kent [~kent@c83-249-58-15.bredband.comhem.se] has joined #ubuntu-devel [02:18] Treenaks: ha ha... would that really be a good idea? [02:18] YAY [02:18] sane or not doesn't matter ;) just want to call the correct email client from OOo evolution or kmail ... [02:18] Kamion: LiveCD is go here [02:18] arch? === Mithrandir sniffs over Simira not being happy with his @ubuntu.no lists. [02:18] jdub: I have done that... two weeks ago [02:18] going to test on the other 2 boxes [02:18] pitti: ah right! [02:18] pitti: nice :) [02:18] bah [02:18] doko: there's no appropriate way to detect [02:18] Simira: i don't have an email from you === jdub has to go back to bed, or will continue to be a zombie for the rest of the week ;) [02:19] not good being a zombie [02:19] jdub: I even sent it on Valentines day!!! === Mithrandir wonders what a zombie jdub would act like, considering his usualy craziness. :) [02:19] jdub: yeah === Simira feels unloved by jdub [02:20] Simira: don't take it personally, he loves only seb128 [02:20] :-) [02:20] Kamion: I just booted the live-cd and I still don't have a german keyboard on the console (X is fine though) [02:21] "still"? [02:21] sivang: but... but... I'm nice! And I want my mailing list! [02:21] Simira: just mail him about it then :) [02:21] pitti: "still" means, got that yesterday too [02:21] *sigh* === Mithrandir hugs Simira === Simira doesn't feel any warm arms around her [02:22] Kamion: otherwise it looks fine [02:23] mvo: did the install work? [02:23] mvo: ok, I'll have to try that out later; probably not an Array 7 blocker, but could you file a bug please? [02:23] fabbione: stage1 finished, stage2 is running right now [02:24] fabbione: is live any good? [02:24] Kamion: sure, not a big issue, I'll file a bug (install seems to have the same problem in stage2) [02:24] 'k [02:25] hm, interesting breakage though [02:25] daniels: just worked fine for my test (X came up with correct keyboard and stuff) [02:25] daniels: read above "I-Rock" [02:25] fabbione: what architecture was that? [02:25] Kamion: i386 [02:25] that's the only one i have here === zul [~chuck@198.62.158.205] has joined #ubuntu-devel [02:26] hey [02:26] LiveCD is go on 2/3 boxes [02:26] thanks guys, goodnight [02:27] gnight daniels [02:27] bye daniels [02:27] night daniels [02:29] night daniels [02:30] seb128: http://bugzilla.gnome.org/show_bug.cgi?id=170673 [02:31] seb128: this is too much for me; maybe we should rather downgrade to libgnomecups 0.1.4 for now [02:32] pitti: utch, want to epoch for that ? [02:32] on several packages ? [02:32] someone was looking for me? [02:32] seb128: hmm, rather not epoch. maybe 0.2+really0.1.4 or so :-) [02:33] seb128: this could require a g-c-m downgrade as well, since g-c-m 0.3 depends on libgnomecups 0.2 [02:33] yeah [02:33] *sigh* [02:33] that kind of suck [02:33] let's see what jody says before [02:33] I'll let some days to upstream to reply on that before going in this way [02:33] seb128: indeed, that was what I wanted to propose :-) [02:34] seb128: downgrading is safe and can be done quickly [02:34] right [02:34] thanks pitti === pitti goes to university to get actual bandwidth [02:34] seb128: np; but no applause today :-( [02:34] :-) [02:34] man, redhat's bugzilla is so sweet [02:34] how ? [02:38] it's fast, doesn't make my eyes hurt, the interlinking stuff is nice, search is actually useful... === rcliii [~rcliii@c-24-10-179-112.client.comcast.net] has joined #ubuntu-devel === Alessio [~Alessio@host239-111.pool8252.interbusiness.it] has joined #ubuntu-devel [02:40] thom: especially the last part is nice [02:41] seb128: I found your brother "Riddell, he broke my KDE-panel" [02:41] thom: how, is there a difference in the search ? [02:41] amu: bah, that's normal for KDE, isn't it ? :p [02:41] amu: that sounds like a t-shirt quote: "Ridell broke my KDE panel" [02:41] seb128: dunno, but it's the only bugzilla i've found that finds stuff that i'm actually looking for :/ [02:41] you search for words [02:41] seb128: no it isnt such easy ;) [02:41] perhaps people put useful bugs in it ? :p [02:42] that's also possible [02:42] ie: nice description with the right words to find stuff :) [02:42] seb128: you mean all the bugs i file shouldn't have "iz gtk boog" as the description?!? [02:42] ;-) [02:43] Treenaks: hehe, those cafepress? [02:43] amu: ask Keybuk :) he has a "seb128" one [02:45] Treenaks: yep saw them, we can order them for all and give them away in .au? [02:45] amu: you could, but I'm not going there :( === seb128_ [~seb128@ANancy-151-1-5-45.w83-194.abo.wanadoo.fr] has joined #ubuntu-devel === mako_ [mako@micha.hampshire.edu] has joined #ubuntu-devel [02:48] Treenaks: you stay so close to me, we could arrange a meeting, and we celebrate the panel day === Goshawk [~Goshawk@host109-109.pool8251.interbusiness.it] has joined #ubuntu-devel === rjo [~jordens@rjo.developer.debian] has joined #ubuntu-devel === jani [~jani@iv.ro] has joined #ubuntu-devel [02:50] hellas jani [02:51] Kamion: ok. 3/3 livecd is GO [02:51] hi dholbach [02:53] fabbione: did you test with my QA doc? :) [02:53] amu: ehm... what QA doc? [02:54] http://www.ubuntulinux.org/wiki/QAtesting [02:55] fabbione: cool, thanks [02:55] pitti been around? [02:55] Kamion: no problem. please hold the images for mdz to approve [02:56] ? [02:56] he's normally happy for me to do Array releases by myself [02:56] Kamion: i think he will test them too [02:56] ok [02:56] well, we'll see how my testing goes, back home now === m0rphx [~m0rphx@p213.54.152.31.tisdip.tiscali.de] has joined #ubuntu-devel [02:59] lamont: missed him by about 20 mins [03:00] grumble === pitti [~pitti@141.30.117.20] has joined #ubuntu-devel [03:00] re [03:00] that's impressive timing [03:02] was it decided that evince replaces xpdf as default? [03:02] mdz was unhappy about making that change at this stage [03:02] amu: just to fill that page, it would take me more time than writing AI [03:03] jani: is it fully featured then? [03:03] It was just my impression at the Friday meeting [03:03] yes [03:03] but see it's still in desktop [03:03] but Kamion explained it so ok [03:05] anyone here with toolchain building experience? === mvo thinks that some kind of progress thing for scrollkeeper would be nice. it takes _ages_ [03:06] mvo: yes! and for ldconfig too [03:07] (ldconfig takes AGES on my P3-600 laptop) [03:07] Treenaks: my test-machine is a p2-400 :p [03:08] mvo: IMHO it should rather be done with nice 19 in the background [03:09] pitti: that breaks when you shutdown immediately after upgrade on a slow machine [03:09] and it seems to try getting stuff from the net :/ [03:09] (and yes, people will do that) [03:11] Kamion: install-cd is fine here (except the console keymap problem). X comes up, sound looks good and X-keymap is fine too [03:14] Treenaks: hmm, right [03:15] Treenaks: however, I assume it's always the same result after desktop installation? Maybe there can be some sort of pre-caching (not for Hoary, of course) [03:20] pitti: also don't think it's a good idea to do it in the background because that's exactly the time when people are most likely to try to use the machine and review its responsiveness [03:20] Kamion: hmm, yeah === ogra [~ogra@p5089D4F8.dip.t-dialin.net] has joined #ubuntu-devel [03:23] Kamion: btw, do your USB devices (WLAN, flash drive, etc.) work after resuming from sleep? [03:24] I believe that's known-broken on powerpc at the moment [03:24] benh has said it's non-trivial [03:24] Kamion: if it happens for other folks as well, then I'd like to upload my workaround [03:25] pitti, great news, so we can close all these hal bugs ? :) [03:25] Kamion: #7619 contains my workaround and it works fine for me for about a week now [03:25] ogra: erm, not all of them, I think [03:25] ogra: I just fixed the "drives in /etc/fstab" don't appear" one [03:26] oh, i thought the eternal restartting of gnome-vfs-daemon too.... [03:26] ogra: oh, that one too, yes [03:26] pitti: the suggestion in comment #2 seems reasonable, yeah [03:26] ogra: but I don't know whether this actually fixes something [03:26] so this should match more then 50% of them [03:26] the "resume script only" one [03:27] pitti: I haven't tried it myself I'm afraid [03:27] pitti, i think the "my CD player starts over and over again" one at least :) [03:27] Kamion: indeed, that's what I'm using for a week now [03:27] ogra: hmm, I doubt that it's this one; it has not anything to do with g-vfs-daemon [03:27] ogra: that's a g-v-m issue [03:27] doesnt it trigger g-v-m ? [03:28] no, hal triggers g-v-m [03:28] hm [03:28] g-vfs-daemon is just responsible for the computer/places/menu magic [03:28] please make it so i can leave a cd in the drive. KTHXBYE [03:29] :) [03:29] oh yes: http://tseng.ath.cx/log/?p=9 :-) [03:29] thom: why would? I enjoy knowing what there is in the cdrw before writing onto it :-)) [03:30] sivang: you enjoy being reminded every 5 minutes? [03:30] thom: EWORKSFORME [03:30] thom: I need a full hal/gvm debugging output [03:30] thom: not actually, hence the :-)) [03:30] thom: http://wiki.ubuntu.com/DebuggingRemovableDevices [03:31] thom: I should haev used probably [03:31] pitti: i'm trying to find a cd that won't annoy me by stealing focus [03:31] thom: turn down the volume :-) [03:31] there is not focus stealing [03:31] mental focus, I assume [03:31] stop the FUD thom :p [03:32] pitti: LOL [03:33] seb128: cd player steals focus [03:33] seb128: just tested it :P [03:33] roooh [03:33] booog === pitti fetches his "don't blame me for GTK bugs" shirt [03:34] pitti: i'm not blaming you for that :-) [03:34] sure :-) [03:34] Another X update, three more rounds of pointlessly debconf-answering every X question in existence. Shouldn't that be fixed by now? [03:34] we had to revert [03:34] thom: however, I'm very interested in the debug outputs, otherwise I can't do anything about it [03:34] Kamion: Ouch. [03:34] smurfix: live CD breakage was more important === smurfix reluctantly agrees with that prioritization === `anthony [~anthony@220-253-31-237.VIC.netspace.net.au] has joined #ubuntu-devel [03:35] pitti: pong [03:36] pitti: yup, running now [03:36] sjoerd: http://bugzilla.ubuntu.com/7641 [03:36] seb128: want a bug filed or will you just fix it? [03:36] sjoerd: this fix should interest Debian as well === HiddenWolf [~hidden@136.54.dynamic.phpg.net] has joined #ubuntu-devel === thom puts money on it not happening this time [03:37] lol [03:38] thom: put it in bugzilla please [03:41] pitti: k, i'll take a look at all the ubuntu stuff for the next package anyway.. [03:42] bbl [03:49] is it just me or is bugzilla hating the world currently [03:50] pitti: jody seems to be interested by #6520, let me know if you have an idea on it :) [03:52] seb128: didn't deal with it yet, I have to catch up on security [03:52] k [03:53] seb128: https://bugzilla.ubuntu.com/show_bug.cgi?id=7793 [03:53] I slacked with security updates for two days now... [03:53] thom: thanks [03:53] seb128: enjoy ;-) [03:53] :p [03:54] jdub: there is a related bug filed by me about naming it [03:55] pitti, ogra: just updated #6002 [03:55] jdub: nev mind, for some reason xchat hadn't been rolling with the new changes [03:55] thanks [03:55] pitti! === Mitario [~michiel@sikkes.xs4all.nl] has joined #ubuntu-devel [03:56] hello everyone [04:00] thom, thanks, the log data looks ok to me... [04:00] Hi Mitario [04:01] ogra, thom: this looks as if your CD-ROM module was unloaded after some time... [04:01] pitti, callout.c:318: Invoking /etc/hal/device.d/40-hal-hotplug-map.hal [04:01] 14:51:59.037 [I] callout.c:330: Child pid 14002 for 40-hal-hotplug-map.hal [04:01] 14:51:59.038 [I] callout.c:173: Child pid 14002 terminated [04:02] what about this, seems to occur more then once [04:02] 14:51:56.619 [I] linux/block_class_device.c:931: Removing volume for no_partitions device /dev/hdc [04:02] this one is the interesting stuff [04:02] mvo, ping [04:02] it occurs about 15 minutes after the CD was inserted [04:02] hey Mitario [04:02] mvo, hi :-) [04:02] hi :) [04:03] mvo, any updates on update-manager? [04:03] Kamion: i need to go to the bank. [04:03] Kamion: i will be back in one hour or so i think [04:03] can you tell mdz when he wakes up? [04:03] ok, all looking good here [04:03] yeah [04:03] perfect [04:03] I have a meeting at 4 [04:03] (one hour) [04:03] Mitario: no, no feedback from cvsmaster. and I tried the import too but it looks like it does not accept my ssh-key [04:03] we should be back more or less at the same time [04:04] mvo, do you get an error? [04:04] later === fabbione & === pitti tests crack-of-the-day ppc live cd === marcin_ant [~marcin@www.e-dev.tele2.pl] has joined #ubuntu-devel [04:08] Mitario: no [04:08] the evolution splash screen that says that this version is not yet stable is still there [04:08] I thought that was supposed to have gone away with 2.2? [04:08] Mitario: I get prompted for a login password [04:08] mvo, ah [04:09] Mitario: so it looks like my key is not yet accepted [04:10] hmm weird, have you contacted the cvsmaster? [04:12] Mitario: not yet, was busy with other stuff [04:12] mvo, ok [04:13] Mitario: will try later [04:14] mvo, ok :) [04:17] Kamion: I think there was a patch for it on evolution-patches that got accepted, so it will probably be resolved in the next release === pitti [~pitti@141.30.117.20] has joined #ubuntu-devel [04:19] 17.3 live CD for ppc rocks === wasabi_ [~wasabi@207.55.180.100] has joined #ubuntu-devel === Nafallo [~nafallo@h170n11c1o1027.bredband.skanova.com] has joined #ubuntu-devel [04:24] mdz: awake yet? === uzul [~sergey@80.254.12.210] has joined #ubuntu-devel === jamin [~jamin@cust-24.241.99.54.cbnstl.net] has joined #ubuntu-devel [04:30] powernowd is screwed again here. I take a look at it. === Sepheebear [~SepheeBea@24-193-111-253.nyc.rr.com] has joined #ubuntu-devel === Kinnison [~dsilvers@haddenham.pepperfish.net] has joined #ubuntu-devel [04:33] Hi guys. Any word on when the jimmac cursor theme will be back? [04:34] its back [04:34] It is? === uzul [~sergey@80.254.12.210] has joined #ubuntu-devel [04:34] its just missing the file to make it default. [04:34] try gcursor [04:34] aah === Kinnison installs [04:35] hmm, mine still look duff === Kinnison will restart X [04:36] Kinnison, logout is enough [04:37] hmm, I'll restart and see if things are solved. [04:37] ogra: didn't seem to do the trick [04:38] my cursor in GDM at least still looks cack [04:38] yeah, gcursor only applys to your session [04:38] can I ask for some advice on: https://bugzilla.ubuntu.com/show_bug.cgi?id=7455 [04:38] ogra: aah; can I make it the default theme overall? [04:38] Kinnison, blame jdub.... industrial engine has a packaging bug [04:39] ogra: *pout* [04:39] but it is known and will get solved...gcursor is only a workaround === Kinnison tries logging in again === Burgundavia pats Kinnison on the head [04:40] Aaah yes; logged in it looks okay. Thanks ever so much guys [04:40] :) [04:40] Burgundavia: I might be a developer; but I'm still a picky user too :-) [04:41] Kinnison: that is good. The day you stop being a picky user, that is the day I find a new distro [04:41] Kinnison, oh ? i thought youre a poet [04:41] ogra: whatever gave you that idea? [04:41] Burgundavia: meep [04:41] Kinnison: :-) [04:41] Burgundavia: pile the stress on why don't you? === Kinnison sobs [04:42] Kinnison: I meant that generally for all devs [04:42] sivang: and that demonstrates that pterm has reverted :-( [04:42] sivang: My right-to-left support is broken :-( [04:42] Kinnison, your jabberwocky recitation in mataro ;) [04:42] Kinnison: oh oops, sorry [04:42] sivang: Not your fault [04:42] did anyone look at my bug or not? === Kinnison glares at the pterm maintainer (who is across the table from me right now) [04:42] Kinnison: I said "Hi Daniel" [04:42] Kinnison: where are you in? [04:43] sivang: I bet Kamion's flat [04:43] lamont: Well; Kamion's back room [04:43] lamont: of a three story house. [04:43] there's 3 floors there? [04:43] yip === Goshawk_ [~Goshawk@host109-109.pool8251.interbusiness.it] has joined #ubuntu-devel [04:44] basement, or am I truly that clueless some days? [04:44] lamont: ground + two floors upwards [04:44] hrmpf. [04:44] well, ground + more is what I remember - kinda assumed total of 2. :-) === Kinnison grins === lamont learns something new every day === Goshawk [~Goshawk@host109-109.pool8251.interbusiness.it] has joined #ubuntu-devel === lamont fetches a set of cd images, goes to get ready to fetch them. [04:46] time for me to go [04:46] Kinnison: nice, so you have like a miniconf there :) [04:46] c'y'all later [04:46] sivang: every thursday pretty much [04:46] Kinnison, ciao [04:47] Kinnison: woo cool === sivang is amazed to find out his net connection is virtually unusable for uploading/downloading files. [04:57] Riddell: are you having download problems from muse ? [04:57] Riddell: I'm getting rideculeous downstream.. [04:58] sivang: my screen session on muse it running fine [04:58] Riddell: argh, then it's my ISP's fault. I can't even use the screen session itneractively [05:01] seb128: can you please review http://muse.19inch.net/~sivan/g-c-m/sivan-gcm-crack.diff ? [05:01] seb128: the code looks fine to me, but now the patch was bloated by update-po [05:03] *COCK* [05:03] huh ? === Nafallo [~nafallo@h170n11c1o1027.bredband.skanova.com] has joined #ubuntu-devel [05:04] thom: ping? [05:04] i needed to swear about my favourite subject [05:04] yes === Seveas [~seveas@seveas.demon.nl] has joined #ubuntu-devel [05:05] thom: am I correct if I say powernowd's init-script was changed for ubuntu12? [05:05] no; the cpufreq detection script was changed === Sym [~zero@dialup-4.246.105.171.Dial1.SanJose1.Level3.net] has joined #ubuntu-devel [05:06] thom: hmm. I try to debug why powernow-k8 doesn't get modprobed. [05:06] muuuu [05:06] Nafallo: sudo sh -x /usr/share/doc/cpufreq-detect.sh and attach the output to the bug [05:06] thom ! [05:06] :-) [05:07] silly question. Is the new array CDs available already, or not yet? [05:07] pitti: k [05:07] and if so, is today's daily safe? [05:09] jordi: no release yet, but some of us tested the dailes and they are mostly fine [05:10] thom: done [05:10] mvo: today's? [05:10] jordi: yes [05:10] http://cdimage.ubuntulinux.org/daily-live/current/ <--- ie, this [05:10] jordi: yes :) [05:10] ok :) [05:12] lamont: you wouldn't have noticed the third unless you were paying attention - this house makes good use of what others would consider roof space [05:12] lamont: although it's somewhat taller than your average two-storey house [05:13] jordi: today's daily will likely be array 7, tests are good so far === srbaker [~srbaker@blk-137-92-118.eastlink.ca] has joined #ubuntu-devel [05:14] Nafallo: so just running /usr/share/doc/cpufreq-detect.sh returns powernow-k8? [05:15] Kamion: great [05:17] thom: I can see nothing wrong with the detection-script. Seems to find me. === Mitario [~michiel@sikkes.xs4all.nl] has joined #ubuntu-devel [05:18] thom: nope. [05:18] thom: We're a laptop\ powernow-k8 [05:19] thom: the init-script tries to load "We're a laptop" then? ;-) [05:21] aaargh, i knew i should fix that [05:21] thanks [05:24] Kamion: could the amd64 scsi-modules-udeb include the i2o drivers as well? [05:25] Mithrandir: erm, guess so, can't check now though [05:25] thom: works when I edited /usr/sbin/laptop-detect not to echo :-). [05:25] Kamion: should I rather file a bug, just? [05:25] Mithrandir: yeah, might as well [05:26] thanks. :) [05:27] lamont: here [05:27] Kamion: how is it going? [05:27] Morning mdz [05:27] hey mdz [05:27] Ugh. lots of issues with gamin right now. :S [05:27] morning folks [05:27] thom: no problem. bug assigned instead of NEEDINFO :-). [05:29] morning mdz [05:30] mdz: morning :-) [05:31] morning mdz === Clint [clint@adsl-69-233-179-235.dsl.pltn13.pacbell.net] has joined #ubuntu-devel [05:32] morning mdz [05:32] argh, why can't I file a bug on scsi-modules-udeb? [05:32] mdz: nice to see the new dpkg with fixed Replaces: :-) [05:32] pitti: yes, hopefully we will find some time to test it before release ;-) [05:32] mdz: I'll do ASAP [05:33] mdz: and we can drop the Pre-Depends again and instead introduce the circular dependency [05:33] mdz: if my local tests work, I upload update packages for broader testing :-) [05:34] Mithrandir: because my bugzilla component-o-matic is a quick hack and doesn't look at the d-i Packages files [05:35] mdz: ok, I just filed it against debian-installer. [05:35] hopefully it won't drown there. :) [05:37] I must have just missed Kamion [05:38] seb128: are you here? === eruin [~eruin@eruin.user] has joined #ubuntu-devel [05:40] mdz: yep [05:42] lunch [05:43] seb128: can you help Jeff with #6172? [05:44] seb128: (the cursor fix) === GheRivero [~ghe@hiscpdprx01.upsa.es] has joined #ubuntu-devel === ironwolf [~ironwolf@c-24-6-169-124.client.comcast.net] has joined #ubuntu-devel === uzul [~sergey@80.254.12.210] has joined #ubuntu-devel === Kinnison [~dsilvers@haddenham.pepperfish.net] has left #ubuntu-devel [] [05:46] re [05:46] thom: nice fix on 7771! :-D [05:47] mdz: good morning [05:47] fabbione: morning, how is array 7? [05:47] mdz: ready to go. [05:47] gooooood on ppc [05:47] mjg59: i think we need to run ifrename during resume [05:47] fabbione: Kamion is satisfied with it? [05:47] mdz: keyboard works great now on live CD :-) [05:47] we were waiting for you to release but Kamion had to go out for an hour or so [05:47] I am rsyncing now [05:47] pitti: great! [05:47] ok, since he is out anyway I will do a quick test [05:47] mdz: we are go for i386 both live and install [05:47] mdz: does he need some help, or is that a "can you see with him to get that fixed now" ? :) [05:48] mdz: Kamion did his round of tests and reported no problems [05:48] seb128: both; it is a non-trivial fix because it uses alternatives and the packaging needs to un-break the alternative [05:48] mdz: there is only one bug on console keymaps, but we consider it a non stopper [05:48] mdz: k, will have a look [05:48] mdz: so everything looks good for A7 [05:48] fabbione: regression from preview? [05:49] mdz: the console keymap is not correct after the selection, but X gets it right [05:49] seb128: currently the alternative points to a nonexistent file and so has reverted to manual mode, due to an upgrade issue some time ago [05:49] it is exactly the opposite problem we had with warty [05:50] Kamion was sure to have fixed it, but apparently it wasn't [05:50] seb128: what I believe we need to do is have gtk2-engines-industrial notice this and switch the alternative back to auto [05:50] and it did show up only on .de keyboards [05:50] seb128: then it should switch itself to the highest priority one as it should be [05:50] mdz: ok [05:51] seb128: we talked about it some in this channel; I can paste you from my log if it would be helpful [05:51] yes please [05:51] fabbione: darn, I didn't test this when I tested the live CD; shall I try this? [05:51] pitti: if you can.. [05:51] and I've not played with the alternatives out of the normal bits before [05:51] fabbione: sure, rebooting now into live CD [05:51] brb === jon1012 [~jon@AMontsouris-151-1-15-69.w82-123.abo.wanadoo.fr] has joined #ubuntu-devel [05:54] the keymap issue is reported as #7790 [05:54] (just FYI) === Burgundavia [~Burgundav@S0106000000cc07fc.gv.shawcable.net] has joined #ubuntu-devel [05:55] ok [05:55] thanks mvo [05:58] mvo: how is the upgrade work going? [05:58] mvo: also I just remembered yesterday that we have not dealt with libgnome2-perl [06:00] mdz: pretty good. I added a comment to #7419 how the removal of ubuntu-desktop can be worked around, I added a debdiff for #7743 (fontconfig upgrade). I can upload after the array-7 release :) === pitti [~pitti@141.30.117.20] has joined #ubuntu-devel [06:01] mdz: about the libgnome2-perl, I can add that as a dependency and upload (I need to look into a synaptic bug anyway). I didn't until now because I wasn't sure if we shouldn't just add libgnome2-perl to the desktop seed [06:01] mdz, fabbione, mvo: .de console keyboard on ppc/live works fine for me; the only regression is that the Apple key does not work like a AltGt [06:02] but all the other keys are correct [06:02] s/AltGt/AltGr/ [06:02] amd64-live looks good [06:02] however, I did discover an ugliness [06:02] mvo: I am not sure either [06:03] mvo: probably the desktop seed, since it should be possible to remove it without removing synaptic [06:03] when using the "Check keyboard layout" without having used the "type a few keys" selector first, you get an error [06:03] relatively easy recovery, though [06:03] smurfix: ^ === bradb [~bradb@MTL-ppp-144647.qc.sympatico.ca] has joined #ubuntu-devel [06:03] mdz: nod [06:04] pitti: Is the correct keyboard name displayed in the first line? [06:04] smurfix: before the bug, it's "Deutsch"; after checking the keyboard, it's "de-latin1-nodeadkeys" [06:04] smurfix: this is ugly as well, btw :-) [06:04] mvo: I am very worried that that frontend has not received sufficient testing, though [06:05] mdz: what frontend? gnome-debconf? [06:05] mvo: yes. how many people are using it? [06:06] mdz: it's around for a long time in debian, I use it for all my work. I don't think it will be a problem. but I agree, we should switch to it fast [06:06] mdz: I can upload a synaptic with that dependency today if you want (I don't think that I can change seeds, can I?) === pitti never saw gnome debconf [06:06] mvo: you can [06:06] pitti: oh, nice === bluefoxicy [~bluefox@pcp484971pcs.whtmrs01.md.comcast.net] has joined #ubuntu-devel [06:07] Hello [06:07] mdz: I would be interessted in your opinion in #7419 (no rush, when you have time) [06:07] Gah. pitti: that doesn't happen on i386 [06:07] mvo: ok, mailed david telling him current CVS seems quite sane (unless you state the contrary), and asking about what's left for 1.3.6 [06:07] smurfix: and on your pb? [06:07] Simply: Should Ubuntu require a very very fast multi-gigahertz CPU to stay out of the 100%+ range of CPU usage? [06:07] pitti, its ugly, but better then terminal for users [06:07] jordi: thanks! [06:08] powerpc-live looks good [06:08] mvo: ok, let's switch to it immediately after array 7 [06:08] pitti: I do not *have* a powerbook at the moment, though I can grab one tomorrow. [06:08] mdz: ok [06:08] PID USER PR NI VIRT RES SHR S PU %MEM TIME+ COMMAND [06:08] 26252 bluefox 25 0 6264 4984 856 R 40.9 0.6 6:46.17 gam_server [06:08] 7675 bluefox 25 0 19452 8888 6384 R 40.5 1.1 72:20.71 gnome-settings- [06:08] smurfix: oh, what happened to yours? [06:08] mvo: I had forgotten about it for a while; we should have done it before array 7 :-/ [06:08] mvo: now you get your release dudes to think about this change :) [06:08] err, only wanted the last 2 lines [06:08] mvo: ubuntu-devel@lists.ubuntu.com/seeds--hoary--0 [06:08] mvo: in any case, the latest test deb should get some publicity so people test it. [06:08] But this is pretty continuous, should these two be using 100% CPU together most of the time while I'm not doing anything in particular? [06:08] Somebody thought my backpack would make a nice addition to his collection. Unfortunately he didn't ask me first. [06:09] jordi: hmmm? [06:09] (mlnet and X have the other 10%, and rhythmbox) === metallikop is now known as kop|gone [06:09] smurfix: bah, what a nice guy [06:09] smurfix: no laptop in it, I hope [06:09] they've been holding 100% CPU usage for a day or so now [06:09] bluefoxicy: please stop joining the chan and pasting stuff like this. use #ubuntu for support [06:09] fabbione: #ubuntu for bugs? [06:09] mdz: Sure there was. :-( :-( [06:09] bluefoxicy: if it is a bug you use bugzilla.u.c [06:09] smurfix: oh no! :-( [06:10] fabbione: does it count if nobody actually ever responds to anything I ask that seems to be a technical issue in #ubuntu? [06:10] bluefoxicy: not all developers are here at the same time [06:10] though they do respond to "How do I ..." questions readily. [06:10] fabbione: well I wanna make sure this isn't normal :o [06:10] mdz: My thought exactly. [06:11] bluefoxicy: open the bug. if it is not a bug, you will be notified by the maintainer [06:11] fabbione: and I already tried the bugzilla; firefox sat there for 5 minutes and d idn't download a single byte of bugzilla.ubuntu.com [06:11] :( [06:11] bluefoxicy: this is the channel to discuss your patch to fix the problem. [06:12] lamont: oh, sorry nota programmer? [06:12] mdz: jordi is working with upstream to get a nano with utf-8 support === bluefoxicy goes back to writing a C++ program that he needs done by 5 today [06:12] mvo: ah, this does not sound like a hoary change :-) === bluefoxicy [~bluefox@pcp484971pcs.whtmrs01.md.comcast.net] has left #ubuntu-devel ["That's] [06:13] mdz: yes, I don't have a good feeling about it. OTOH we'll ship with a broken $EDITOR by default (that can't handle e.g. umlauts) [06:13] mvo: better than risking an editor which has bugs with ascii :-) [06:13] (with a UTF-8 locale) [06:13] nano is the only editor available in the installer === kop|gone is now known as metallikop [06:14] I don't think there is time to test it sufficiently [06:14] mdz: this mostly affects nano, not nano-udeb. [06:14] jordi: oh? [06:14] do we even ship nano? [06:14] but I agree this is quite late. [06:14] mdz: I guess. [06:14] what's you're easy to use text editor if not? vi? [06:14] hmm, apparently we do [06:15] your even [06:15] pitti: Can you grab d-i and build a powerpc-netboot ISO for me? [06:16] smurfix: is that mkvmlinuz thingy? [06:16] mdz: we are missing a lot of myspell- and openoffice.org-hyphenation- packages for important languages like af, zu and da (well, maybe da is not important). ok to add these packages? [06:16] fabbione: No, I need to debug a few keyboard selector snags [06:16] smurfix: ah ok [06:17] doko: ->pitti [06:17] pitti: we have a problem with users-admin, another one :-( [06:17] doko: those packages should be dependencies of the language-support-* packages [06:17] doko: fine for me [06:17] (or anybody else who's got a ppc box) [06:17] pitti: umh. [06:17] doko: "missing" -> not in the archive, or not in main? [06:17] not in the archives [06:17] uh [06:17] in sid? [06:17] pitti: John Richard Jose noted it on the mailing list, when you read it, let me know what you think. the fix doesn't seem small [06:17] no [06:18] pitti: someone just downloaded today's daily and he says the translations appear to be incomplete or from stone age [06:18] ie, the GNOME panel menus are not translated at all [06:18] not even "Places", etc. [06:18] jordi: hmm, works fine for me [06:18] jordi: which language? [06:18] Are the mo files those coming from the tarballs? [06:18] ca [06:18] jordi: yes [06:18] gnome-panel is 18:18 < josep> 2.10.0-0ubuntu5 [06:19] pitti: weird. [06:19] jordi: are the mo files correct? [06:20] checking with msgunfmt [06:20] doko: I have no problems with new locale packages, they are usually uncritical [06:20] doko: as soon as they are in hoary, I can add them to the support packages [06:20] jordi: you should kick the GNOME ca translators :p [06:21] seb128: I'M NOT KICKING MYSELF DUDE :P [06:21] you should DUDE [06:21] seb128: besides we were finished translating a week early [06:21] DUDE [06:21] :P [06:21] i386-live is good [06:21] BTW have you strace -e open it to see what translation file is used ? [06:22] gnome-session-remove gnome-panel [06:22] seb128: the guy testing tells me the mo files are old :( [06:22] strace -e open gnome-panel [06:22] jordi: version of language-pack-ca-base? [06:22] k [06:22] pitti: in a second [06:23] seb128: it's either your fault or thom's fault. [06:23] WTF ? [06:23] IZ GTK BUG [06:23] iz pitti beeing lame again [06:23] after breaking gnome-cups-manager === seb128 hides [06:24] jordi: no, seriously, I need to know whether the mo files are outdated, or it's pickign the wrong mo file [06:24] pitti: uh, not installed [06:24] HAH [06:24] lol [06:24] this is live cd [06:24] hmm [06:24] we have ca translations on the liveCD now ? [06:24] jordi: I added the package two days ago [06:24] pitti: hopefully he downloaded the correct iso [06:24] ~/ubuntu/seeds-hoary$ grep ca live [06:24] * language-pack-ca [powerpc ia64] [06:25] oops [06:25] lol [06:25] jordi: not for live i386 [06:25] jordi: ENOSPACE [06:25] 17:10 < jordi> http://cdimage.ubuntulinux.org/daily-live/current/ <--- ie, this [06:25] pitti: oh [06:25] buy a decent machine [06:25] ie: PPC [06:25] jordi: there is a huge bulk of WinFOSS crap which takes space :-/ [06:25] pitti: meh [06:25] jordi: sorry :-( [06:25] ok, he's going to love this :D [06:25] jordi: however, -install has it [06:25] pitti: I will suggest that ca replaces de at some point [06:26] bah, nobody uses de, that's an ugly language [06:26] just drop it [06:26] jordi: squash bug #1, then we don't need WinFOSS any more :-) [06:26] seb128: almost as ugly as fr :-) [06:26] der/die/das, WTF is that :p [06:27] you always pick the wrong one :) [06:27] hehe [06:27] pitti: oh, I remember. Firefox and stuff for windows [06:27] pitti: hmm, #1 is pretty long term. [06:27] I can't wait that much. [06:27] :) [06:27] :) [06:27] jordi: not for hoary at least :-) [06:27] Umm, so can somebody please build a ppc netinst ISO for me (please add strace while you're at it)? I would like to avoid downloading the whole CD [06:27] seb128, its to confuse the french, we especially invented it for that :-P [06:28] ahah [06:28] amd64-install good [06:28] ok [06:28] mdz: back now [06:28] mdz: they are all good... [06:28] we rock! [06:28] :) [06:28] so after he installs the package via apt-get, what's an intelligent way of restarting the session without rebooting? [06:28] was about to do amd64/powerpc live tests if we care [06:28] Kamion: 4/5 successful, powerpc install in stage 2 [06:28] mdz: I now up, down, sidegraded langpacks in every possible order, works fine now [06:28] but I've tried everything else [06:28] Kamion: (that's amd64-live, powerpc-live, amd64-install, i386-live and powerpc-install) [06:28] new dpkg rocks [06:28] Keybuk rocks :-) [06:28] pitti: great, thank Keybuk [06:28] let me run upstairs and try amd64-live briefly, won't bother with powerpc-live [06:29] pitti: so what did you actually add? [06:29] the ca langpack to the base seed? [06:29] jordi: no, to ship [06:29] ie, everyone will get it installed, or how does that work? [06:29] pitti: do we have space for it on the live CD? [06:29] pitti: please elaborate :) [06:29] jordi: salut [06:30] hi mirak [06:30] jordi: the installer will try to install l-pack-$YOURLANG [06:30] pitti: nod [06:30] jordi: do you know jordi ? [06:30] jordi: if it's on the CD, you have it and it will always be installed for ca users [06:30] jordi: so not everybody gets every langpack :-) [06:30] 1. To incline or bend, as the head or top; to make a motion [06:30] of assent, of salutation, or of drowsiness with; as, to [06:30] oops [06:30] jordi was a young singer child [06:30] in france [06:30] mirak: a baby! [06:30] the songs were crap of course [06:30] mirak: "_ [06:31] mirak: hmm. no. [06:31] mirak: a baby doing pop music :) [06:31] But I know a miriad of other jordis :) [06:31] not pop music [06:31] crap musi [06:31] pitti: ok :) [06:31] music [06:31] crap with a crap techno beat [06:31] mirak: yes. [06:31] mdz: I filled them up pretty well, up to 630 MB [06:31] mdz: I reserved some space for Xh, though [06:32] pitti: but it would make jordi so happy :-) [06:32] je m'appelle Jordi, j'ai 5 ans et je suis petit [06:32] mdz: i386 is at 636 mb [06:32] mdz: if you are fine with using the spare space, I'll add it immediately :-) [06:32] pitti: how much space? === pitti would love to make jordi happy [06:32] mdz: yeah. :) [06:32] mdz: 24 MB left [06:32] 7M installed [06:32] mdz: langpack will take about 4 MB deb [06:32] (roughly) [06:32] so ~2-3M clooped [06:32] I mean, I'm trying to promote this live cd around here so people stop using the Catix crap, which is knoppix/kde based. [06:33] plus the locales, so yeah, maybe 4 [06:33] pitti: let's do it [06:33] but it's difficult with such crappy translations inclided :) [06:33] jordi: we don't have enough space for mozilla/openoffice translations, though [06:33] mdz: Installed-Size: 7272 [06:33] only the base language pack [06:33] mdz: GNOME would be good [06:33] for a live cd [06:33] jordi: gnome is included === pitti adds ca to all live CDs === mvo -> dinner [06:34] pitti: kubuntu too? ;-) [06:34] hmm, shall I? [06:34] ca? [06:34] mdz: is it? === pitti never looked at Kubuntu CD sizes [06:34] mdz: you mean now, or it was already? [06:34] because the GNOME translations included seem to be very, very outdated. [06:34] jordi: gnome is part of the base language pack, which pitti is adding now [06:35] oh, so now. [06:35] jordi: in fact they are not outdated, but not present [06:35] that's great guys :) [06:35] jordi: we strip translations from debs [06:35] pitti: some of them are included [06:35] pitti: I think the kubuntu team will need more supportability reviews for main [06:35] jordi: yeah, the still unstripped pacakges [06:35] don't tell me how. But you get bits and pieces in catalan. [06:35] pitti: will you be available for some time tonight? [06:35] mdz: I don't see kubuntu seeds [06:35] mdz: I'm still at the Uni, they will throw me out in about an hour [06:35] mdz: (still no network but modem at home) [06:36] amd64-live's good [06:36] mdz: but I can work though ssh tonight [06:36] thom: WTF [06:36] pitti: several binaries from kdepim in particular need reviews urgently in order to be able to build the live CD again [06:36] mdz: good to go? [06:36] Kamion: my powerpc install is almost finished [06:36] Kamion: okay, will do ASAP [06:37] mdz: btw, we don't strip kde-i18n, and the KDE translatiosn are not in the langpacks [06:37] thom: #7791 #7792 #7793 .. is that enough for you focus bug ? or do you want some extra dups ? :p [06:37] mdz: so Kubuntu will get the translations for the non-kde/gnoome packages, but with much redundancy (all gnome translations, too) [06:37] pitti: hmm, ok [06:38] Kamion: we might as well wait the 3 minutes to be sure it succeeds [06:38] sure [06:38] Kamion: unless you need to go [06:38] nope [06:38] I was away earlier at a meeting with our wedding caterers; nothing on now, until I go to the pub this evening :) [06:39] jordi: committed, the next live CD will contain l-p-ca :-) [06:39] mdz: just to clear the nano thing, it's a no-no, right? It appears to be stable as 1.2 here, but it's development. [06:39] pitti: yay. :) [06:39] mvo: can you check whether it is possible to disable the aptitude "RECOMMENDED BUT NOT INSTALLED" warning non-intrusively? [06:39] pitti: non encryption ones need to move into main https://www.ubuntulinux.org/wiki/KubuntuPackagesForMain [06:39] mvo: it confuses many people [06:39] jordi: if it doesn't affect nano-udeb, then it's a possibility [06:40] Riddell: ugh, we need all these packages? [06:40] mdz: that needs to be tested. The best way to test it is to test nano-tiny, which is exactly the same. [06:40] I can't see how it would not affect nano-udeb [06:40] pitti: all four of them [06:40] same source package and all that [06:40] Kamion: but jordi told me so! :-( [06:40] pitti: and eventually probably the rest too but not for today [06:40] jordi: can you try building the debian-installer package with your nano-udeb in build/localudebs/? [06:40] Riddell: what about the encryption ones? [06:40] ah, ok [06:40] mdz: depends what you mean by "affect" :-) [06:40] Kamion: I don't have a local setup here to build a d-i right now. [06:40] pitti: we're removing encryption from kdepim for today to try and get this preview release out === fabbione -> dinner [06:41] and tomorrow is vacation. === jordi installs nano-tiny 1.3.5 [06:41] jordi: ok, can you mail me details of where I can find a source package, so I can test that stuff still builds? [06:41] Riddell: what about lipstik and gpgsm? is it also needed for the preview release? [06:41] Kamion: yes. [06:42] Kamion: build-depends changed, libncursesw5-dev added, but -tiny/-udeb still builds with slang [06:42] pitti: no to gpgsm, lipstik would be nice (so we can track down kubuntu screenshots) [06:42] elmo: available for some seed syncage? [06:42] Riddell: okay, I start with the non-encryption ones now [06:45] Kamion: it doesn't affect nano udeb in the sense that it's going to suck for utf-8 still [06:45] mdz: I'll have a look into aptitude, I'm pretty confident that it's not too hard [06:46] jordi: ok [06:46] jordi: fair enough [06:47] seb128: bleah, i dunno [06:47] seb128: i blame bugzilla [06:47] Kamion: who knows if I could improve that too [06:49] pitti: actually the kubuntu situation was much simpler than I thought; most of the new packages were simply new binaries of existing source that we had in main [06:49] pitti: so we don't need any more review [06:50] mdz: just finished OpenSLP security update, I will now look at the debs nevertheless :-) [06:50] pitti: the only new source was a theme :-) [06:50] ah, ok === herzi [~herzi@d022031.adsl.hansenet.de] has joined #ubuntu-devel [06:52] mdz: indeed; shouldn't that be handled through germinate automatically? [06:52] pitti: feel free to move onto the encryption packages in that case :) [06:52] sure [06:53] thom: you blame bugzilla, but "CD player viciously steals focus" for #7792 and "gnome-cd viciously steals focus." for #7793 :) [06:53] thom: perhaps you should rather blame firefox :) [06:54] ogra: shouldn't hwdb-client depend on hal? [06:54] hmm, good idea... [06:54] i'll add it [06:54] pitti: germinate only tells us which packages are in the list, not whether or not they are from new source [06:54] Riddell, mdz: libktnef1 * libkcal2a * akregator * networkstatus debs are fine [06:55] mdz: I meant, shouldn't the debs be automatically propagated to main? [06:55] seb128: naw, bugzilla didn't respond *at all* the first couple of times i submitted it [06:55] bugzilla did apparently, firefox didn't :p [06:55] pitti: no [06:56] pitti: germinate says "please put this in main"; it doesn't automatically move the binaries into main [06:56] ah, ok [06:56] pitti: hence mdz's periodic "seed syncage" conversations with elmo [06:57] makes sense [06:57] Kamion: STRUCTURE should be identical in ubuntu and kubuntu, right? [06:58] mdz: yes [06:58] Kamion: people.debian.org/~jordi/nano has i386 binaries and source. If you find it's good enough, I can push David to release 1.3.6 or do a cleaned up version without a messy changelog. [06:59] Kamion: it looks like they were added separately, so they have different file IDs and this creates a conflict [06:59] Kamion: OK to remove the kubuntu one and merge the ubuntu one instead? === apokryphos [~apokrypho@84.9.33.255] has joined #ubuntu-devel [06:59] mdz: preliminary announcement text in http://riva.ucam.org/~cjwatson/tmp/array-cd-7 [06:59] mdz: good point, yes [06:59] I just did 'baz add' everywhere and forgot about the peculiarities === Alessio [~Alessio@host239-111.pool8252.interbusiness.it] has joined #ubuntu-devel [07:00] mdz: have you finished your tests? [07:00] Kamion: ah, yes, sorry. powerpc-install is good [07:00] 5x5 [07:00] mdz: ok, will publish then if no objections [07:01] none [07:01] array 7 looks great [07:01] thanks Kamion, fabbione, daniels [07:01] hooray [07:02] yay === ogra applauds === ..[topic/#ubuntu-devel:Kamion] : Ubuntu Development | #ubuntu for support and general discussion | #ubuntu-love for getting involved | http://www.ubuntulinux.org/wiki/DeveloperResources | http://www.ubuntulinux.org/wiki/HoaryGoals | Kubuntu on #kubuntu-devel | Hoary preview release: http://releases.ubuntu.com/hoary/ | Release Candidate: March 30th [07:04] Kamion: I just merged ubuntu->kubuntu seeds again; since apparently I botched the installer stuff the last time, please take a look at it if you have a chance [07:04] it looked entirely sane to me, though [07:04] mdz: I just checked with diff, as long as they're the same it should be fine === tritium [~rimbert@12-202-90-180.client.insightBB.com] has joined #ubuntu-devel [07:06] seb128: ping [07:06] mdz: looks fine [07:06] mdz: thoughts on the other window when you have time [07:06] robtaylor: any news on that bind patch and your issue? [07:07] lamont: saw it, will get there. lots of more pressing issues right now [07:07] np. [07:07] just wasn't sure if it was off the edge of the screen or something [07:09] Burgundavia: pong ? [07:09] seb128: regarding bug7455, the xchat one [07:09] Kamion: guess this means I can upload my e2fsprogs fix then? [07:09] seb128: I think we are not understanding each other [07:09] lamont: yep === dholbach [~daniel@td9091c17.pool.terralink.de] has joined #ubuntu-devel [07:10] back to normal feature freeze status now [07:10] re [07:10] thanks for people's patience while the CDs got done [07:10] Burgundavia: why ? [07:10] 3 [07:10] hm [07:11] seb128: I just reopened that bug, as it is one, IMHO [07:11] grrrr [07:11] seb128, hello. Its me who reported the bug with gthumb. I can try with cvs version of it and see if it fixes my problem, but could you be so kind to tell me the line for cvs to download gthumb? I cant find any information on the sourceforge-page about how to get it via cvs. I have used cvs once or twise before, but I cant figure out how to fetch gthumb from cvs though. :( [07:11] kent: I'll do a package and put it online if you want ... do you have a i386 ? [07:12] Burgundavia: first the screen doesn't come every time, that's an option [07:12] Burgundavia: second that's a property window (user, server, etc) so it follows the HIG [07:13] seb128, yes. i386. [07:13] Burgundavia: and you don't provide any good argument out of the fact that you prefer it the other way, which doesn't make a bug [07:14] Burgundavia: the argument of the same software is not good, open gedit's properties and look on the button [07:15] or epiphany === r0ver [~rallende@200.80.220.249] has joined #ubuntu-devel [07:15] or whatever other GNOME app [07:15] Pre-Depends: ${mount:Depends} [07:15] that just says 'make mount pre-depend on everything that it should Depend: on'? [07:16] seb128: Common workflow is when the right most button is the one to make it go away. However, in this case we have 2 buttons to "make it go away". However, 95% of the time, the user wants to chat, and thus needs the connect button. The difference between this property windows and those others is that this is shown *before* the app is launched, and thus going away needs to make the app launch [07:16] Burgundavia: that's your usecase [07:16] seb128: yes [07:16] Burgundavia: I only open this dialog to make change and close it then [07:16] seb128: but the dialog comes up before launching the rest of xchat, no? [07:16] opening it every time you run xchat is no sense [07:17] usually people auto-login [07:17] no [07:17] that's a box to check [07:17] I see the box [07:18] lamont: only if you've a mount:Depends substvar [07:18] What I am saying is this is special properties windows, that usually appears before the app, and thus needs to be treated differently [07:18] lamont: any idea of why gst-plugins0.8 doesn't promote the require Build-Depends to main to build ? [07:18] lamont: dpkg-dev doesn't create one by default, but your debian/rules might [07:18] seb128: is there a reliable way to check wheteher a user has a gnome deskopt running? [07:18] Kamion: I didn't see it create one... [07:18] thom: not afaik [07:19] thom: ugly stuff like looking for gnome-panel running ? :p [07:19] thom, ps ax|grep gnome-session ? [07:19] Burgundavia: there is no "special properties windows" [07:19] ogra: no [07:19] ogra: it can be x-session-manager, too [07:19] ah, just tried... [07:19] (my laptop is x-s-m and my desktop is g-s) [07:20] thom: gnome-panel ? [07:20] Riddell: the packaging of openct really has some bugs... [07:20] yeah, panel might be my best bet [07:20] seb128: it's not automatic, you see... [07:20] the correct process is: get approval, update the seeds, get elmo to promote it, then upload. [07:20] or something like that. [07:20] seb128, gnmoe-smproxy ? [07:20] argh [07:21] otherwise you get the looping-annoy-lamont byDate/today.html [07:21] gnome-smproxy [07:21] lamont: mdz said that the depends are automatically promoted IIRC [07:21] seb128: in the report, that's true [07:21] thom: you get an indicator by using ps ax | grep -E "(gnome-panel|gnome-sesion|..|..|..)" | wc -l :-) [07:21] ie: no need to update a seed [07:21] and then the muppet does his magic behind the curtains, and it's there in the archive [07:21] oh, k [07:21] right - if it's only there because of build-deps, true [07:22] I don't care of the "behind the curtains" [07:22] as far as it work :) [07:22] dholbach: useful in a script :P ;-) [07:22] pitti: hmm, card terminal drivers, suspect we manage without that [07:22] the current issue is gst-plugins0.8 [07:22] right. the gst-plugins0.8 package needs a little muppet-love before it'll build [07:22] and then it'll just happen [07:23] thom, i would look for gnome-smproxy, it should get started by gnome-session [07:23] seb128: To me, the next logical thing should be the right most button. Most apps are laid out like that. Thus for most property windows, closing them is the next most logical thing to do. It is not for this case. [07:23] Kamion: subst-vars has to be doing it - the only occurance of 'vars' in debian/rules is removing substvars... [07:23] Burgundavia: for me I open xchat, it autologins and I open only this window to do some changes then close it [07:24] so the dialog is right [07:24] seb128: but the window opens by default and sits there until you do something [07:24] not my problem [07:24] argue with upstream, or jdub or whatever [07:24] seb128: ok [07:24] lamont: that's not conclusive :) [07:24] lamont: try grepping for mount:Depends [07:24] seb128: can we leave the bug open and I will open a bug upstream [07:24] I close the bug, I've enough with 450 in my list without keeping bugs that I'm not going to close [07:25] seb128: ok [07:25] no [07:25] that's not a bug [07:25] Kamion: only the debian/control line === Goshawk [~Goshawk@host109-109.pool8251.interbusiness.it] has joined #ubuntu-devel [07:25] argue upstream but there is no interest to keep it open in bugzilla [07:25] lamont: is this in uploaded util-linux? I'll have a look [07:25] yeah [07:25] my specific quandry is that I'm trying to add a version to one of it's depends... === mxpxpod [~bryan@wuw-ojr3gmca.dybb.com] has joined #ubuntu-devel [07:27] lamont: you're using dpkg-shlibdeps -pmount, etc. [07:27] lamont: that causes dpkg-shlibdeps to write out a mount:Depends substvar rather than the default shlibs:Depends [07:27] yeah [07:27] ah, way cool [07:28] lamont: debian/shlibs.local would be the traditional way to override that [07:28] Riddell: opensc has several libraries in one deb, too [07:28] you mean what it was doing, or what I want it to do? [07:28] if something's already mentioned in shlibdeps, but you want a newer version [07:28] what you want it to do === maskie [~maskie@196-30-109-151.uudial.uunet.co.za] has joined #ubuntu-devel [07:29] and do I need shlibs.local, or mount.local (because of the -pmount)? === lamont reads manpages [07:30] lamont: shlibs.local; if you want it somewhere else, use -L [07:30] ok [07:31] frex if you wanted it in just one package, that would be a sensible thing to do [07:32] pitti: could you add these comments to that wiki page so we don't forget? [07:32] mdz, Riddell: all packages from https://www.ubuntulinux.org/wiki/KubuntuPackagesForMain but openct and opensc are go [07:33] mdz, Riddell: openct and opensc work security-wise, but they ship multiple libs in one deb, which is against our packaging standards [07:33] mdz, Riddell: but if we need them, I accept them, too [07:34] mdz, Riddell: I add a comment to the wiki page [07:34] pitti: thanks [07:34] Riddell: lipstik is also ookay, I add it [07:34] amu, mdz: any thoughts? [07:35] Riddell: specifically? === fgx [~fgx@host11-124.pool8254.interbusiness.it] has joined #ubuntu-devel [07:35] mdz: should we accept openct and opensc [07:35] if we moved the libs to packages, would they get through NEW processing reasonably quickly? === pitti added comments to https://www.ubuntulinux.org/wiki/KubuntuPackagesForMain [07:37] haggai: assuming pitti approves, yes [07:37] haggai: if these are split to separate debs, they have my blessing [07:37] Riddell: what do we gain? [07:37] mdz, Riddell: however, they deal with external hardware, thus if a bug destroys your smartcard, we will have a hard time [07:38] with debugging [07:38] mdz: gpg support in kmail again [07:38] haggai: http://people.ubuntu.com/~fabbione/openoffice.org2_1.9.76-0ubuntu4_20050315-0125.bz2 [07:38] does gpg depend on smartcards? [07:38] I think leave them out today and we'll look at either removing the need of them from gpgsm or fixing them up [07:38] haggai: ^^^FTBFS on sparc [07:38] fabbione: ->universe shortly [07:38] mdz: ok :-) [07:38] Riddell: sounds good [07:39] Riddell: if we can make it work without smartcards, that would rock [07:39] Riddell: so the smartcard stuff can stay in universe [07:39] pitti: what are your thoughts on supporting a gnupg CVS snapshot in addition to the current gnupg? [07:39] pitti: ok, will make a note to investigate that [07:39] mdz: since it's not setuid any more, we only have algorithmical vulns [07:40] mdz: as a coincidence, we just have a pending gnupg vulnerability [07:40] pitti: yes, but likely not much sympathy from upstream [07:40] mdz: isn't the cvs maintained properly? [07:40] smurfix: what do you think about gnupg2 upstream support? [07:41] mdz: we have the gnupg2 debian maintainer close to us :-) [07:41] pitti: I mean that upstream may not accept responsibility for problems it in since it is unreleased [07:41] oh, right [07:41] pitti: is it you? :) [07:41] sivang: smurfix [07:41] pitti: ah , close enough [07:42] sivang: ;-) [07:42] Mithrandir: ping, re: utf8-migration-tool [07:42] It seems that lately (half year or so) upstream has mostly focused on gnupg1.4 [07:42] smurfix: :-) [07:43] I haven't done a review WRT 1.4 / 1.9 tagged / 1.9 CVS yet -- I should probably do that RSN [07:43] smurfix: so gnupg2 is sort of dead upstream? [07:43] pitti: shouldn't be [07:44] Riddell: is it possible to use kmail with gnupg instead of -2? [07:44] At the moment, I recommend to stick with 1.4 [07:44] pitti: not sure, amu's been looking after that package. I would imageine so [07:44] pitti: yes [07:45] gnupg 1.4 works rather well with gpg-agent [07:45] okay, then let's do that :-) [07:45] you just need a "use-agent" in its preferences [07:45] Caveat: I don't know whether that is true for smartcard support. I already pinged Upstream about that. [07:46] smurfix: oh, we want to try to decouple it from smartcard support anyway === smurfix doesn't have a gpg smartcard, USB sticks work well enough for me [07:47] pitti: Sure, but if you need to switch background support programs depending on whether the user has a smartcard or not, that'd be uncool [07:47] hmm === pitti does not like to support hardware-interaction programs [07:47] smurfix: we kept out the Nokia communication stuff for the same reason [07:48] Anyway, I have to go and ubuntuize the neighbor's desktop box now, be back later [07:49] array-7 is out? we can upload again :) ? [07:51] yep [07:51] mdz: pong? [07:51] mdz: it's still missing the C handling, I can upload with that disabled if you want that. Then it should upgrade cleanly from all locales but C (and give a message saying "sorry, nocando" for C) [07:52] Mithrandir: release candidate is in 13 days and we haven't really tested this at all :-/ [07:53] jdub: ping? [07:53] mdz: I know and it's my fault. :( [07:53] Mithrandir: I'm not entirely confident about making it a part of the default hoary upgrade path [07:54] the current version in Hoary doesn't seem to run for me [07:54] mizar:[~] utf8migrationtool [07:54] [...] TypeError: category LC_ALL is not supported [07:54] Mithrandir: release early, release often :) [07:55] Kamion: I hate to release stuff I know is partially broken [07:56] if it's an incremental improvement ... [07:57] ok, I'll upload what I have now and hack on the rest on the train tonight === farruinn [~nathan@cpe-69-201-13-153.twcny.res.rr.com] has joined #ubuntu-devel [07:59] mdz: does that sound ok? It's not as good as I hoped to, but it will at least allow some testing [08:00] mvo: still here? [08:00] mdz: yes [08:00] mvo: both workarounds in #7419 sound fine to me; please go ahead [08:00] Mithrandir: ok. we need to make a decision in the next few days whether we will use it for Hoary [08:01] mdz: thanks a lot! [08:01] mvo: maybe we should do both :-) [08:01] mdz: hehe :) yeah! [08:02] mvo: we should talk in Mataro about how to handle these issues in the future [08:02] we should make some effort to make the metapackages a better upgrade mechanism (or use something different) [08:03] perhaps for hoary+1 we can have a special upgrade tool which knows about the metapackages [08:03] or do this as part of enhancing update-manager for inter-release upgrades [08:04] mvo: you were going to Mataro? :-) [08:04] er [08:04] s/mataro/sydney/ of course [08:04] hihi, nevermind :-) [08:04] mdz: sounds good. update-manager is about to be ready for dist-upgrade, I just don't dare to enable it for hoary [08:06] mvo: you could add a note: "some packages are about to be removed; to adjust your needs, please run the package manager." [08:06] mdz: this particular problem (gnomemeeting) was caused by libpt-plugins-v4l removed from the main component. if I enable universe the dist-upgrade works smooth [08:06] mvo: interesting [08:07] mvo: so if we put it back in main, that should work too? [08:07] dholbach: I would rather avoid removing packages with the current update-managers UI. it's not really suited for that task [08:07] mdz: yes, I added a fake entry to the packages file and that was good too [08:07] mdz: 0.2 uploaded [08:08] mvo: i understood, that's why i pointed out you could have a message telling the user, update-manager was about to remove packages [08:08] now I need to pack [08:08] Mithrandir: you travel? [08:08] mvo: going to dk to visit little sister and Fabio [08:08] mvo: I guess we need to be extra carefull when moving packages between components [08:09] Mithrandir: oh, sounds like fun! [08:09] mvo: if you can test the 0.2 which hits the archive RSN for your rename troubles, I'd appreciate. [08:09] Mithrandir: yes, sure. will do! [08:09] mvo: I'm going to be around on irc and read mail, so just privmsg me or drop me a mail [08:10] Mithrandir: thanks! I look forward for a utf-8 clean system :) [08:10] yay [08:10] :) === mvo -> doing some laundry, brb [08:14] mdz: I can't stay much longer here in the uni, and my stomach cries for some food, so I'd like to go home soon; is there anything urgent for me? [08:17] pitti: no, thanks for staying === LBM [~lbm@messecenteraars.dk] has joined #ubuntu-devel [08:33] Kamion: Ok, that's a fairly common failure mode with some hardware. It's not clear what's going on. [08:34] thom: Urgh. Why? [08:34] mjg59: which? [08:35] Kamion: The Avaratec s-t-r thing [08:36] thom: Can you add a guard to /etc/acpi/resume.sh that only runs vbetool vbestate if the state file exists? [08:37] mjg59: right; I don't really understand how resume from s-t-r works, hardware-wise === thoreauputic [~debianarc@wolax9-151.dialup.optusnet.com.au] has joined #ubuntu-devel [08:41] Kamion: In theory, the chipset is woken up, reads a memory address from a register, passes that to the CPU and execution continues from there [08:41] Then the wakeup code does the job of restoring the registers and putting the CPU in protected mode === zenrox [~zenrox@wbar7.sea-4-12-028-223.dsl-verizon.net] has joined #ubuntu-devel [08:42] The wiki entry for LiveCD remastering resembles the "Knoppix way" of starting from a CD image and hacking it. I was kind of hoping for a reproducible LiveCD build system. [08:43] lamont: is the live cloop build script you use public anywhere? [08:44] Is that something I can do from the outside, or is everyone skilled in the art too busy with the Hoary release to coach? (I would understand.) [08:45] FWIW, I have built a customized installer around debootstrap previously, so I wouldn't need too much coaching. :) === farruinn [~nathan@cpe-69-201-13-153.twcny.res.rr.com] has joined #ubuntu-devel [08:48] medwards_: it's basically debootstrap/ubuntu-base, install ubuntu-desktop, install ubuntu-live, build cloop from the result; I think there are a fair few fiddly details in there, though [08:49] which is why I was wondering if lamont had put his script anywhere, since that's the piece that builds our official live cloops [08:51] Kamion: how dependent is ubuntu-live on ubuntu-desktop? I'm hoping to switch from HD-installed autobuilders to LiveCD, and would want to take out a lot of the desktop stuff and put in ecj, etc. [08:52] mdz: I send you a patch for queueing in synaptic a while ago for review. do you want to go with that approach? then I'll upload a new synaptic tomorrow with it [08:52] I haven't had time to review it [08:53] mdz: no problem, I just wanted to ask :) [08:53] it seems risky to change the language-support installation at this late stage [08:53] the current behaviour is at least simple and predictable, and we can document its limitations [08:54] and perhaps tackle it properly for Breezy [08:54] medwards_: you probably wouldn't want to use ubuntu-live as is any more than you'd want to use ubuntu-desktop as is, then [08:54] mdz: the current behaviour is a real problem when doing lots of installations at once; two parallel installations made my network unusable here [08:54] (which is a problem with my CBQ rules, but still) [08:55] I think we should fix it if at all possible [08:55] Kamion: I'm not convinced it's worth the risk of last-minute feature creep [08:56] Kamion: it's not released [08:56] but I think it's on chinstrap [08:56] fyi there is a pretty good chance i wont be online tonight much [08:57] Kamion: I'm happy to hack on ubuntu-live (it can't possibly be worse than starting from Knoppix); I'm really just wondering if there's a strategy for enabling server-oriented derivative LiveCDs. [08:57] zul: enjoy your evening [08:57] if lamont is happy to release his script, I think that would be valuable [08:57] mdz: thanks...must spend time with the wife ;) [08:57] medwards_: for a server-oriented live CD, you probably want to build it yourself [08:58] medwards_: for variations on ubuntu-live, the instructions in the wiki are quite reasonable [08:59] Kamion: I've been tracking sid for my base system for over a year, so it's been a lifesaver for me to have a fully baked auto-install CD that I can regenerate with "make clean && make". [09:00] Kamion: but since various bits of /etc are baked in, it's tied to certain things about the hardware (partition layout, SCSI vs. IDE, etc.) [09:01] Rebasing it on a LiveCD of some kind would be a win. [09:01] I wonder how our TRLS compares to Linspire [09:02] mdz: the instructions on the wiki are exactly what they should be; most people are remastering for appearance, maybe to add a few pet packages (Marillat's mplayer?) [09:02] TRLS? === lamont is reminded that he has an appointment in town from 2-3 (-0700), will be heading off in about 25 minutes or so [09:02] oh, totally rad [09:02] medwards_: right, but it sounds like you want more than that [09:02] TRLS? [09:03] the process to build the CDs from scratch is fairly complex at the moment === dholbach [~daniel@td9091c82.pool.terralink.de] has joined #ubuntu-devel [09:03] wb dholbach [09:03] *g* [09:04] wow [09:04] mjg59: my Satellite 2545XCDT comes back from STR [09:04] pcmcia ethernet and all [09:04] mdz: if I can help simplify it (maybe merging in some code I have for following dependency chains associated with goal packages), it might be useful for you. [09:05] medwards_: we have a pretty sophisticated system for that, called "germinate" [09:05] there's some information in the wiki [09:05] damn, I meant to upload germinate to Hoary [09:06] might still be able to squeeze that in [09:06] mdz: yes, I'm impressed; mine's a little different, since it aims at build-depends and tries to do it in overlay stages. [09:06] medwards_: colin.watson@canonical.com--2004/germinate--mainline--0 in arch [09:06] does build-deps too :) [09:07] but I'd certainly be interested to look at other strategies for doing the same thing [09:07] Kamion: excellent. Stacking translucent overlays to make a buildd chroot could really help with the whole buildd-corruption thing. === JanC [~JanC@dD5E08603.access.telenet.be] has joined #ubuntu-devel [09:08] How does mini-fo compare with unionfs in that respect? [09:08] mdz: Excellent [09:10] mjg59: we'll have some pretty rich data coming in from hwdb-client in Hoary, should be a good starting point for a STR whitelist for hoary+1 to enable it out of the box where it works [09:11] mjg59, yeah, we should talk about it once, to make sure i collect the right data for you ;) [09:11] mdz: it's called breezy :-)( [09:11] medwards_: we don't use mini-fo any more, we use device-mapper snapshotting [09:11] mini-fo bad. very evil. [09:11] medwards_: the code's in the casper source package [09:11] mjg59, currently the dmi data is already collected...but i imagine you might like other stuff too [09:12] lspci would also be good [09:13] The thing I like about unionfs in principle is that, since it operates above the filesystem level, one can stack, say, jffs2 on a USB stick on top of a squashfs. [09:13] Kamion: Does d-i have any support for adding different boot options based on DMI data? [09:13] mjg59, install hwdb-client and run hwdb-xml -d or hwdb-xml -a (all hal data) [09:13] kent: http://pkg-gnome.alioth.debian.org/gthumb_2.6.3cvs20050317-0ubuntu1_i386.deb if you want to try with this package [09:13] Is there any way to get flash-friendly write balancing with device-mapper? === tritium [~rimbert@12-202-90-180.client.insightBB.com] has left #ubuntu-devel ["Leaving"] [09:14] oh, by the way ... torrent for array-7? [09:14] mjg59, should be the same as lspci....needs probably a filter since its everything [09:15] ogra: Ok, cool [09:15] mjg59: not that I know of right now, guess it wouldn't be hard [09:15] medwards_: damn, forgot [09:15] Kamion: I've got a couple of machines here that it would be insanely useful for [09:16] mjg59: machines which will boot d-i with no options, but require options to work properly thereafter? [09:16] mdz: Yeah [09:16] the toshiba craptop took quite a long time to swsusp, but it got there [09:17] will know shortly whether it wakes up [09:17] mjg59: we have a dmidecode-udeb, could easily do shell scripting around that in the bootloader installers or something [09:17] Should I expect array-7 to support ipw2100 properly? The only LiveCD I've ever seen work on this Centrino was Kanotix, and I couldn't get my remaster to work. [09:17] medwards_: Should work fine [09:17] Kamion: Any chance for Hoary? [09:17] mjg59: maybe, send me a spec :) [09:17] Same "couldn't find ipw2100-fw-1.3" error I got with Warty. [09:17] flawless! [09:18] wow [09:18] both STR and swsusp, very impressive === ogra applauds mjg59 [09:18] thom: could you do torrents for array-7 once they arrive on torrent.u.c? should be a few minutes from now [09:18] (and with Knoppix 3.8) [09:18] mjg59: thanks. [09:18] thom: we really do need to automate the remainder of that; we ought to be torrenting the dailies at this point === pitti [~martin@box79162.elkhouse.de] has joined #ubuntu-devel [09:19] mdz: I think a prereq for that is on my list, will look tomorrow [09:19] anyway I really have to run now, massively late [09:19] yay, my home network is back *happy happy joy joy* [09:19] Kamion: Based on a regexp that matches either the manufacturer or model, we need to be able to add a command line option [09:19] I'll flesh it out and mail you [09:19] thanks [09:19] thom: we'll need torrents for the kubuntu preview as well [09:19] Kamion: thanks much. [09:19] lamont: terranova finished early building kubuntu livefs; please check [09:20] fabbione: Ok, looks like we really could do with that patch that keybuk tried [09:20] I've just nearly cooked a machine here [09:20] heh [09:21] mdz: swsusp with array-7? [09:21] lamont: no news on my issue, apart from that patch not fixing it.. guess i'm gonna have to go get my hands really dirty ;) [09:21] medwards_: an installed system upgraded from woody to the equivalent of array-7, yes [09:21] mdz: as kamion says, we need to have the smaller pool [09:22] mjg59: #7480 === mdz wonders idly about supporting hibernate on the live CD [09:22] mdz: when is kubuntu preview? [09:22] as real functionality it'd be purely academic, but it could be useful for testing whether it works [09:22] thom: today or tomorrow [09:23] ah, k [09:23] depending on how these CDs turn out [09:23] elmo: around? [09:23] anyone else have an account on terranova besides lamont and elmo? [09:23] mdz: you managed to collide with an archive update [09:23] re-launched [09:23] ah, ok [09:24] thom: Interesting. I honestly don't see how that can happen. [09:24] lamont: if you were thinking of releasing the live cloop build script, I'd like to play with it. Maybe even try unionfs if I can get the module to build against the Ubuntu kernel (the miniroot changes from Knoppix 3.8 are pretty straightforward). [09:24] lamont: are the royal and king ones screwed, then? [09:24] lamont: if they are, please kill them and I'll restart [09:24] mdz: the Release and Packages files, as fetched, were not from the same archive run. [09:24] thom: As far as I can tell, network modules really should be loaded and unloaded in the same order [09:25] lamont: we need kdepim 4:3.4.0-0ubuntu3 [09:25] I guess that it's reasonable to record the mac/name mapping beforehand and set it up again afterwards, though [09:25] mdz: checking [09:25] thom: Did you check gdm-signal? [09:25] thom: can you stick around tonight until we know whether kubuntu preview is happening? [09:25] mdz: but where is the sense of putting hibernate on the live CDs and not on the install ones? [09:26] mdz: 0ubuntu3 is being used in all 3 builds now [09:26] mdz: at least, I only ever saw "hibernate computer" on live CDs [09:26] pitti: we need the root filesystem in order to resume [09:26] mjg59: this is what i thought, but I don't see the harm in doing an ifrename just to make sure, since we have iftab anyway... [09:26] ok to uploade OOo1 now, or should I wait until after the Kubuntu preview? [09:26] thom: Oh, we have iftab? If so, then yeah [09:26] mjg59: we write an iftab from d-i [09:26] medwards_: gotta dot an i or two before I can release it. [09:26] Sure. Just ifrename it on resume, then. [09:26] mdz: i need to go out but it'll be local (friends over from the states until monday, prolly won't see em otherwise); sms me if you need me? [09:27] mjg59: yeah [09:27] seb128, installing that package right now. I will let you know soon if it works or not. [09:27] mjg59: not yet (gdm-signal) [09:27] but as for what it does, it literally just does a debootstrap and a couple of apt-get's, then rsync's the result into an fsimage (rather than using loopfs for the install...), then compresses it. [09:27] and a couple other housekeeping things [09:27] thom: it's more likely than not that we'll need you; can someone else fill in? [09:27] thom: Ok. It's kind of important for machines without acpi sleep keys [09:27] elmo isn't around [09:27] lamont: thanks === azeem_ [~mbanck@ppp-62-245-163-216.mnet-online.de] has joined #ubuntu-devel [09:27] mdz: 2 minutes until I must run for ~2 hours. [09:28] lamont: if builds are in progress with kdepim -0ubuntu3 I am happy [09:28] yep. [09:28] mjg59: nod [09:28] mdz: and not 100% trivial, but /~buildd/livecd/kubuntu/latest/*.out is the log file of the latest run [09:28] lamont: OK. Is the package selection in the apt-gets, or are there virtual packages containing the important dependencies? [09:28] mdz: unsure, but local means 5 minutes walk from my pc [09:29] s/latest/current/ for the last successful run [09:29] lamont: and thanks very much! [09:29] thom: ok [09:29] thom: "out" :-) [09:29] ubuntu) [09:29] LIST="$LIST ubuntu-base ubuntu-desktop ubuntu-live" [09:29] LIST="$LIST xresprobe laptop-detect" [09:29] case $(dpkg --print-architecture) in [09:29] amd64) LIST="$LIST linux-amd64-generic";; [09:29] i386) LIST="$LIST linux-386";; [09:29] ... [09:29] mdz: very close pub :-) [09:29] (I presume ubuntu's debootstrap has the hoary base script.) [09:30] very close _irish_ pub, more importantly [09:30] and some diversions to get things in the way out of the wya [09:30] medwards_: certainly [09:30] lamont: excellent. Thanks again. [09:30] it's basically ubuntu-meta*, xresprobe, laptop-detect, and kernel === lamont back in about 2 hours. [09:31] mdz: can be online in about 1:40 or so, if you sms me... [09:31] but hopefully no need. [09:32] lamont-away: how can I check when the builds are done? [09:33] wget machine/~buildd/livecd/kubuntu/latest and there should be more than one file in the list? [09:33] if too long, and still just one file, wget that (.out), and see what went wrong. [09:33] ok, thanks === lamont-away checks on times [09:35] ubuntu is about 35 minutes [09:35] hi [09:35] is anybody going to change the ubuntu website, so that it mentions 'breezy badger' as being the next release? === buga-away is now known as buga [09:35] mdz: and the last (good) kubuntu build to 27 min === lamont-away flees, late [09:38] OK, time to dissect array-7 and see what lives outside the cloop. Is there a sources.list entry that will give me an archive snapshot as of array-7? === Loevborg [~loevborg@d36-33.dip.isp-service.de] has joined #ubuntu-devel [09:42] mdz: I am around btw [09:47] elmo: ok [09:48] lamont reappeared [09:48] elmo: Is there a sources.list entry that will give me an archive snapshot as of array-7? Or is there another way to see a frozen archive when experimenting with the LiveCD mastering process? [09:48] mdz: array 7 checking, should be on torrent in a few minutes [09:48] medwards_: the freeze isnt enforced by software afaik [09:49] medwards_: its a understanding followed by the developers to just not add things to main while the cds are in progress [09:49] medwards_: no, sorry [09:49] medwards_: not apart from setting up a local mirror [09:49] medwards_: (which is how we do the CD builds) [09:50] the current archive is quite sane, though, and should remain so for the remainder of the release cycle [09:51] tseng, elmo, mdz: thanks. I'll go with the moving target, and if I have trouble, I'll mirror locally. [09:51] medwards_: if you're doing more than one build, you definitely want at least a cache, and probably a local mirror, anyway === GheRivero [~ghe@81.172.89.176] has joined #ubuntu-devel [09:52] main for 1 architecture isn't all that large [09:52] mdz: of course I'll cache; save us both bandwidth. :) [09:54] I'm getting about 8KB/s on the array-7 download; maybe I should just wait for the torrent? === HiddenWolf [~hidden@136.54.dynamic.phpg.net] has joined #ubuntu-devel [09:56] elmo: could you please sync root-portal? [09:56] Mithrandir: yes!!! :-) [09:56] [NOT Updating - Modified] root-portal_0.5.0-3ubuntu1 (vs 0.5.2-1) [09:56] ok to override? [09:57] later [09:57] bye zul [09:58] elmo: yes, ok to override [09:58] Mithrandir: http://wiki.ubuntu.com/UniverseHowlRebuildTODO nearly sorted out :-) [09:59] elmo: did you see my sync request for lsof? [09:59] elmo: thanks. [10:00] thom: yes, but the version you requested's now in limbo - I'll sync it when it hits a mirror [10:01] okey [10:01] thanks mate [10:02] yeah, already 20 hwdb submissions :) [10:02] ogra: hang on... you'll have mine too in just a sec ;-) [10:02] heh [10:02] jdub, it seems to not crash with that version from CVS. I started gthumb a while ago and it has had the slideshow on for some time now and it has not crashed. Though i have it on random, but it has always crashed rather quickly, so i think its ok now. [10:03] kent: speaking about the new package ? [10:03] kent: or that's a different issue you are fixing with jdub ? === Mithrandir wishes he could download bugs from bugzilla to work offline [10:04] Mithrandir, dont you get mails from buzilla ? [10:05] seb128, i meen the issue with gthumb and watchin slideshows. You posted a link to a debian package from CVS. I installed it and it seems to work now. [10:05] +g [10:05] Mithrandir: RSS-ification! [10:05] kent: ok, because you spoke to jdub, so I prefer to ask :) [10:05] ogra: stuff which I haven't gotten originally. [10:05] ah, k [10:05] ogra: (I'm going to sit on a train and then a bus for a bunch of hours. Would be nice if I could do useful stuff while doing that.) [10:05] seb128, oh.. sorry, i wrote to the wrong person then. haha, i forgot it was you i should have spoken to. haha :) sorry [10:05] np [10:06] now I need to find the fix in the diff :/ [10:06] Does anyone know what can possibly cause that ever ...ok notice during startup/shutdon is on a newline? [10:06] Mithrandir, so pull down some bugs in advance [10:06] every, even [10:06] Mithrandir (i.e. save th BZ page or wget it) [10:08] yeah, that kinda works [10:08] mdz: bt torrenting away [10:08] thom: thanks === stub [~stub@dsl-246.248.240.220.dsl.comindico.com.au] has joined #ubuntu-devel [10:10] thom: bt link? [10:11] (will seed in US) [10:12] medwards_: http://cdimage.ubuntu.com/releases/hoary/array-7/ [10:14] mdz: ok to uploade OOo1 now, or should I wait until after the Kubuntu preview? [10:14] doko: the 2.6 avm stuff freezes a lot. [10:14] doko: if you can wait one hour, that would be good [10:14] doko: like, twice a day. [10:15] Mithrandir: does the card has it's own interrupt? [10:16] 12: 64399 XT-PIC fcdslsl [10:16] looks like it [10:16] mdz: not sure, if I'm awake then. the packages are at chinstrap:~doko/uploads . would you mind uploading them? [10:16] doko: ok [10:17] doko: signed? [10:17] doko: it _might_ be something else; kinda hard to check when I don't have a console connected to the system. === kent [~kent@c83-249-58-15.bredband.comhem.se] has joined #ubuntu-devel [10:17] Mithrandir: strange, I didn't havve these problems, after the card had it's own interupt. [10:17] mdz: yes, signed. thanks [10:17] doko: but since I've had that kill the system with 2.4 as well, I'm suspecting the fcdslsl card [10:17] doko: hmm. [10:18] mvo has another card (dsl2), maybe he can send it to you [10:18] I could possibly try with a better mobo with a real APIC instead of the XT-PIC shit. [10:18] it's just annoying, it's not a problem per se, I just wondered if I was the only one seeing this. [10:18] I can spend a bit more time trying to see if I can reproduce it or get a backtrace. [10:19] kent: I'm uploading -0ubuntu2 with some fixes from the CVS version. Can you close the bugzilla bug if it fixes the crasher ? [10:22] seb128, I have never closed a bug, but ok.. If it works, I will look on bugzilla about how to close the bug. [10:23] woah, code.google.com === kent [~kent@83.249.58.15] has joined #ubuntu-devel [10:24] thom: shiny [10:24] thom, oh they grabbed that one too ? there is a free site offering code snippet search since two years... [10:24] ogra: no, go look [10:25] ah === jon1012 [~jon@AMontsouris-151-1-14-81.w82-123.abo.wanadoo.fr] has joined #ubuntu-devel [10:29] right, i'm -> pub; sms if/when you need me [10:29] On bugzille it is written that bugreports against universe should be posted to ubuntu-users, is that correct? should not ubuntu-devel be the right place? [10:30] uuuggghhh [10:30] kent: the message is correct [10:31] seb128, btw, I forgot, did you say you will make a new package for me to try? I was in the middle of doing some things and I accidently shut down xchat :( [10:32] kent: I've uploaded a new one for hoary, just let me know if this one work [10:33] you will need to downgrade from the current cvs one [10:34] seb128, ok. Will do. [10:34] thanks === Clint [clint@adsl-69-233-179-235.dsl.pltn13.pacbell.net] has joined #ubuntu-devel [10:36] seb128, gthumb 2.6.3-1ubuntu1 ? [10:37] no, ubuntu2 [10:37] it's probably building atm [10:38] seb128, ok. I should be going to bed soon. How long does it take for it to compile? [10:38] kent: there is no hurry you can try tomorrow [10:38] not long, should be in the archive in 20min [10:39] seb128, I'l rather wait for it then. Becaus im going home to my parents tomorrow after school so I wont have the time then. [10:40] k === ggi [~ggi@ggi.base.supporter.pdpc] has joined #ubuntu-devel === enrico [~enrico@enrico.developer.debian] has joined #ubuntu-devel [10:47] Grumble -- pitti's netboot image for powerpc didn't. === morty [~chatzilla@user-6064.l3.c3.dsl.pol.co.uk] has joined #ubuntu-devel [10:59] oh, 1111111111 is near ! [10:59] (date +%s) === jk_ [~jochem@jkossen.nl] has joined #ubuntu-devel [11:01] ogra: do we need a wiki/UniverseDate1111111111CleanupTODO or something? [11:01] the status is: 1111096906 === jdub is abusing an old script ;) [11:02] in case you got gtk-perl installed: [11:02] !/usr/bin/perl [11:02] use strict; [11:02] use Gtk2 -init; [11:02] use Glib qw(TRUE FALSE); [11:02] my $window = Gtk2::Window->new; [11:02] $window->signal_connect(delete_event => sub { Gtk2->main_quit; }); [11:02] my $label = Gtk2::Label->new('' . time()); [11:02] my $font = Gtk2::Pango::FontDescription->from_string("Sans Bold 48"); [11:02] $label->modify_font($font); [11:03] Glib::Timeout->add(250, sub { $label->set_text('' . time()); TRUE; }); [11:03] $window->add($label); [11:03] $window->show_all; [11:03] Gtk2->main; [11:03] urg === mvo runs [11:03] beeeurg [11:03] dholbach: Count me out, 111* is in the middle of the night here === mvo kicks ogra [11:03] heh === ogra hides [11:03] WTF is that === dholbach backs ogra up :-) [11:03] ogra: This is Ubuntu. Use Python. ;-) === jdub is happy, gets to do distro stuff today [11:04] smurfix, :) i will for 2222222222 [11:04] jdub: desktop files for g-a-i ? [11:04] ogra: have it running :-) [11:05] seb128: aye! [11:05] rock [11:06] smurfix: should be middle of the night here too :-) [11:06] seb128: can I upload gnomemeeting without the libpt-plugins-v4l dependency? it breaks updates from warty (#7419) [11:07] mvo: sure [11:08] smurfix, btw, who should convert all the p*rl stuff if everybody only wants to touch py ? [11:08] :) [11:08] ogra: no need to read perl code to write py one :) [11:09] hmm [11:09] mmmm.. perl. :) [11:09] maswan: crunchy perl goodness. [11:11] medwards_: exactly. :) [11:11] ogra: 2222222222 is >2^31. We'll have to do quite a bit of work if we don't want anything to break with *that*. [11:11] *g* [11:12] seb128, this is the moment of truth.. im trying the slideshow now with the new version. Hopefully it will work.. [11:13] k [11:19] seb128, it seems to work for me with that version from the archive. Should I set it to fixed in bugzilla? There is no "closed" option, just the "reslove bug, changing resolution to [fixed] " [11:19] seb128, I wrote in the wrong channel first, haha :) [11:19] fixed is fine, thanks [11:19] I've replied in the other one :p [11:21] lamont: just posted an (untested) fix for 4504 (cupsys upgrade failures). Does anyone know how to reproduce it? [11:22] (fix should probably be applied in debian package also; haven't picked a bug to attach it to) [11:39] jdub: cursor theme fix? [11:41] mdz: i've got the ubuntu-artwork end; you reassigned the previous package repair side to seb, didn't you? [11:41] jdub: uploaded? [11:41] no [11:41] I didn't see it go up [11:42] is seb128 going to have time to do that tonight? [11:42] i have an icon drop to go up with it; [11:42] I asked him to help you with it [11:42] however, despite my earlier elation, i have to prepare for a meeting this afternoon [11:43] if seb can't do the other end tonight his time, i'll do it tonight my time [11:43] mdz: when you say tonight, that's now (it's midnight here) or tomorrow ? [11:44] seb128: now [11:44] k, I'll have a look and will get back to the other stuff after [11:45] seb128: gtk2-engines-industrial just needs to kill off the alternative that wasn't killed off properly during upgrade [11:45] and some testing [11:45] ok [11:45] i'll upload u-a this afternoon, post-meeting [11:46] you fix this one ? [11:46] I just need to remove the broken alternative in gtk2-engines-industrial ? [11:46] yeha [11:46] u-a is ok, just needs some updates and an upload === mdke [~matt@mdke.user] has joined #ubuntu-devel === buga is now known as buga-away [11:49] hi guys. I just got an email from a guy who says this "I'm preparing an article for Newsforge about OpenOffice.org version 2.0's increased use of Java and how third-party redistributors are approaching the change." He wants a statement from ubuntu. Who can I forward this misdirected mail to? [11:50] Does Java on Ubuntu get much testing? It looks like java-package is from multiverse and kaffe and ecj are from universe. [11:50] i just wanna know who has authority to answer this email [11:50] the answer is pretty obviously not me [11:51] medwards_, which shouldnt make it less tested then main apps ;) [11:51] hi ogra [11:51] hi mdke [11:51] :) [11:51] ogra: actually, I was writing that question before mdke came in. [11:51] heh coincidence [11:52] there is a JavaIntegration wiki page, jabiley leads the java team afaik === apokryphos [~apokrypho@84.9.33.255] has joined #ubuntu-devel [11:52] oops, jbailey indeed [11:52] I'm really excited about java-in-main, especially since my day job is java-intensive and it's going to be up to me to convert them to free JDK. === HiddenWolf [~hidden@136.54.dynamic.phpg.net] has joined #ubuntu-devel [11:53] ogra, you have any recommendations? shall i just forward it to ubuntu-devel? [11:53] ogra: Heya! [11:53] The pretext is support for ARM and MIPS(el) embedded targets. [11:53] mdke, jep, that would be the right place i guess [11:53] ogra, ok [11:53] hi jbailey perhaps you could advise me too [11:54] medwards_: It's getting better. ecj and gij are going to go into main for Breesy. We're trying to get a bunch of the packages in shape in prep for that. [11:54] JerryHaltom has been doing amazing work on that front. [11:55] medwards_: Have you looked much at free java stuff yet? [11:56] mdke: Oy, a statement from Ubuntu? [11:56] apparently [11:56] must be a journalist [11:56] mdke: Probably the best bet for that would be Chris Halls. He knows OOo the best. [11:56] true [11:57] he'll follow the dev list i guess? [11:57] haggai: *poke* =) [11:57] actually i'll ccopy him in [11:57] Let's see if he's around. =) [11:57] mdke, yep, and he is very busy currently,, thats why i didnt point you dirctly towards him [11:57] np [11:58] i bet you're all pretty busy :) [11:58] three weeks to go :) [11:58] yep [11:58] less than two for the preview ... [11:58] yep [11:58] you'll get there [11:59] jbailey: yes, I've been tracking java-in-main with much interest. [11:59] medwards_: Cool. If you're interested in helping out, many of us (for both Debian and Ubuntu) are in #ubuntu-java [12:00] jbailey: OK, I'll show up there as soon as my immediate crisis (building a LiveCD with working JDK/ANT) is over. [12:02] jbailey: I'm trying to reduce my autobuilders to a LiveCD so that I can do scorched-earth rebuilds of the Apache suite with alternate JDKs. [12:03] mdz: 4504 - still trying to actually reproduce it here.. [12:03] medwards_: autobuilders? [12:03] medwards_: Do you run the gump tests? [12:03] lamont: it's not going to be easy to reproduce; we just need to cripple that broken code [12:03] jbailey: hey leave me to idle on this channel in peace :) [12:03] haggai: Yes, dear. [12:03] lamont: candidate fix in bugzilla. [12:03] lamont: it should never abort the postinst === haggai reads scrollback [12:04] medwards_: yeah, reading it now [12:04] mdz: right... I'll get something uploaded today. gonna try to reproduce it again though, too... [12:04] jbailey: actually, autobuilders for day job (steaming-pile-of-java network management app)