[00:56] chrisccoulson, hey, got a minute? [00:57] nigelb - possibly ;) [00:57] chrisccoulson, after the epiphany-browser update, the epiphany-extensions and epiphany-extensions-more dont work [00:58] they probably need to be sync'd from debian too [00:58] epiphany-extensions need to be, epiphany-extensions-more isn't updated in debian yet [01:00] chrisccoulson, so you'll by syncing it ? [01:01] nigelb - i can't sync packages, but you could request a sync [01:02] chrisccoulson, aren't we in final freeze ? [01:02] ugh [01:02] we will be in a minute ;) [01:03] ouch, so isn't it going to be twisted since I need everything all the way from FFE? [01:05] I didn't get my gnome-bluetooth bug fixed :( [01:06] Nafai, bug fixes go in just fine :) [01:07] oh good :) [01:07] new to the process here [01:08] only someone has to manually approve it :) [01:09] regardless, I don't yet have upload permissions so someone else would have to take care of it anyway :) [01:09] Nafai - whats the bug? [01:10] https://bugs.launchpad.net/ubuntu/+source/gnome-bluetooth/+bug/558841 [01:10] Launchpad bug 558841 in gnome-bluetooth "bluetooth "devices" menu item not working in bluetooth indicator" [High,In progress] [01:10] the devices aren't showing up on the indicator [01:10] I believe it is actually a bug in appindicator libraries [01:10] and I have narrowed it down to the release where it is exhibited [01:10] but it is confusing because there doesn't seem to be code changes that might cause that [01:17] rickspencer3, http://insidesocal.com/click/2010/04/im-running-the-ubuntu-1004-bet.html [01:20] * rickspencer3 looks [01:21] "I've heard/read that the ability to turn off kernel mode setting might either be changing or going away in future kernels. I have nothing confirming or denying this. I only know that the Xorg developers really don't care about what users of older Intel video chips have had to go through for the past couple of years. [01:21] " [01:21] rickspencer3: also, https://bugs.launchpad.net/ubuntu/+source/gnome-bluetooth/+bug/558841/comments/7 :) [01:21] ouch [01:21] Launchpad bug 558841 in gnome-bluetooth "bluetooth "devices" menu item not working in bluetooth indicator" [High,In progress] [01:22] bryceh, I assume that refers to upstream, not us ;) [01:23] rickspencer3, right [01:24] rickspencer3, it's a good signal that our decision to disable kms on 830 is going to be well received [01:24] mmm [01:24] nice [01:24] Nafai so you're a bit blocked? [01:24] have you debugged into the code and found where the UI states are set and such? [01:29] yeah [01:29] (to both) [01:30] and they definitely are set correctly on the bt side, but aren't caught over on the appindicator side [01:33] so the app indicator is not seeing the messages? [01:34] correct [01:35] but the messages are being sent? [01:35] what is different about the bluetooth messages? [01:35] well, the menu structure is being set, but the watcher over in libappindicator isn't picking up the changes [01:36] hmm [01:36] but is the applet ripping the dbus calls? [01:37] I'm not sure I follow [01:38] how does the gnome-bluetooth tell dbusmenu that there are devices present? [01:38] what might be different here is in this case after the menu is set on the app indicator in the bt indicator, actions are added for each of the devices (when you turn on bluetooth and it sees each of the devices). these GtkActions are mapped to menu items [01:38] libappindicator has some kind of proxy that listens to signals from the GtkMenu you have set and then makes appropriate calls to dbusmenu [01:39] in this case, libappindicator isn't getting whatever the appropriate signal might be and thus isn't making the dbusmenu calls [01:40] now, the other menu items that show up when you turn on bluetooth are already on the menu, but are just not visible [01:40] so libappindicator is picking up the visibility toggle signal [01:40] for those items [01:42] Nafai, can you explain to me briefly how the indicator discovers available devices? [01:43] sure, let me double check the code real quick to check my understanding [01:47] ok. there is bluetooth client code that underneath uses bluez (I imagine) to listen to the actual bluetooth adapter. it is hooked up to a GtkTree model. When a row is added to this model via the client (i.e., the adapter sees another device), a callback is called that will update device list by iterating through the tree model, adding submenus and menu items based on the capabilities and type of the particular device [01:48] it adds these to a GtkUiManager, btw [01:49] how does the client hear from bluez? [01:49] for example, that a device is added? [01:52] is there something wrong with the i386 builders.. or is there just THAT many packages waiting to be built? [01:53] bcurtiswx, 869 jobs in the queue [01:53] that I'm not sure, that's in code separate from the applet, looks. I've taken for granted that it works, which my debug prints show that the devices are seen [01:53] chrisccoulson: Gotta get things in before the freeze! :) [01:53] and one of them is building openjdk-6, which is pretty big [01:54] 27 hours [01:54] ouch [01:54] chrisccoulson: interesting.. so tomorrow i should expect a hail mary worth of packages then [01:54] probably ;) [01:54] wwe [01:54] er, wee [01:55] Nafai. lol [01:55] Nafai there will still be time to get the fix in [01:56] so the client sees the devices, have you confirmed that the TreeModel is updating properly? [01:56] good [01:56] anyone here follow the NHL? [01:57] yeah, or the update_device_list wouldn't be called. [01:57] what object has update_device_list? [01:57] I honestly think (and unfortunately nothing in the difference between the last working and the broken version helps me here) that there is something not being seen about the action that gets added for each device [01:57] Nafai, yeah [01:57] I'm trying to trace teh data through [01:58] so can you confirm the treemodel is getting updated *properly* [01:58] and that the right data is getting sent? [01:58] oops dinner ready [01:58] bbiab [01:58] yeah, I'll do that next while you are eating :) [02:01] what is a "private source" ? [02:12] back [02:13] this would be easier to debug in Python :) Easier to display data structures, etc :) [02:14] for surez [02:15] let me add one more debug thing to make sure the menu is getting created correctly. I've only got a debug print where it gets added, but I'm not actually showing it [02:31] Nafai - you find python easier to debug? [02:32] in some ways, definitely [02:32] because of introspection [02:32] i never know what tools to use to debug python properly [02:33] print :) [02:33] i suppose i just like C far too much ;) [02:33] gdb FTW :) [02:33] I've never really used a python debugger [02:33] well, the problem I'm having is I'm trying to examine a GtkMenu structure [02:33] no debugger will help much with that [02:33] in python, I'd just print it and the str representations would normally give me all I need [02:33] the data structure will be pushed way down into the treemodel [02:34] You know what both python & mono need? The ability to just dump the VM state so you can debug at your leisure. [02:34] and spread around [02:34] in C, I'd have to write code to walk the linked lists and so forth [02:34] Nafai, can you not do a get_model() and then iterate on the roads in the debugger? [02:34] RAOF: That would be cool and I can't imagine why that shouldn't be possible with Python (not knowing the full details of the underlying python vm) [02:36] rickspencer3: I'm looking at the GtkMenu, not the GtkTreeModel. the GtkMenu stores the items in a glist, IIRC [02:36] which is a bunch of void pointers [02:36] so I have to walk the list, cast to the right object type, get the label property to see what I want [02:37] well, you could at least verify that the count is correct as a start [02:38] good point [02:38] :) [02:39] * Nafai is getting better at this with all your help [02:39] :) [02:41] heh [02:49] anyone here familiar with orbit? [03:02] looks like my HD pitivi movie is going to take about an hour or two to render :0 [03:02] * rickspencer3 goes to clean kitchen [03:02] chrisccoulson: My guess is that is a no :) [03:02] hehe [03:02] well, it's late [03:03] Nafai - i guess so. i don't think anybody understands orbit ;) [03:03] pitivi has gotten really good [03:03] chrisccoulson: isn't it eventually going away? [03:04] Nafai - yeah, gconf and bonobo are the big users [03:05] CORBA [03:05] * rickspencer3 shudders [03:05] heh [03:05] wsdl [03:05] soap [03:05] * rickspencer3 pukes enterprise alphabet soup [03:06] yeah, ewww [06:46] Good morning [06:59] pitti: Good morning to you. [07:00] hey TheMuso [07:00] * pitti -> breakfast === ogra_ is now known as ogra [07:53] good morning [08:08] morning [08:09] huats, hello [08:10] hey robert_ancell [08:10] how are you ? [08:11] huats, good, yourself? better luck with the package updates? [08:11] also, you going to uds this year? [08:12] robert_ancell, nope, I haven't been sponsored [08:12] huats, :( [08:12] AAArgh. Gosh darn it evolution. Is it *really* necessary for you to to use gigabytes of my ram *and* half my swap? [08:13] but actually I don't deserve really it since I haven't been very very active for a few months (do you know I am a proud and lucky father of a almost 3 months old little boy) [08:13] Congratulations! [08:13] thanks RAOF [08:14] that explains a lot my smaller contributions :) [08:15] (they will get bigger ;) ) [08:15] huats: ooh, congratulations! [08:16] thanks pitti :) [08:16] Theo + the building/running of my own company has been really really time consuming... [08:16] (I am not saying it is not worth it) [08:20] good morning [08:22] bonjour didrocks [08:23] Good morning didrocks, pitti. [08:23] hey RAOF, good evening [08:24] hey pitti, RAOF [08:24] pitti: how was your dinner yesterday? [08:25] Almost time to turn off all this computer equipment and dismantle the desk for moving! [08:27] RAOF: sure, enjoy your evening! === DrPepperKid is now known as MacSlow [08:36] didrocks: oh, wasn't dinner; my parents came by for congratulating, and we had some sparkling wine :) [08:37] ArneGoetje: could you please have a look at bug #563605 [08:37] Launchpad bug 563605 in language-pack-zh-hant "file overwrite error on upgrade" [Undecided,New] https://launchpad.net/bugs/563605 [08:38] pitti: sweet :) you move this week-end to Munich? [08:38] didrocks: no, next one, for a week; then further on to Belgium for two weeks [08:39] hum, right, it will be long for your family I guess… [08:39] grrr, I have this stupid applet bug display again [08:40] hey didrocks [08:40] didrocks: I'll come back to Dresden afterwards [08:40] hey pitti [08:40] didrocks: I'll probably spend about a week every month in Munich [08:40] bonjour seb128 [08:40] good morning seb128 [08:41] pitti: oh, moving back and forth. Hope it won't be too tiring for you [08:45] didrocks: should be fine; trains are comfortable :) [08:49] mvo: looking... [08:53] pitti, technically bug #550195 is not fixed, the issue is still in the mixer dialog [08:53] Launchpad bug 550195 in gnome-media "when volume is on 0 and moved up the volume doesn't update" [Low,Fix released] https://launchpad.net/bugs/550195 [08:53] seb128: hm; it seems to behave just fine for me [08:54] but we can reopen it if you still see something broken [08:54] pitti, oh, indeed [08:54] pitti, it was fixed in 2.29.91-0ubuntu1 [08:54] + bug 599663 - make changing the volume unmute (lp: #460390) [08:54] Error: Launchpad bug 599663 could not be found [08:54] Launchpad bug 460390 in gnome-media "Pulling volume down to bottom and up again leaves mute on" [Low,Fix released] https://launchpad.net/bugs/460390 [08:55] pitti, thanks for closing it ;-) [08:55] ah, great [08:58] pitti, so it seems that gdm bug which didn't make any sense about login failing is a nvidia binary driver bug [09:04] seb128: bug 516520 you mean? [09:04] Launchpad bug 516520 in gdm "pam_unix(gdm:auth): conversation failed" [Undecided,Incomplete] https://launchpad.net/bugs/516520 [09:04] seb128: funny, I was just going to look at it again [09:04] I'm done with my current task and am about to catch up on bug mail again [09:05] seb128: oh, it seems to be the reason for some people, but not others [09:07] oh, seems it was confirmed to be an nvidia issue indeed [09:07] * pitti dupes [09:08] pitti, right, the guy who was adding most of the recent comments said it's a nvidia issue for him tto [09:08] too [09:09] it's annoying when a bug is hijacked by n users having different issues [09:10] yeah, I asked to file new and separate reports for anyone not using nvidia 96 [09:16] mvo: rebuilding langpacks [09:16] ArneGoetje: thanks [09:17] mvo: the gimp2.0 templates have moved from -gnome to the common langpacks... I have changed that by adding an override. [09:18] * mvo nods [09:22] \o/ [09:22] I managed to go over 300 bugs closed for lucid ;-) [09:23] congrats seb128 :-) [09:23] didrocks, thanks === oubiwann` is now known as oubiwann [09:24] seb128: where did you see that? http://qa.ubuntu.com/reports/bug-fixing/lucid-fixes-report.html told 296 [09:25] didrocks, the url you were not listed on yesterday [09:25] the team one [09:25] I think the one you just looked at is one run behind [09:25] * didrocks doesn't like the team one. I don't exist :) [09:26] didrocks, I'm sure I can fix some other 5 by next week to be over 300 on the other one anyway ;-) [09:26] seb128: heh :-) [09:27] well, 117 on the non updated one. Not so bad for a beginner :p [09:27] indeed [09:27] though I would not call you beginner [09:27] well, let's say time parted and full time now :) [09:45] interesting, my rhythmbox process has a virt size of 1.1GB [09:45] it's just under 2 days old [09:47] what the what, why does it have libflashplayer.so mapped into its process?! [09:48] Ng, the music store [09:48] oh right [09:48] Ng, it's using webkit which loads everything a browser would load I think [09:48] yeah [09:48] fair point [09:48] still, 1.1GB virt seems somewhat unreasonable [09:48] indeed [09:49] those bugs are not nice to debug though [09:49] out of letting rhythmbox running under valgrind for 2 days [09:49] which I'm not even sure would work [09:49] valgrind is often too slow to get some usable [09:50] yeah [09:51] pmap doesn't show anything particularly outrageous, just lots of little anon allocations [09:55] it should probably disable the plugins unless it really needs them [09:55] the webkitview support that easily [09:57] I guess software-center does it? [09:57] yes [09:57] I can do a patch for u1 if rodrigo_ wants it [09:58] * mvo does one anywa [09:58] y [09:58] mvo, a patch for doing what? [09:59] rodrigo_, hey [09:59] rodrigo_, do you know if the music store needs flash in webkit? [09:59] Ng, ugh, 1.1GB is a lot [09:59] rodrigo_: disaable plugins: http://paste.ubuntu.com/414827/ should really be all that is needed [09:59] seb128, no, it doesn't, but as you say, it loads all the plugins, not sure how to make it not load them [10:00] (unless you need them for some reason) [10:00] rodrigo_, that's where mvo kicks in [10:00] mvo, ah, cool! [10:00] mvo, submit a branch and I'll approve/merge it [10:00] rodrigo_: I was about to say "I only have 3 albums in rb and only listened to one album of previews from U1MS since I started it", but then I remembered my iPhone which has ~30GB of music on it, so I'm guessing it's the plugin(s) for that that's to blame ;) [10:01] mvo, although, I guess we want the patch in the package, rather than waiting for a new release, right? [10:01] Ng, is your ipod connected? does the virt goes down if you disconnect it? [10:01] mvo, well, submit the branch anyway, and will talk with kenvandine so that he submits the patch [10:01] rodrigo_: I don't know the way your team works, the packages does not seem to have a Vcs-Bzr header so I need to go to the web to look where to find the branch [10:02] Ng, hmm, as seb128 says, try disconnecting the ipod? [10:02] mvo, it's using the canonical location [10:02] rodrigo_: ok, I can also just upload, whatever you prefer [10:02] seb128: aha, cool [10:02] seb128: I quit RB so my machine would stop swapping so much I couldn't type, but I'll start it up again and try an experiment [10:02] * mvo will push a branch [10:02] mvo, lp:libubuntuone is the trunk [10:02] Ng, thanks [10:02] thanks rodrigo_ [10:02] mvo, ok, as you prefer, but send me the patch so that I merge it into trunk [10:02] sure thing [10:03] ok, fresh rhythmbox starts with a 700MB virt, 70MB res - I assume that's because this is my first run with the new RB that shows U1MS by default [10:03] Ng, what is u1ms? [10:04] delta of 1 micro second? [10:04] just kidding [10:04] seb128: the music store [10:04] not enough sleep is not good for my humor [10:04] Ng, it uses 226M and 56M there [10:04] mvo, lol [10:04] seb128: 32bit vs 64bit maybe? [10:04] (I'm running 64bit) [10:04] 32 there [10:04] :) [10:04] and I've 1500 songs in my library [10:10] seb128: canonical location as in lp:ubuntu/lucid/libubuntuone ? [10:11] mvo, lp:ubuntu/libubuntuone [10:11] mvo, it's supposed to have the serie listed? [10:13] hmm, even after several attach/remove ipod events it's holding around 740MB virt 90MB res [10:13] seb128: I guess not, I'm just not using it that often yet, mostly using the old ~ubuntu-core-dev native branches [10:13] mvo, ok [10:14] what if you disable the U1ms plugin and start again? how much memory it uses when you first startup? [10:15] rodrigo_: 500MB virt, 43MB res [10:16] Ng, and if you enable it and start again? [10:16] ah, 700mb, 70, right? [10:17] rodrigo_: roughly, just did that and it's 644/64 this time [10:17] the music store plugin does not use much memory, just what the webkit widget does, so I guess most of that is the plugins [10:18] would be interesting to know how much difference mvo's patch makes there [10:19] yes [10:20] I have 169M 44640 26716 with the patch [10:20] lets try without [10:21] seb128: are you aware of bug 551809? [10:21] Launchpad bug 551809 in gnome-settings-daemon "gnome-settings-daemon crashed with SIGSEGV" [High,Triaged] https://launchpad.net/bugs/551809 [10:21] looks quite severe to me, with 50+ people experiencing it [10:21] no response from upstream [10:22] and 161M 45100 26716 without, that does not make much sense [10:22] * mvo looks into the details [10:23] milanbv, hey, not aware of it no, but a valgrind log would be useful [10:24] seems most users don't notice any issue out the crash icon displayed [10:24] so it's not really a concern for lucid [10:26] milanbv, the indicator-applet should be added on karmic upgrade btw [10:26] to reply to your bug comment [10:26] seb128: I notice the crash because nautilus doesn't get the theme right after that [10:26] I pushed the branch, I have a call now, and can look into it again afterwards only (https://code.edge.launchpad.net/~mvo/libubuntuone/webkit-no-plugins) [10:26] not sure that happens to other users, seems a bug in nautilus [10:27] we did add it back for any upgrade to lucid because users removed the indicator-message one without knowing it would contain other icons [10:27] but a valgrind log... I don't know how to reproduce the crash! [10:27] that's usually what you get when g-s-d stops running [10:27] theme got unset [10:27] and starting g-s-d back has some weird effects [10:27] yeah, but while most apps get it right, nautilus doesn't [10:27] ie some softwares don't update the theme [10:27] well that's another issue [10:28] right, that's a known one [10:28] for the indicator, I'm going to close the bug again then [10:28] nautilus is not the only one to not get the theme right [10:28] we'll see [10:28] thanks [10:28] so I should try to run it in valgrind an wait... [10:28] I guess those people didn't get indicator-sound installed for some reason [10:28] or upgraded before we had the code to add the applet to the config [10:28] right [10:28] seems it's happening on upgrade though [10:29] doesn't seem, but let's wait and see if more people come ;-) [10:29] so I would say maybe on icon theme cache update [10:29] try running gtk-icon-cache-update [10:29] and see if g-s-d gets valgrind errors [10:29] or try changing the themes [10:29] chrisccoulson: hey [10:29] how are you? [10:30] OK [10:30] hey seb128, i'm good thanks. how are you? [10:30] I'm good thanks ;-) [10:34] hey chrisccoulson, good morning! [10:34] chrisccoulson: sorry for my sudden disappearance last night; I wasn't sure when/whether my parents would come for the little congratulation/drinking session, and just when you asked they rang :) [10:34] hey pitti, how are you? [10:34] chrisccoulson: I'm fine doing the removals etc. now [10:34] good morning chrisccoulson :) [10:34] chrisccoulson: I'm great, thanks! how about you? [10:35] pitti - i'm good thanks. did i tell you which packages need removing? [10:35] chrisccoulson: I don't think so [10:36] pitti - stumbleupon (license issues) and livehttpheaders (that needs updating and it was always borderline whether it should stay anyway) [10:37] pitti - also, there may be some other removals for packages that haven't been ported from xul191 yet, as we still intend to only ship 1 xulrunner [10:37] chrisccoulson: in dubio pro abitus :) [10:38] where is the wiki page that explains how a gui program can add apport support? [10:40] pitti - the other likely removal is sugar. it currently has a depends on pyxpcom which used to be provided by xul191, but is now distributed separately by mozilla [10:41] and we haven't packaged that yet, and it's never had a proper release either [10:42] chrisccoulson: I propose that you open a bug (or find an existing one) about that, subscribe ubuntu-archive and me, and just keep adding tasks for packages to be removed [10:42] heh, good job i'm not flying today! [10:42] pitti - yeah, i can do that [10:42] chrisccoulson: then we have both a papertrail and also a more solid/distributed way of tracking this [10:43] seb128: would you happen to know why we suddenly have the empathy icon in the task bar again, in addition to the msg indicator? [10:43] this is a fairly recent regression [10:43] pitti, taskbar? [10:43] panel [10:43] I didn't notice that no [10:43] dunno [10:49] pitti - you're not autostarting empathy are you? [10:49] no [10:50] it happens on the mini and on my desktop now [10:50] hm, fun; restarting empathy again, and it's gone [10:50] maybe it was fixed with yesterday's updates, or it's another weird race [10:57] mvo, I'll propose your branch for merging, will be testing it later, since the music store web is down now [11:01] seb128: would you be interessted to test my debs for the disable plugins? I can upload them to people then [11:01] rodrigo_: I prepared a upload, but I would like some confirmation first that it actually helps :) [11:01] mvo, sure, i386 [11:02] mvo, wait then, the music store is down right now, so can't fully confirm it works [11:02] mvo, I'd say it's ok, but let's make sure better :) [11:02] ok [11:02] rodrigo_, the store is working there [11:02] caution++ [11:02] rodrigo_, at least I can browse it [11:02] seb128, hmm [11:02] I get a 503 error [11:03] but the store might be not the same since we are not the same country [11:03] +in [11:03] seb128, you get the EU store, as I do [11:03] k, works for me... [11:03] http://people.canonical.com/~mvo/libubuntuone/ [11:04] unless it thinks you're in .de :) [11:04] where do you think I am? ;-) [11:04] Germany and UK have their own stores, the rest of the EU gets the EU store [11:04] ask mvo :p [11:04] seb128, oh, where are you? [11:04] haha [11:04] seb128 is definetely german! [11:05] +1 [11:05] I would say France but apparently germans think it's close enough from Germany that it can be considered half German [11:05] also he *claims* to live in .fr [11:05] :) [11:05] seb128, right, so probably geoip also thinks you're german :D [11:05] see ;-) [11:05] * seb128 hugs mvo [11:05] * mvo hugs seb128 [11:05] :) [11:05] * mvo is curious for the result [11:06] seb128, what does it say on the home page of the store? something like 'EU store' ? [11:06] hey robert_ancell [11:07] robert_ancell, "EU Store Top Picks" [11:07] ups [11:07] rodrigo_, ^ [11:07] so yes it's the EU store [11:08] seb128, EU store? [11:09] seb128, ok, you are still French then :) [11:09] robert_ancell, sorry it was not for you, european music store in rhythmbox [11:10] not really, I get the 504 :) [11:11] mvo, [11:11] before [11:12] $ pmap $(pidof rhythmbox) | grep flash [11:12] af86c000 9808K r-x-- /usr/lib/flashplugin-installer/libflashplayer.so [11:12] b0200000 204K rw--- /usr/lib/flashplugin-installer/libflashplayer.so [11:12] after [11:12] $ pmap $(pidof rhythmbox) | grep flash [11:12] $ [11:12] good, so that works [11:12] and I got from 210m to 180m [11:12] that's the virt though [11:12] the res didn't change much on start [11:13] that will also fixes quite some crashers [11:13] we had random crashers due to flash reported [11:13] so worth a upload? I [11:13] yes! [11:13] uploaded [11:13] mvo, you are made of awesome ;-) [11:13] seb128, can you go to some album page and confirm it works ok? [11:13] made of tiredness today :) sometimes that is the best state of mind [11:14] thanks for testing seb128 (and for the nice words :) [11:14] rodrigo_, I've browsed album and listened to some previews [11:14] that's the page where there is a flash thing embedded, that we replace as soon as it's loaded [11:14] seb128, and no problems? [11:14] rodrigo_, not that I can see [11:14] ok, then worth an upload yes [11:14] rodrigo_, we can revert the change easily if we get a bug about it [11:14] yeah, right [11:14] rodrigo_, there is no better testing than shipping to users ;-) [11:15] seb128++ [11:15] that is *so* true [11:15] rodrigo_, "we replace as soon as it's loaded" is visible btw [11:15] seb128, :) [11:15] you can see a "you should upgrade your flash version" label while loading sometime [11:15] in the next bellow the cover [11:16] seb128, yeah, we need to wait for the page to be loaded to run the js to replace it [11:16] there is a better way, which is to detect when the HTML is loaded and do it then instead of waiting for all images to be loaded [11:16] rodrigo_, great work btw in case I didn't say it yet ;-) [11:16] just not enough time this cycle [11:16] seb128, thanks :) [11:17] seb128, if you file a bug about it, I'll take care of it as soon as I have some spare time [11:17] ok, need to get out for some shopping, bbiab [11:17] rodrigo_, ok, will do, have fun, see you later! [11:18] * ogra hugs whoever brought the proper calculator back into his desktop [11:19] rodrigo_, do you guys have access to private bugs? [11:19] there is a crasher which has some duplicates which seems to happen when buying an album but I'm not sure something saw it [11:21] rodrigo_, ok, it's bug #545184 [11:21] Launchpad bug 545184 in libubuntuone "rhythmbox crashed with SIGSEGV in soup_message_set_first_party()" [High,Fix released] https://launchpad.net/bugs/545184 [11:21] which has been fixed already in lucid ;-) [11:24] rodrigo_, I've subscribed you to bug #561302, not sure who should be subscribed to crashers [11:24] Error: Could not parse data returned by Launchpad: list index out of range (https://launchpad.net/bugs/561302) [11:40] is the cd size alright atm? [11:40] I just noticed that f-spot has an extraneous dep on nunit [11:46] seb128: hi [11:46] tseliot, hey [11:46] Laney, cd space wins are always welcome since we can use those to add translations [11:47] Can you tell how much that dep drags in? [11:48] libnunit2.4-cil [11:51] let me look [11:58] Laney, it doesn't trigger any extra depends and is 117k deb, 388k installed [11:58] Laney, wouldn't really make a difference [11:58] oh, ok then [11:58] get it at the next merge or whatever [11:58] thanks [12:01] seb128, #561302 is a dup of #560723 [12:01] seb128, marking it [12:02] rodrigo_, thanks [12:03] seb128, ah, and for all libu1 bugs or rhythmbox plugin bugs, assing them to me or aquarius (sil in launchpad) [12:03] rodrigo_, note that the retraced stacktrace is better on the new one [12:04] rodrigo_, ok [12:04] seb128, yeah, right [12:09] seb128, btw, the other day I talked with statik about getting per package upload rights, what's the process to apply for that? === MacSlow is now known as MacSlow|lunch [12:13] rodrigo_, not sure but ask dholbach he probably has a the url to the wiki documentation for it [12:13] ok [12:39] seb128: hm, I get a (ugly) dialog that my diskspace is low on lucid, just 2G left on /home [12:39] mvo, is the issue the look of the dialog or that 2G is not low? [12:40] mvo, what disk capacity to do have? I think it warns at 5% or something [12:40] well, both [12:41] not critical [12:41] just noticed it [12:41] mvo, what is the disk capacity? [12:42] I would like to figure if the warning was "normal" [12:43] mvo, g-s-d is set to display the warning if (free space < 2G && free_space < 5% disk space) [12:43] I think the dialog not being nice is known [12:44] whats wrong with the dialog? is it just the text wrapping? [12:46] chrisccoulson: we'd need a ver clever algorithm to be less annoying [12:47] seb128: 80G, 2G left [12:47] e.g. here my / is always around 600MB free [12:47] *shurg* not a big deal [12:47] mvo, ok, so it matches the criterious [12:48] I'm afraid many people will check the box not to show it again [12:49] milanbv, i was asked to add the checkbox so people didn't have to see it again ;) [12:50] sure, but if the dialog appears twice and people think it's wrong, they will check the box [12:50] we'd need to be sure it makes sense to show it [12:50] it does [12:50] not sure how, but here I'm fine until I reach ~100MB free [12:50] we could lower the 2G value though [12:50] the dialog shouldn't appear twice unless the space decreases even further though [12:51] I think you should divide the limit by 2 once the dialog has been dismissed [12:51] and to that until e.g. 200MB left [12:51] milanbv - the limit does decrease once you dismiss the dialog [12:52] oh [12:52] my use case is: I'm around 600MB [12:52] well, it doesn't persist across reboots though, but i don't think it should [12:52] every time I run an upgrade, the dialog appears, sometimes twice [12:52] not a big deal, but I'm sure all users would have check the box, making the dialog useless [12:53] it should be persistent across reboots [12:54] and only get to the original setting if I free more than 2GB [12:55] (and the real sign that the algorithm is right is when we'll be able to remove the checkbox ;-)) [12:56] maybe i'll do some hacking on that again when i've finished all my lucid tasks ;) [12:56] that would be great! [12:56] the goal IMHO is to remove the checkbox - that forces a good behavior for eerybody === gnomefreak76 is now known as gnomefreak === issyl0_ is now known as issyl0 === ogra_ is now known as ogra [13:46] ArneGoetje: heya [13:46] gjs is a perfect example of why not to use spidermonkey [13:46] ArneGoetje: got: Préparation du remplacement de ttf-indic-fonts-core 1:0.5.4ubuntu2 (en utilisant .../ttf-indic-fonts-core_1%3a0.5.8ubuntu1_all.deb) ... [13:47] /var/lib/dpkg/tmp.ci/preinst: 19: rm_conffile: not found [13:47] Ok, already reported and confir,ed [14:00] lool, hey [14:07] seb128: hey! [14:07] lool, how are you? we don't see you much around recently [14:10] seb128: I'm good; how are you yourself? [14:10] lool, I'm good too thanks, a bit tired and happy that lucid shapes nicely it has been a busy cycle ;-) [14:10] lool, looking forward some slacking and seeing everybody at UDS [14:11] "slacking", ie normal workload and not running to get things in shape for the lts [14:13] hehe [14:18] chrisccoulson: sorry, lost track about those removals again -- is there a bug for it now? [14:18] lool: ? [14:19] pitti - not just yet, i'll work on that shortly when i figure out exactly what needs removing. i'm fighting gjs at the moment though [14:19] chrisccoulson: ok, no hurry; removals can happen until very late in the game [14:21] ArneGoetje: LP #563804 [14:21] Launchpad bug 563804 in ttf-indic-fonts "package ttf-indic-fonts-core 1:0.5.4ubuntu2 failed to install/upgrade: el subproceso script pre-installation nuevo devolvió el código de salida de error 127" [Undecided,New] https://launchpad.net/bugs/563804 === MacSlow|lunch is now known as MacSlow [14:31] I'm going to assume my GDM is broken like a lot of other peoples [14:33] but it's not [14:33] * bcurtiswx gets depressed [14:34] ArneGoetje: slangasek uploaded the proposed debdiff [14:34] lool: heh... I was just fixing it myself [14:36] seb128: i go to system-->preferences-->appearance and click "ambiance" it still has a different look :( [14:36] lool: I don't see any proposed debdiff on that bug report... [14:37] bcurtiswx, why should the login screen user your current user config? [14:37] seb128: the login screen doesn't even show the current purple background with the ubuntu logo to login :-\ [14:38] seb128: it broke after the recent lucid updates to gdm [14:38] ArneGoetje: sorry picked the wrong bug https://bugs.launchpad.net/ubuntu/+source/ttf-indic-fonts/+bug/563771 [14:38] Launchpad bug 563771 in ttf-indic-fonts "package ttf-indic-fonts-core 1:0.5.4ubuntu2 failed to install/upgrade: subprocess new pre-installation script returned error exit status 127" [High,Fix released] [14:38] lool: that's a duplicate then [14:38] ArneGoetje: Yes, marked as such [14:39] bcurtiswx, what does it show? [14:39] is there a way to screenshot at the login window? [14:40] use a camera [14:40] or describe what it looks like [14:40] when did that start? [14:40] i knew my cell phone would come in handy one of these days.. lol [14:40] lool: ok, thanks [14:40] seb128: it just started with updates i did this morning.. last update was around 10PM EST last night [14:40] brb [14:43] I would be surprized that adding a parameter to the dbus call for the guest session will break that… [14:43] seb128: email seb128@ubuntu.com ? [14:44] bcurtiswx, yes [14:47] seb128: sent [14:50] and apparently my mouse settings are ignored (it turned my click to touch on the touchpad on) where i have it off [14:51] are the hundreds of empathy crashes in g_closure_invoke() potentially different bugs? [14:52] I just had a crash, and I can't tell if it's a duplicate or not [14:53] mdz, you scares me, hundred? [14:53] I'm looking [14:54] * seb128 hates that we don't get emails about crash bugs [14:55] seb128: I'm just looking at the "Do any of the following bugs describe the bug you're trying to report?" list when trying to report the crash in LP [14:55] most of them are marked Fix Released [14:55] but they all look alike [14:55] maybe they are even duplicates; there's no way to tell from this view [14:56] mdz, I would recommend to send crashes anyway, retracers work quite well [14:56] mdz, and one function is not enough to say if yours is a duplicate [14:56] seb128: OK [14:56] it just seems like many empathy crashes have this same pattern [14:57] mdz, right, I say 19 open bugs matching the title [14:57] I'm looking through those right now [15:02] mdz, thanks for raising the issue [15:03] seb128: it is not a big deal, just an average crash. I just was curious if there was something funny about empathy which made crashes look the same [15:04] mdz, no that I know of no [15:06] seb128: any idea as to my images sent to your e-mail? [15:07] bcurtiswx, your desktop theme seems wrong too, I'm wondering if gnome-settings-daemon is crashing for you [15:08] bcurtiswx, is gnome-settings-daemon running? [15:09] seb128: ps -e | grep gnome has a gnome-settings- [15:09] is that going to be the daemon? [15:09] bcurtiswx, ok, and no crash in /var/crash? [15:09] bcurtiswx, yes [15:09] seb128: do you ever have problems with e-d-s running out of memory and invoking the OOM killer? [15:09] seb128: nope [15:10] mdz, no [15:10] seb128: it's been happening to me often lately [15:11] mdz, I read your comment on #ubuntu-devel earlier but we kept the e-d-s and evo 2.28 versions for karmic this cycle so they didn't change yet [15:11] yet -> a lot [15:11] mdz 2082 0.0 43.8 1338128 647688 ? Sl Apr09 1:22 /usr/lib/evolution/evolution-data-server-2.28 --oaf-activate-iid=OAFIID:GNOME_Evolution_DataServer_CalFactory:1.2 --oaf-ior-fd=36 [15:11] mdz, not sure why that's happening or if that could be due to some google or online calendar [15:11] seb128: my calendar is not THAT full ;-) [15:12] it's using 93m 5m there [15:12] mdz, right, I'm just wondering if some configured calendar triggers a leak [15:13] seb128: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=462664 suggests that it's the caldav backend [15:13] Debian bug 462664 in evolution-data-server "evolution-data-server: multiple massive memory leaks in the caldav backend" [Important,Open] [15:14] seb128: is there a debugging option for g-s-d? [15:15] mdz, not sure how much you rely on having your calendar activated in evo but you could try to disable it for a day and see if it's better? just to confirm that's due to it [15:15] bcurtiswx, you can look for errors in .xsession-errors or run it using --debug [15:15] bcurtiswx, --no-daemon --debug [15:17] seb128: I will do that when I go in to the office next (it's my office computer) [15:17] seb128: FWIW bug 305428 sounds very similar, though you've marked that one fixed recently [15:17] Launchpad bug 305428 in evolution-data-server "evolution-data-server eats memory like crazy" [Low,Fix released] https://launchpad.net/bugs/305428 [15:18] seb128: do you want me to a) reopen that one, b) open a new one, c) wait until I can try changing the settings? [15:19] mdz, looking [15:20] seb128: http://paste.ubuntu.com/414984/ snippet from the debug.. should all those be inactive? [15:21] mdz, if you could open a new one giving the url of the closed lp one and of the bts one and confirm later that without the calendar you don't get the issue that would be nice [15:21] seb128: will do [15:21] mdz, thanks [15:21] seb128: http://paste.ubuntu.com/414986/ is the .xsession-errors [15:22] bcurtiswx, no gnome-settings-daemon error there [15:22] bcurtiswx, do you have a .gconf dir in /var/lib/gdm? [15:23] should I be able to cd to /var/lib/gdm without a permission issue? [15:23] no [15:23] you can sudo ls /var/lib/gdm/.gconf [15:24] seb128: yes i know, j/w if that was the problem [15:25] the dir is limited in access to the gdm user [15:25] i get apps as my reply to the ls [15:25] seb128: filed bug 563879 [15:25] Launchpad bug 563879 in evolution-data-server "evolution-data-server consumes massive amounts of memory, invokes OOM killer" [Undecided,New] https://launchpad.net/bugs/563879 [15:28] * bcurtiswx shrugs [15:28] mdz, thanks [15:28] bcurtiswx, so it seems you have no theme set there, I don't know about the issue out of having g-s-d crashing for some reason [15:29] seb128: i try setting one in gnome-appearance-properties but it fails [15:29] seb128: my empathy bug (retraced) is bug 563851 [15:29] Launchpad bug 563851 in empathy "empathy crashed with SIGSEGV in empathy_dispatcher_chat_with_contact()" [Medium,New] https://launchpad.net/bugs/563851 [15:29] the retracer shows the crash is actually in empathy_dispatcher_chat_with_contact, but doesn't update the title [15:29] oh, it did update the title (had to reload) [15:30] so maybe the many g_closure_invoke bugs are failed retraces or something [15:30] mdz, no, I did that ;-) [15:30] seb128: ah :-) [15:30] I'm off for about an hour for taking a break and some errands [15:31] mdz, yes, I'm cleaning those, half of the list was the same bug which is fixed but duplicate matching didn't work because the glib debug symbols are lacking so the retracer can't say if they are the exact same stacktraces or not [15:31] it would be nice if the retracer could do that [15:31] indeed [15:31] worth opening a bug on apport if there is not already one [15:31] bcurtiswx, what do you mean by "it fails" when setting the theme? what happens? [15:32] chrisccoulson: I click on a theme (ambiance for example), and it doesn't change anything [15:32] chrisccoulson: it is on "custom" right now [15:32] but won't change [15:32] bcurtiswx, is the xsettings plugin even loaded in g-s-d? [15:33] chrisccoulson: http://paste.ubuntu.com/414984/ [15:34] bcurtiswx, it's not loading any plugins at all [15:34] are they disabled in /apps/gnome-settings-daemon/plugins in gconf? [15:35] where is /apps? [15:35] bcurtiswx, in gconf [15:35] ah, that [15:36] gconftool-2 -R /apps/gnome_settings_daemon [15:36] chrisccoulson: http://paste.ubuntu.com/414992/ [15:37] bcurtiswx, it looks like your install is broken ;) [15:37] bcurtiswx, dpkg -l gnome-settings-daemon? [15:37] the schema's aren't registered [15:38] http://paste.ubuntu.com/414994/ [15:39] bcurtiswx, seems your upgrade broke on something [15:39] it's not configured [15:39] sudo apt-get -f install [15:39] indeed [15:39] where are the upgrade logs held? [15:39] mvo, ^ [15:39] bcurtiswx, how do you upgrade? [15:39] update-manager? [15:40] i do sudo apt-get update; sudo apt-get dist-upgrade and check if packages are removed, if not i continue the upgrade [15:41] and you are sure the most recent install finished clearly? [15:41] try to sudo apt-get -f install [15:41] seb128: thats why i asked where the logs are [15:41] the logs will not go away anyway [15:41] I don't think apt-get has logs though [15:41] update-manager has [15:42] i think the last upgrade failed on a font upgrade. but nothing else [15:42] right [15:42] also /var/log/dpkg.log [15:42] the -f is install gnome-applets [15:42] when it hits an error it stops [15:42] so it means you have a stack of packages which didn't get configured [15:42] and /var/log/apt [15:42] that would be it then [15:43] there should be something in there whicheever way you upgraded [15:43] the font issue was probably the one mentioned on the channel before which got a fix uploaded today [15:43] that should fix it... but why does it stop when one package fails? is it a cause of the dist-upgrade? [15:43] anyway I'm out for some errands too [15:43] see you later [15:43] seb128: thx [15:43] hm? [15:44] seb128: we have good logs now: /var/log/apt/history.log [15:44] ^--- bcurtiswx [15:44] if you could paste that file somewhere (pastebin or something) [15:44] mvo, oh, good to know ;-) [15:45] plus the term log with all the glorious dpkg details ;) [15:45] but the history.log is nicer because it shows a overview of what happend in what operation [15:45] mvo: http://paste.ubuntu.com/414997/ [15:46] it did stop installing.. and the install -f fixed it... but why did it stop at that fail? [15:46] Error: Sub-process /usr/bin/dpkg returned an error code (1) [15:46] I'm sure its the font bug [15:46] ttf-indic-fonts-core [15:46] it is, but why would it stop setting up the successful packages because of that? [15:48] well, the theory behind that is that the user might want to investigate [15:48] I admit its lame for most people, useful on a devel distro [15:48] for release upgrades we have a "keep going" mode [15:49] good evening [15:49] mvo: hmm, interesting. OK. would the keep-going mode stop the investigation? [15:49] or hinder it at all? [15:49] it might hinder it, but for 99% of the users its a win [15:50] mvo: OK, thx [15:53] 149 megs coming in my dist-upgrade this morning! [15:54] should be "interesting" [15:54] hehe [15:54] hey rickspencer3 [15:55] hi kenvandine [15:55] new desktopcouch and gwibber [15:55] yup :) [15:55] sweet [15:56] and apparently there will be another desktopcouch coming... bug 563901 just got assigned to me [15:56] Launchpad bug 563901 in desktopcouch "replication exclusion doesn't work with MergableList value" [Critical,In progress] https://launchpad.net/bugs/563901 [15:56] statik mentioned this [15:56] np [15:56] i know they were trying to figure out yesterday if that exclusion was working or not [15:56] it was unclear [15:56] i guess they nailed it down [15:57] yeah [15:57] always a problem when there are crashers [15:57] it blocks testing other things and muddies the water [15:57] yup [15:57] * kenvandine gets a coffee refill, brb [15:58] rickspencer3: what do you think about bug #556686? can be bad, shouldn't be difficult to fix, but I guess it's too late in a UI freeze perspective for documentation [15:58] Launchpad bug 556686 in window-picker-applet "[Lucid Beta2 Netbook Edition] close button inconsistency while maximized" [Low,Triaged] https://launchpad.net/bugs/556686 [15:58] * rickspencer3 looks [15:59] didrocks, no f'ing way [15:59] any idea why Apport doesn't start when OpenOffice crashes? is there a way to fix this? [15:59] we need to be focused on crashers, etc... [16:00] (getting it crashing when saving .doc and .rtf files!) [16:00] data loss, things not working [16:00] and if you don't have those to work on, then we shouldn't be making changes that make it harder for people who do [16:00] [16:00] rickspencer3: right, I agree (see my last comment) there were people pinging me and telling me that I shouldn't be the only person taking the decision… [16:00] ok [16:00] I'll comment [16:01] but without the "f*ing" [16:01] ;) [16:01] :) [16:01] didrocks, who said you shouldn't decide? [16:02] rickspencer3: random people from QA pinging me on IRC, but nobody in the dev team or canonical :) [16:03] didrocks, I have no reason to second guess you [16:05] reboot time [16:05] brb [16:06] hey robbiew [16:07] yo [16:07] djsiegel1: ^ [16:07] So, I saw some notes on sound stuff and Rhythmbox vs Banshee questions. [16:08] And was wondering if the design team could be included in the conversation about choosing applications for the distro? [16:08] If it would be useful for us to do analysis and user testing to help these discussions? [16:10] robbiew: for example, mpt did an empathy vs pidgin usability evaluation way back when [16:10] djsiegel1: sure...I think that makes sense. rickspencer3 is the one to talk to [16:10] oh, ok [16:11] heh... I use both, b/c IRC in empathy is crap...and I hate xchat :P [16:11] same here [16:12] hopefully rickspencer3 survives his reboot [16:12] lol [16:13] or not… :) [16:15] seb128, hi [16:15] I just did dist-upgrade -> reboot [16:15] and looks like gsd didn't run [16:15] should I just try running it, or is there debug info that would help? [16:16] rickspencer3: did your last dist-upgrade work? [16:16] didrocks, seemed to [16:16] I guess I could dpkg reconfigure or whatever [16:16] dpkg -l gnome-settings-daemon [16:17] rick@rick-desktop:~$ dpkg -l gnome-settings-daemon [16:17] Desired=Unknown/Install/Remove/Purge/Hold [16:17] | Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend [16:17] |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) [16:17] not too confidence building [16:18] I need the last line, do you have "ii" or "iU" [16:18] ||/ Name Version Description [16:18] +++-======================-======================-============================================================ [16:18] iU gnome-settings-daemon 2.30.0-0ubuntu4 daemon handling the GNOME session settings [16:18] ok, dist-upgrade didn't finish [16:18] apt-get install -f [16:18] yeah, figured [16:19] you don't have the gconf schema configured. There was an issue some hours ago about ttf-indic-fonts-core breaking the upgrade [16:19] meh [16:20] a bunch of stuff didn't finish in the dist-upgrade [16:20] yeah, it stops at the first error [16:20] so… all the things you have afterward aren't configured [16:21] yup [16:25] rickspencer3 / didrocks - me and seb128 were just discussing the same issue a few moments before [16:26] ok [16:26] so my dist-upgrade finished this time [16:26] I'll try to reboot again [16:35] Nafai hi [16:44] rickspencer3, right, same issue we were discussing one hour ago there [16:45] well, was easy to work around, is it a transient issue, or will it be ongoing? [16:51] rickspencer3, the issue which broke your update? I guess it's the same font one which we discussed before, a fix was uploaded earlier for it [16:51] yeah [16:51] rickspencer3, but dunno if that's this one, you can look to your logs [16:51] I already know [16:51] ok [16:51] thanks to apport ;) [16:52] will teach you for not using the graphical tools :p [16:52] hehe [16:52] well, gwibber autostarted, and desktopcouch did not crash [16:53] update-manager is nice enough to go through the update without breaking [16:53] and neither pegged my CPU [16:53] yeah [16:53] it retries on error [16:53] * seb128 hugs mvo [16:53] I don't know why I am hooked on apt-get [16:55] pitti, [16:55] "(udisks:31224): udisks-WARNING **: Couldn't enumerate devices: Message did not receive a reply (timeout by message bus)" [16:55] pitti, is that something I should be concerned about it upgrade output? [16:56] it -> in [16:57] ok, dist-upgrade done, update-manager wants me to reboot, brb [16:57] re [17:01] wb seb128 [17:01] re [17:01] hey seb128 [17:01] hey pitti [17:01] seb128: udisks warning> hm, not sure what to make of this; the daemon doesn't do any detection through dubs [17:02] dbus, even [17:02] pitti, ok, I just mentioned it in case that would be useful [17:02] seb128: where did you see that? [17:03] pitti, dist-upgrade output at udisks installation [17:04] aah [17:04] seb128: it's from the udisks tool [17:05] seb128: this is from udisks' postinst, and it tries to restart udisks after upgrade [17:05] seb128: would you mind putting the upgrade log somewhere? [17:05] seb128: it's not such a biggie, the worst that can happen is that automount is broken after upgrade until the next boot [17:05] pitti, ok but there is nothing there out of the warning I think [17:05] but oh well, after upgrade a lot of stuff won't work any more [17:06] rickspencer3, pitti: tseliot: bug #553200 not sure if we should do something about it [17:06] Launchpad bug 553200 in nvidia-graphics-drivers-96 "Mouse and keyboard stop working after selecting user" [High,Fix committed] https://launchpad.net/bugs/553200 [17:06] seb128: right, but I'm interested in the upgrade/configuration order [17:06] like release note or something [17:06] gdm will freeze when trying to enter a password for people having those cards [17:07] or could we make jockey not install this driver for now or something? [17:07] we can easily disable it [17:07] but the bug status said that there was a newer version in the pipe which fixed that? [17:07] seb128: yes, a release note would be fine [17:07] and it won't help for upgrades, of course [17:07] it's something we can fix with an SRU [17:07] pitti, there is one but not sure when nvidia will publish it [17:08] tseliot: is 96 generall broken in that regard? [17:08] if so, then we should perhaps disable 96 and move people to nouveau during upgrade [17:08] I'm not sure [17:08] "You ought to be able to work around this problem by disabling Composite or RenderAccel, though I haven't actually tried that." [17:08] we did that in the past, and I think that code will probably still work; mvo? [17:08] is stated on the bug from the nvidia guy who looked at the issue [17:10] pitti, http://people.canonical.com/~seb128/history.log [17:11] seb128: oh, is there no apt term.log? [17:12] pitti, there is, same location [17:12] ups wait [17:12] seb128: hm, udisks depends on dbus [17:12] pitti, ok it's there now [17:13] seb128: was that a dist-upgrade from karmic, or just from lucid a few days ago? [17:13] pitti, lucid from a few days ago [17:13] I think I upgraded on saturday before [17:13] or maybe monday [17:15] hmm, I don't see a new dbus there, or the udisks error message [17:15] seb128: would have been interesting to see whether udisks was running after the upgrade [17:15] I copied it from the synaptic dialog [17:16] seb128: but oh well, it's at most a cosmetic bug [17:16] right let's not spend too much time on that [17:16] pitti, going back on this nvidia issue, I think we should do something [17:16] otherwise a class of users will have gdm blocking when trying to enter their password as first lucid experience [17:16] and I can see those being unhappy [17:17] not sure how much nvidia-96 is used though [17:20] right [17:20] well, I'm interested in how widespread that problem is [17:20] if it affects the majority of -96 users, we should just transition them to nouveau, I think [17:22] pitti, I will comment on the bug asking, maybe the nvidia guy knows [17:24] mvo: is u-m prepared for transitioning nvidia-96 to nouveau, or would that need new untested code? [17:25] ArneGoetje, do you maintain ibus in Ubuntu? Or do you know who does? [17:29] mpt: lidaobing is the maintainer [17:29] thanks Arne [17:31] pitti: hm, well. its simple, we can force remove it and then it will automatically uncomment nvidia in the xorg.conf [17:31] pitti: all it needs is a config file change in u-m [17:31] mvo: ok, thanks, good to know in case we need to do it [17:31] pitti: ok [17:31] pitti: just shout if you need it [17:31] * pitti hugs mvo and his great u-m [17:32] :) [17:32] pitti, I've commented on the bug to ask Aaron if he has a clue if that affects all users or cards running this driver [17:32] seb128: cheers [17:34] mvo, is there some sort of regression test to make sure that update-manager auto-launches after the appropriate time? [17:34] mpt: you can use faketime, wait a sec and I give you the commandline you need [17:35] taking some fresh air, biab [17:36] mvo, I don't really have time to do it myself. :-) I was just wondering if there's a test set up anywhere. [17:36] e.g. something the QA team does. [17:36] rodrigo_: libubuntuone claims to fix bug 544864, but that bug has different package tasks; should they be moved to libubuntuone? [17:36] Launchpad bug 544864 in rhythmbox-ubuntuone-music-store "rhythmbox assert failure: rhythmbox: /build/buildd/nspluginwrapper-1.2.2/src/npw-rpc.c:1225: do_recv_NPObject: Assertion `npobj != ((void *)0)' failed." [Low,Fix committed] https://launchpad.net/bugs/544864 [17:37] mpt: nothing automatic, but I can setup a wiki page [17:37] tseliot: the x-x-input-synaptics and g-s-d combo together, will that change any behaviour? [17:38] tseliot: i. e. did the behaviour change just move from a g-s-d patch into synaptics itself? [17:38] pitti, yes, sorry [17:38] rodrigo_: ok, please do so before I accept the package, then it'll be autoclosed, and we won't have a bogus task around [17:39] dobey: have a reviewer lined up for these branches? [17:39] pitti: no, it won't change anything. The fact that they have (more or less) the same default values will only make them more consistent with each other and with upstream's default values [17:39] tseliot: ok, thanks [17:40] pitti, done [17:40] mvo, it's scary we don't have an automated regression test for that. Maybe we should have a UDS session on setting up a regression test suite? [17:40] pitti, there's still the nspluginwrapper task, not sure if it should be invalid? [17:40] james_w: i don't. do you mind? [17:40] dobey: sure [17:40] rodrigo_: I don't know either [17:40] pitti, well, the crash is there, so yeah, keep it open for nspluginwrapper [17:40] dobey: any chance you could put a few words in the description next time? [17:40] dobey: all the proposals arrive the same, even claiming to fix the same two bugs [17:41] mpt: sure, but I doubt most of the reports of "its not auto-launching" are because its just intransparent to the user when it does and when it dosn't. using faketime its easy to test and for me it works very reliable [17:41] mvo, ok, as long as you've tested it recently. :-) [17:41] mpt: the problem is that we reset the counter a lot, like when the user installs stuff manually via apt-get, when update-manager was launchpad manually etc [17:42] yeah [17:42] james_w: the two bugs they both fix affect both projects, which is the reason they are listed in both changelogs [17:42] and this is not easy to communicate [17:42] "it launches every 7 days" [17:42] unless … [17:42] mpt: I just tested it, its "NO_FAKE_STAT=1 faketime -f +8d update-notifier" [17:42] so pretend to be 8d in the future [17:42] dobey: no, I mean bug 493807 and bug 506114 [17:42] Launchpad bug 493807 in ubuntuone-client "Please upgrade to 1.1.0 for Lucid Alpha Release" [Wishlist,Fix released] https://launchpad.net/bugs/493807 [17:42] Launchpad bug 506114 in ubuntuone-client "Upgrade to 1.1.1" [Medium,Invalid] https://launchpad.net/bugs/506114 [17:43] (or --debug-updates) [17:43] to get more info [17:43] but in fact that might just be an LP bug [17:43] james_w: oh, because they are linked to the branch i guess, and we don't delete/recreate the branch all the time. [17:44] * dobey unlinks those bugs [17:44] dobey: yeah, it's an LP bug that they keep showing up I think. But it doesn't help me understand the point of the change when I keep seeing those two and realising that they are nothing to do with this change [17:45] james_w: sorry. i've unlinked them [17:45] no problem [17:45] dobey: and these are purely bug fixes? [17:46] yep [17:46] cool [17:52] james_w: thanks! [17:52] morning all [17:58] (back for half an hour before dinner) [17:58] good morning Nafai === MacSlow is now known as MacSlow|capoeira [18:04] Preparing to replace ttf-indic-fonts-core 1:0.5.4ubuntu2 (using .../ttf-indic-fonts-core_1%3a0.5.8ubuntu1_all.deb) ... [18:04] /var/lib/dpkg/tmp.ci/preinst: 19: rm_conffile: not found [18:04] dpkg: error processing /var/cache/apt/archives/ttf-indic-fonts-core_1%3a0.5.8ubuntu1_all.deb (--unpack): subprocess new pre-installation script returned error exit status 127 [18:04] ArneGoetje: ^^ [18:04] guess thats known/fixed? [18:07] asac: known [18:10] thx === Amaranth_ is now known as Amaranth [18:22] chrisccoulson: is somebody working on sending an email about the thunderbird issue? [18:22] asac: yes, in ubuntu2 [18:23] chrisccoulson: please send to ubuntu-devel-announce@, and ping me when you sent it, then I'll moderate it [18:23] seb128 - yeah, i think micahg is doing that. one second [18:23] or that [18:50] kenvandine, Hi! the latest upload of gwibber has a changelog entry for an already fixed bug 15days ago, though the description pretty much matches bugs 552410 which bug did it actually fix? [18:50] Launchpad bug 15 in rosetta "PO file import errors should be more verbose" [Low,Fix released] https://launchpad.net/bugs/15 [18:50] Launchpad bug 552410 in gwibber "Cannot add new accounts in gwibber" [High,Confirmed] https://launchpad.net/bugs/552410 [18:51] om26er, which bug? [18:52] bug 535263 ? [18:52] change log says: Fixed account creation for accounts previously deleted bug 535263 [18:52] Launchpad bug 535263 in gwibber "Gwibber can show duplicate accounts" [High,Fix released] https://launchpad.net/bugs/535263 [18:52] right [18:52] we fixed a bug that was introduced in that change, and still related [18:55] mvo: how does update manager schedule its daily refresh? is that done always at same time? what time i that by default? [19:06] james_w: i take it everything's ok and just needs archive approval then? [19:12] dobey: got distracted by thunderbird and then dinner [19:12] I'll get to in a couple of hours [19:13] james_w: ok, thanks [19:17] asac: at cron.daily time + a 30min random time [19:17] asac: if anacron is run its a bit unpredictable with normal cron not so much [19:21] mvo: so cron.daily is the same on all ubuntu machines by default? [19:21] i guess so [19:24] yes [19:24] why? [19:34] pitti, rickspencer3: "It should affect any card using the 96.43.* drivers." [19:35] the nvidia gdm login hang issue [19:35] that's the reply from the nvidia guy [19:35] seb128: thanks; so we should transition people to nouveau on upgrade and disable 96 in jockey; mvo, ok? [19:36] pitti, if we can't get an nvidia-96 update before lucid yes [19:36] pitti, or other option could be to downgrade the nvidia binary to < 43 if those don't have the issue [19:36] pitti, though I don't know nvidia drivers enough to judge if that's an option [19:37] suxors [19:37] :/ [19:42] pitti, ok, I'm away for dinner now, I think I've nothing to add on that anyway [19:42] bbl [19:42] seb128: right, enjoy! I think my part is done as well [19:46] thanks guys :) [19:47] pitti: fine with me, I can do that tomorrow morning [19:47] chrisccoulson: thanks for handling this! [20:30] * pitti waves goodnight [20:30] 'night pitti [20:47] good night pitti [20:54] dobey: I have the client stuck here doing the auth dance after I restarted it === MacSlow|capoeira is now known as MacSlow [20:59] hey james_w [20:59] hey chrisccoulson [21:00] so, i've marked myself as willing to mentor this services-admin project now (and spoken to the student). do you know if i need to do anything else by the deadline tomorrow? [21:00] nope [21:00] (i've not had much chance to go through all the documentation yet) [21:00] thanks :) [21:00] just vote it up if you think it should be more highly ranked [21:00] yeah, i did that too [21:04] james_w: stuck how? [21:05] it wasn't leaving that state [21:05] it's now dropped to waiting to connect again [21:08] james_w: perhaps a server issue? i'm not sure which part you're specifically talking about, but i was connected to the server last night === MacSlow is now known as MacSlow|food [21:10] dobey: I'm running u1sdtool -s after restarting it with -q; -c; and it won't connect [21:12] hrmm [21:13] james_w: perhaps just bad timing then? i think there's a server redeployment happening at the moment [21:13] ok, I'll leave it for today then [21:22] james_w: i got connected, but it was pretty slow to do so. so i suppose you're hitting similar issue talking to the server itself [21:25] yeah, I'm on now [21:26] cool [21:32] gone again [21:40] bug 551860 [21:40] Launchpad bug 551860 in metacity "Crash on login with accessibility enabled" [Undecided,Confirmed] https://launchpad.net/bugs/551860 === MacSlow|food is now known as MacSlow [21:57] * didrocks waves goodnight [21:58] later didrocks [22:00] re [22:07] taking a late lunch/early dinner [22:33] hey seb128, how are you? [22:34] hey chrisccoulson, I'm good thanks, what about you? thanks for dealing with the thunderbird breakage [22:34] seb128, yeah, i'm good too thanks [22:34] and thank you for helping to deal with it too :) [22:54] seb128: fyi, i targetted 551860 for release ... was told metacity crashes for all a11y users ... is that a dupe already filed somewhere? [22:56] bug #551860 [22:56] Launchpad bug 551860 in metacity "Crash on login with accessibility enabled" [High,Confirmed] https://launchpad.net/bugs/551860 [22:57] asac, I don't know of any duplicate but I've been staying away from wms for a while, mvo robert_ancell and didrocks have been doing changes on those in the recent cycles [22:57] asac, I was about to go to bed but I will check with them tomorrow, thanks for raising the issue [22:59] seb128: sure. no problem. just thought you would be good contact to redirect that to the right folks in the team [22:59] and i saw your nick ;) [22:59] asac, would be useful to get a stacktrace if that's a crash though [22:59] ;-) [22:59] asac, we will have a look to that before lucid [22:59] right. but its 100% reproducible according to reporters. so anyone wanting to debug it can do it ;) [22:59] thanks [22:59] i will ask paul to get an i386 backtrace [22:59] thanks [22:59] dont wait for the armel tracers ;) [23:00] hehe, yeah, you coudl wait for a while ;-) [23:00] I will try on boot tomorrow [23:00] seb128: good night! [23:00] seb128: great. [23:00] but time to go to bed now [23:00] ack [23:00] asac, thanks! you too [23:00] see you tomorrow === janito_ is now known as joaopinto_ [23:32] Good morning. [23:55] Good morning.