=== yofel_ is now known as yofel === dendro-afk is now known as dendrobates [01:38] slangasek: ecj, had it seen here, couldn't reproduce it locally [02:02] my system currently won't run unity; all unity windows are invisible [02:02] however, the daily build works [02:02] daily iso that is [02:02] so I'm trying to figure out why that would be [02:03] I don't have any relevant ppas installed [02:03] I was wondering if there was a way to tell apt to reinstall *everything* [02:13] cnd: Yes - ‘sudo aptitude reinstall ~n’ [02:13] Note that will fail if you've got a locally installed package :) [02:21] RAOF, do you know if there's a way to check for any packages that are locally installed? [02:21] that's the first thing I want to try, but I don't know how to do it [02:21] cnd: Well, that aptitude line will tell you about the locally installed packages it can't reinstall :) [02:21] ahh, before it starts? [02:22] RAOF, should aptitude be barfing all over my console? [02:23] Yeah - that actually says “reinstall all packages in the archive”, and relies on aptitude only reinstalling packages that you've actually got installed. [02:24] It does, however, say “not reinstalling $FOO; not installed” for each binary package FOO in the archive :) [02:24] ahh :) [02:24] why not do aptitude install ~i? [02:24] err, reinstal [02:24] broder: Because I didn't know about that :) [02:24] :) [02:24] what's the difference? [02:25] ~i matches "all installed packages" [02:25] so aptitude reinstall ~i says "reinstall all packages that are installed" [02:25] ahh [02:26] well, I only had one manually installed package: linux-image-2.6.34-2-generic [02:28] hmmm.. maybe it only tells me about manually installed packages one at a time... [02:32] RAOF, is there a faster way than running aptitude reinstall every time to find one missing package at a time? [02:33] There almost certainly is, but I'm not aware of it. [02:34] cnd: is the issue that you're missing a dependency? [02:34] because just running apt-get install -f should fix that [02:35] broder, the issue is that unity works when I test a daily iso build [02:35] but it doesn't work quite right when I run it in my real installation [02:35] the unity windows are transparent [02:35] I've tried all the easy things like reinstalling the mesa libs [02:35] and all the unity related stuff [02:51] could someone please review and approve my sru of bzr for bug 707075? [02:51] Launchpad bug 707075 in bzr (Ubuntu Lucid) "[sru] lp-propose fails with a 404 error" [Undecided,New] https://launchpad.net/bugs/707075 [03:13] RAOF, aptitude show ~i/natty | grep Unable [03:13] spits out lines like: [03:13] Unable to find an archive "natty" for the package "openoffice.org-core" [03:14] Oh, yeah. Removed from the archive / renamed. Joy! [03:14] it's hacky [03:14] but it works :) [03:43] anyone know how to get the old scrollbar back in ubuntu classic? [03:57] calc: remove liboverlay-scrollbar I think. [04:13] TheMuso: ok thanks [04:14] nop [04:14] m[ === dendrobates is now known as dendro-afk === dendro-afk is now known as dendrobates === dendrobates is now known as dendro-afk === dendro-afk is now known as dendrobates [05:34] is there any way to see an older debdiff of a package that doesn't have a bzr branch in LP? [05:35] package is phonon (4:4.7.0really4.5.0-0ubuntu3) natty; urgency=low [05:35] and i can see the ubuntu2 -> ubuntu3 debdiff, of course [05:35] but i'm quite interested in what the ubuntu1 -> ubuntu2 change was [05:36] Launchpad keeps those changes (and, indeed, all the source packgages) [05:36] Check out launchpad.net/ubuntu/+source/phonon/natty [05:37] RAOF: hm, 404? [05:37] https://launchpad.net/ubuntu/natty/+source/phonon [05:38] Hah. Sorry, https://launchpad.net/ubuntu/natty/+source/phonon [05:38] Oh. Yeah. You found it :) [05:38] RAOF: cool, and i found the debdiff i was after [05:38] thanks! [05:55] I'm suspecting that early in the boot process, shell's job control is broken, so `command &` in early initscripts doesn't execute "command" at all. I'm trying to debug it now with a Lucid LTSP client, but it's difficult and time consuming. [05:55] Has anyone heard of such a problem? === _LibertyZero is now known as LibertyZero [06:10] alkisg: no but it sounds very interesting [06:11] In an LTSP initscript we have this: (ntpdate $TIMESERVER && hwclock --systohc --${HWCLOCK:-utc} --noadjfile) & [06:11] And it sometimes works, sometimes not [06:11] If we remove the &, it always works [06:12] Currently I tried: (echo "CALLING NTPDATE $TIMESERVER"; ntpdate $TIMESERVER && hwclock --systohc --${HWCLOCK:-utc} --noadjfile || echo "DONE NTPDATE $?") & [06:12] I got the output of the first echo, but not the second one [06:12] (not even in boot.log) [06:15] heh [06:15] you're doing this inside initramfs ? [06:16] No, in an initscript [06:17] /opt/ltsp/i386/etc/rcS.d/S32ltsp-client-setup [06:17] alkisg: ah, hm. I'd expect it to work quite reliably then. [06:18] * alkisg tries some ntpdate parameters, and also to replace ntpdate with a big "sleep" to see if that would work... === dendrobates is now known as dendro-afk [06:57] alkisg: & works even when busybox complains about lack of job control. [06:57] alkisg: You just can't ctrl-c or ctrl-z and such. [06:58] alkisg: What do you have before and after that (ntpdate... ; hwclock) & call? [06:58] soren: thanks, indeed the problem wasn't in spawning the process, but there's something killing the spawned process [06:58] So far I have the following tests: [06:58] (echo "CALLING SLEEP 2"; sleep 2; echo "DONE SLEEP $?") & ==> I don't get the second echo [06:59] (ntpdate -p 1 $TIMESERVER && hwclock --systohc --${HWCLOCK:-utc} --noadjfile) & ==> with the -p 1 parameter, "get one sample only", it works because it finishes quickly before something kills it [06:59] Something outside must be killing it. [06:59] So now I'm trying to find out what kills those processes [06:59] Hence my question: What's before and after that call? [06:59] CAn you pastebin the whole script? [07:00] It's a collection of scripts, of course I can pastebin them but they're many [07:00] That line is inside a function in a separate line from the rest of the initscript [07:00] To make a clear test case, I can write another initscript [07:00] With just that single line in it [07:00] *..in a separate FILE, not line [07:01] * alkisg gets the kids to school and will continue testing with a simple initscript in 30'... [07:02] * soren applies caffeine in mean time [07:04] any ideas on how to make a graphical boot like suse in ubuntu === smb` is now known as smb [07:27] kmlmb [07:27] ksbmklbnknm;mnlmnmkmnkmnmgmnnknmfnfoknkfpoknfknogoposkgkskg] [07:28] Indeed. [07:28] lol [07:28] :) [07:30] RAOF: Where is the MPRIS plugin for Do hiding? [07:30] StevenK: http://cooperteam.net/MPRIS.dll [07:31] I could give you source, too, if you wanted.4 [07:31] I haven't got around to launchpadding it :) [07:31] (Just dragging the dll onto Do's plugin preferences window will install and enable it) [07:34] RAOF: It doesn't seem to? [07:35] Hm. [07:35] It should have added “play”, “pause”, etc actions... [07:35] * (Do:2050): WARNING **: Missing method get_Session in assembly /home/steven/.local/share/gnome-do/plugins/addins/MPRIS.dll, type DBus.Bus [07:36] Awesomesauce. [07:36] RAOF: That's from .xsession-errors [07:36] What version of Do? [07:36] RAOF: 0.8.3.1 [07:37] Ah, you're on Maverick? [07:37] Yeah [07:37] Heh. I've built it against Natty, and it's probably picked up the libdbus1.0-cil dep (rather than libndesk-dbus1.0-cil) [07:39] StevenK: http://cooperteam.net/do-plugin-mpris.tar.bz2 ; extract that, install mono-xbuild, and run ‘xbuild’ in the MPRIS directory. [07:41] RAOF: Done. Where does that stuff the .dll? [07:42] bin/Debug/MPRIS.dll [07:43] RAOF: Ah ha. Same install procedure? [07:43] Yup. [07:43] (You might have to rm ~/.local/share/gnome-do/plugins/addins/MPRIS.dll first; I'm not sure if we overwrite) [07:44] good morning [07:44] Aloha didrocks! [07:44] RAOF: Neat, that gives a stacktrace in .xsession-errors [07:44] hey RAOF :) [07:45] StevenK: Cool! What's the stacktrace? I may have mis-coded the dbus paths; I was testing against banshee :) [07:46] RAOF: It is complaining that it can't find dbus-sharp. I can't find the package, either [07:46] But it built for you? [07:46] * RAOF is confused. [07:47] RAOF: http://pastebin.ubuntu.com/593448/ [07:49] StevenK: Could you remove the bin/ directory and re-run xbuild? I'm not convinced that it *actually* built. [07:51] RAOF: Would you like the output from xbuild? [07:51] StevenK: Yeah, why not? [07:52] RAOF: http://pastebin.ubuntu.com/593451/ [07:52] Oh. Right. [07:52] Ahem. [07:53] soren, SpamapS: I created a simplified initscript to reproduce the problem: http://pastebin.com/cdkgbtmu [07:53] Indeed, any processes spawned to the background by that iniscript is forcibly killed after a few seconds, but I don't know what kills them. [07:54] StevenK: Yeah. dbus-sharp doesn't actually exist in Maverick, but it's a drop-in replacement for ndesk-dbus. Try “sed -i s/dbus-sharp/ndesk-dbus/g MPRIS.csproj” and then xbuild again ;) [07:56] RAOF: Based on the tracebacks, it seems it still wants dbus-sharp [07:56] steven@liquified:~/Desktop/MPRIS% grep -r dbus-sharp . [07:56] Binary file ./bin/Debug/MPRIS.dll matches [07:56] :-( [07:58] Ok. pkg-config fail. It needs to be ndesk-dbus-1.0 and ndesk-dbus-glib-1.0. [07:59] MPRIS.csproj is just an awful xml file, it should be hand-editable. [07:59] Or, I could fix it locally and throw it up for you. [08:00] RAOF: The bits already say that, the needs to change too? [08:04] StevenK: Bah. New do-plugin-mpris on cooperteam. This should build and work for you :) [08:06] Good morning [08:06] alkisg: Try adding an S99 script that writes "the end" to the same file as that test script. [08:06] alkisg: ...and see if that actually markes the end of it. [08:06] soren: trying... [08:06] ok [08:06] alkisg: If so, I have a guess as to what's going on. [08:08] Hm. Note to self: suspend, rather than shutdown, your machine so that the >1hr fsck.btrfs that happens each boot doesn't annoy you so much. [08:09] RAOF: Do.Universe.Common.RunAction "Run" encountered an error in Perform: System.Exception: org.freedesktop.DBus.Error.ServiceUnknown: The name org.mpris.MediaPlayer2.quodlibet was not provided by any .service files [08:10] StevenK: Win! It's built, installed, and is running! [08:10] StevenK: Now... you've got the quodlibet mpris plugin installed, right? :) [08:11] RAOF: I doubt it [08:11] StevenK: Ah. Well, install it and then the Do end should work! [08:12] RAOF: Apparently, I did, it just doesn't turn up in Quod :-( [08:12] :( [08:13] Does quodlibet appear on the bus? [08:30] + * Added xfce4-indicator-plugin to desktop [08:30] superm1: ^ that smells like a FFE? has this been discussed anywhere, and should get into beta-2? (would mean a rebuild) [08:31] superm1: hm, mythbuntu-default-settings also introduces the dependency; isn't that a little redundant? [08:51] soren: In that file, I got: "start 4[Enter]start 2[Enter]stop 2[Enter]the end" [08:52] Just as I thought. [08:52] I guess something kills all child processes of rcS initscripts at the end of that boot phase. But is this a correct behavior? [08:55] good morning [08:58] alkisg: I'm trying to work that out. [08:58] alkisg: Oh, hang on.. What's you script called? [08:59] soren: I put the names on the headers [09:00] S33spawn-test -> ../init.d/spawn-test [09:00] S99finish-test -> ../init.d/finish-test [09:00] Ah, ok. [09:01] soren: here's the finish-test, if you need it: http://pastebin.com/XHCrgtxS [09:09] alkisg: I'd file a bug against upstart. I don't really know if it's a bug, but that's probably the best way to get the discussion going. [09:10] alkisg: For now, you can probably get out of it by using nohup. [09:10] soren: thank you for both suggestions [09:10] * alkisg tries nohup... [09:28] @pilot out === udevbot changed the topic of #ubuntu-devel to: Archive: Beta-2/Feature/UI freeze | Development of Ubuntu (not support, not app development) | #ubuntu for support and general discussion for dapper -> maverick | #ubuntu-app-devel for application development on Ubuntu | http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://wiki.ubuntu.com/HelpingWithBugs | Patch Pilots: zul [09:35] soren: thanks again, I filed the bug here: https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/759568 [09:35] Ubuntu bug 759568 in upstart (Ubuntu) "Processes spawned by initscripts are forcibly killed if delayed" [Undecided,New] [09:41] james_w, regarding the history-differs ubuntu branches: why do we have conflicts in some of them? what do you think is the best way to treat those? there's like 3 left now [10:01] ntfs-config might be worth dropping from natty, it seems to not work without hal and just trigger apport seeing bugs on launchpad [10:02] or it needs fixing, well pointing it in case someone is interested to check on this one [10:04] Hi, my minicom output gets garbled once in a while .. its using ttyUSB4 .. if i restart my computer , this is proper again .. Is there any way to enumberate ttyUSB4 as a different ttyUSBx ? [11:20] @pilot in === udevbot changed the topic of #ubuntu-devel to: Archive: Beta-2/Feature/UI freeze | Development of Ubuntu (not support, not app development) | #ubuntu for support and general discussion for dapper -> maverick | #ubuntu-app-devel for application development on Ubuntu | http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://wiki.ubuntu.com/HelpingWithBugs | Patch Pilots: zul, Riddell [11:38] ara: would you know who to poke about https://bugs.launchpad.net/ubuntu/+source/json-glib/+bug/756426 [11:38] Ubuntu bug 756426 in json-glib (Ubuntu) "unable to set double (fixed upstream)" [Undecided,New] [11:38] is Andreas Moog here on the channel? [11:39] doko - yes. he's Ampelbein [11:40] Ampelbein: if you want to make priorities for build failures, just leave the ld-no-add-needed reports for now. It's disabled for the final natty release === MacSlow is now known as MacSlow|lunch === bitshifternz__ is now known as bitshifternz [12:58] lifeless: you're into samba, have you tried usershare with natty? I can't get it to work except with guest ticked, authentication doesn't want to work [13:03] Hello, how can I add software categories in Unity's application browser ? I've got extra-xdg-menus installed , yet I don't see the Electronics category for example === dendro-afk is now known as dendrobates [13:18] doko: ok, I will focus on the other buildfailures. thanks. === MacSlow|lunch is now known as MacSlow === chuck_ is now known as zul [14:06] how can we get ubot5 in to #ubuntu-mozillateam? our bot seems to have gone AWOL [14:07] dholbach, do you know? :) [14:07] seb128 suggested you might ;) [14:07] chrisccoulson, tsimpson should be able to help [14:07] dholbach, thanks === tkamppeter_ is now known as tkamppeter [14:10] chrisccoulson: If you ask in #ubuntu-irc, someone should be able to help you (if tsimpson hasn't already). [14:10] Pici, thanks [14:11] chrisccoulson: your bot is using chromium now...sorry :) [14:21] cjwatson, Having an interest in debootstrap, i wondered if you had thoughts on bug 740167? [14:21] Launchpad bug 740167 in debootstrap (Ubuntu) "LXC natty guest failing to configure properly" [High,In progress] https://launchpad.net/bugs/740167 [14:25] Daviey: I'll have a look [14:32] cjwatson, thanks. === MacSlow is now known as MacSlow|pharmacy === sconklin-gone is now known as sconklin [15:01] cjwatson: hi, [15:01] cjwatson: we're trying to decide whether the kernel fix for kvm's INT mis-push needs to go into natty release [15:01] I'm agnostic on the subject [15:01] cjwatson: what exactly was going wrong for you that made you track that down? [15:01] doko: hey, is debian/ubuntu's gcc 4.6 patched to ignore -Werror for the new compiler warnings (variable assigned but not used, etc)? [15:01] I mostly just left the milestone the way it was when I thought it was a gfxboot bug [15:01] hallyn: see the start of the bug report :) [15:01] it causes translations to go missing in the CD boot menu [15:02] right [15:02] ok, thanks [15:02] so I spent half a day or so debugging that and eventually tracked it down to this [15:03] I guess I don't know how much else it affects [15:03] it was a surprise to me that the breakage caused by it seemed to be so limited, but I guess the kernel doesn't use real mode a whole lot [15:03] cjwatson, so the bug is affecting the CD boot menu ... i guess that is the tip of the iceberg, so we probabally want it fixed for release [15:06] pitti: when you have a chance can you sync bug 759830? (fixes CVE-2011-1500 and other bugs) [15:06] Launchpad bug 759830 in pithos (Ubuntu) "Sync pithos 0.3.8-1 (universe) from Debian unstable (main)" [High,Confirmed] https://launchpad.net/bugs/759830 [15:06] ** RESERVED ** This candidate has been reserved by an organization or individual that will use it when announcing a new security problem. When the candidate has been publicized, the details for this candidate will be provided. (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-1500) [15:07] pitti, yes i suppose you're right, i'll file one, it should make it by gold but beta 2 isn't urgent [15:08] superm1: ah, good to know [15:08] superm1: btw, new mythbuntu rebuild still oversized despite the mythtv fix [15:08] i was surprised no one filed a bug on it yet [15:08] gah, still really? [15:09] slomo: yes [15:10] doko: hah great, thanks for confirming :) [15:10] well that doesn't make sense, I don't see anything to blame for installing it in http://people.canonical.com/~ubuntu-archive/germinate-output/mythbuntu.natty/ [15:11] doko: when will you drop that patch? [15:11] slomo: before a release [15:13] hallyn: should I steal bug 740167? I seem to be half-way through it now ... [15:13] Launchpad bug 740167 in debootstrap (Ubuntu) "LXC natty guest failing to configure properly" [High,In progress] https://launchpad.net/bugs/740167 [15:13] cjwatson: sure be my guest :) [15:13] @pilot in === udevbot changed the topic of #ubuntu-devel to: Archive: Beta-2/Feature/UI freeze | Development of Ubuntu (not support, not app development) | #ubuntu for support and general discussion for dapper -> maverick | #ubuntu-app-devel for application development on Ubuntu | http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://wiki.ubuntu.com/HelpingWithBugs | Patch Pilots: RoAkSoAx, zul, Riddell [15:14] cjwatson: I was tempted to stay up last night and track it down further, bc boy did it bother me. But then I'd be tired and cranky today :) [15:15] hallyn: heh, in fact there's a to-do comment for exactly this [15:15] # XXX: I can't think how to deal well with dependency resolution and [15:15] # lots of Packages files. -- aj 2005/06/12 [15:15] yeah i saw that, and felt sort of bad for him :) [15:16] but come on, it's 2011 no2 :) [15:16] now even [15:16] ah, if only bugs got magically easier over time ;) [15:17] it's like budget cuts - when there's time to address them we find better things to do [15:17] I guess I just need to cat all the component Packages files together [15:17] and be a bit careful about edge cases [15:18] ... actually, surely I can just look through each of them independently [15:20] i was just going to keep separate 'tocheck' and 'checked' pkglists and walk tocheck one by one, adding dependencies to tocheck, until done... not as magic as what it's trying to do now, but hopefully reliable === dendrobates is now known as dendro-afk [15:22] lfaraone: done [15:24] pitti: thanks! :) [15:28] hi all [15:28] I'm developing a gwibber plugin for Sina [15:29] I meet a package problem [15:29] Sina has some icon file, and how could add them to the gwibber package [15:29] the sina patch is ready [15:32] pitti, i don't see any reason why mythtv-themes is getting installed, it's got no rdepends and it's not called out in any of the seeds [15:32] any other ideas? [15:33] so ubunt2 still has Task: mythbuntu-backend-master, mythbuntu-backend-slave, mythbuntu-desktop, mythbuntu-frontend [15:33] * pitti apt-get updates [15:33] superm1: the task headers are gone [15:33] superm1: might be that it would have needed one more publisher cycle [15:33] superm1: I can trigger a rebuild in about 30 minutes if you want [15:34] pitti, yeah that would be good [15:36] superm1: ok, will do then [15:37] superm1: seems it didn't yet get any testing anyway, so at least we wouldn't lose that [15:37] a smoketest would be good, though [15:37] to see if there are other issues [15:40] cjwatson, pitti: I was told you two should see bug #759804 [15:40] Launchpad bug 759804 in ubiquity (Ubuntu) "after fresh install, jockey thinks nvidia binary driver is in use" [Undecided,New] https://launchpad.net/bugs/759804 [15:40] ev did most of the jockey integration in ubiquity [15:40] ev: ^ [15:41] oh, is the nivida driver installed in ubiquity through jockey now? [15:41] mdeslaur: did you have the nvidia-current package installed? [15:41] pitti: the package was installed, but dkms didn't have any modules built for it [15:42] pitti: I installed while checking the "3rd party" checkbox...I'm not re-trying without it [15:42] s/not/now/ [15:43] yes it is [15:43] when you check the 3rd party software box [15:43] as requested by dx, I believe [15:43] ev: ah, well that may explain the problem...the dkms modules aren't being transferred to the installed system [15:43] it does jockey-text -C [15:43] I thought it did it in the chroot... [15:43] * ev digs [15:44] the blacklist isn't either [15:44] since nouveau is still getting used [15:44] mdeslaur: right, the current handler skips the "is module loaded" check, as we leave that to the nvidia-common alternatives setup [15:45] has it been discussed before to install SSSD by default, replacing pam_{unix,ldap,krb5,winbind,ccreds}.so, nscd et al.. ? i was thinking of writing a topic for oneiric [15:45] yeah, it effectively does: chroot /target jockey-text -C --no-dbus [15:46] mdeslaur: ah, ignore me, it does check if the module is loaded [15:47] mdeslaur: so lsmod|grep nvidia doesn't show the module as loaded? [15:47] pitti: I am currently reinstalling, I'll check in a bit [15:48] mdeslaur: I don't see how used() could return True if "nvidia" isn't loaded [15:48] there's no trace of the kernel module at all, jockey doesn't know about it and its not in lspci, there is a blacklist blocking nouveau installed in the package too that isn't getting used since he's using nouveau [15:48] actually...ProcModules.txt in the bug doesn't have nvidia loaded [15:48] mdeslaur, ev: could it be that it does copy the actual .ko, but doesn't copy the dkms meta information? [15:48] ah [15:49] err dkms doesn't know about nvidia-current, not jockey sorry [15:49] his dkms status was blank [15:50] it should still be the dkms in the chroot used to build it i would think [15:50] hm, so I'm really stunned; I have no explanation, would it be possible to get ssh on an affected box? [15:51] (all intel here, sorry) [15:51] pitti: sure...I can set that up === dendro-afk is now known as dendrobates [15:52] mdeslaur: FYI, I have an O planning meeting in 9 minutes, then another call/dinner/release management, so no hurry [15:53] pitti: yeah, I need to reinstall the laptop back to the broken config anyway, so it'll take a while [16:12] slangasek: is there a reason NOT to dup bug #746924 against #751689? Jamie seems to have come up with a good test case as well [16:12] Launchpad bug 746924 in linux (Ubuntu Natty) "kernel default cpufreq governor fails to take action when system is overheating" [High,Confirmed] https://launchpad.net/bugs/746924 [16:12] psusi: I asked jdstrand and he thought it might not be the same bug; I have no preference [16:12] I know how to undupe if it turns out to not be fixed for me :) === MacSlow|pharmacy is now known as MacSlow [16:18] Hi ev [16:18] hi [16:21] When is the final date for fixing ubiquity and ubiquity-slideshow-ubuntu translations? According to the Natty release schedule deadline is tomorrow, do you have any plans to update ubiquity-slideshow-ubuntu and ubiquity translations from launchpad after April 14 ? [16:22] anything after tomorrow is not guaranteed [16:22] you may get it, you may not [16:22] do not plan on it [16:23] (sorry, I just realised you were talking to ev, didn't mean to interrupt) [16:23] quite alright [16:24] mantiena: I've been doing translations pulls with each ubiquity upload. I'll do an upload of both with the most recent translations tomorrow. [16:26] I've finished the ubiquity translation today, tomorrow I plan to make final tests with real installation, can you tell the hour in UTC until I can make fixes (if I found any problems in translation) [16:29] ev, cjwatson: I've finished the ubiquity translation today, tomorrow I plan to make final tests with real installation, can you tell the hour in UTC until I can make fixes (if I found any problems in translation) [16:29] no, sorry [16:30] exact hours just encourage people getting stuff done with five minutes to spare [16:30] besides I don't know that either ev or I plan things that closely [16:30] :) [16:30] indeed === psurbhi is now known as csurbhi_ === beuno is now known as beuno-lunch === herton is now known as herton_lunch [17:12] ev, cjwatson: I followed up to bug 759804; it seems that it installs nvidia/dkms/builds the module just fine, but after that it purges all kernel images (with dkms) and installs -pae [17:12] Launchpad bug 759804 in ubiquity (Ubuntu) "after fresh install, jockey thinks nvidia binary driver is in use" [Undecided,New] https://launchpad.net/bugs/759804 [17:13] ev, cjwatson: can this happen the other way around? [17:13] i. e. first install the final kernel, then call jockey -C? [17:13] mdeslaur: ^ FYI [17:17] added installer syslog now; off for dinner, bbl [17:17] ahh, I wonder if we're missing a bit of intelligence in traverse_for_kernel [17:17] but yes, this does upon first glance look like an ordering issue [17:20] ev: btw, does installing -pae also install the matching kernel headers? [17:20] ev: jockey tries to install them as well, but it uses uname to install for the currently running one [17:20] so I suppose that won't catch that it's going to be run for -pae [17:22] just trying to deepen my understanding [17:22] it's been a while since I've dug into base-installer and friends [17:25] mvo, ping? [17:26] mvo: don't answer it's a jono trap [17:26] davmor2, ? [17:26] davmor2, you are so weird :-) [17:27] jono: just playing dude :) mvo knows better than to pay any attention to me unless I've spotted a bug :) [17:27] :-) [17:29] okay, I think I've got a rough patch to test with [17:39] stgraber: I don't think I'll have time today to start the email processing. Would you be able to do it? [17:40] Laney: I'm quite busy today too, if I have time it'll probably be quite late tonight. [17:40] ok [17:40] geser bdrung maco cody-somerville: ^^^ if any of you have some spare time [17:44] Laney: oh, actually, I won't even be home tonight :( so really unlikely I'll find the time ... [17:53] barry: ping [17:54] pitti, cjwatson, kees, Rick's summary regarding Unity is on technical-board@ [17:54] it was stuck in moderation :-/ [17:56] barry: I'm gonna go ahead and upload bug #747236 if that's ok with you [17:56] Launchpad bug 747236 in apache-openid (Ubuntu) "ftbfs with python2.7" [Undecided,Triaged] https://launchpad.net/bugs/747236 === herton_lunch is now known as herton === beuno-lunch is now known as beuno [18:02] superm1: http://cdimage.ubuntu.com/mythbuntu/daily-live/20110413.2/ [18:02] superm1: amd64 is much better, but missed the limit by a hair [18:04] ev: thanks! [18:05] pitti, oh man, just can't win! :) [18:05] well, we'll see how that goes [18:05] it was entirely cowboyed [18:06] I'll give it a try if others don't report back [18:07] anyone know what might create /home/buildd? I'm digging through the obvious candidates but coming up empty [18:08] * pitti greps http://archive.ubuntu.com/ubuntu/dists/natty/Contents-i386.gz [18:09] ev: hm, nothing in Contents.gz, so not a package [18:09] i wonder why amd64 is so significantly larger than i386 though; 651 vs 700, I feel like there shouldn't be such a delta [18:10] superm1: indeed; we usually have two or three more langpacks on i386, but not 50 MB [18:10] pitti: thanks the same [18:10] superm1: did you already compare the manifests? [18:10] ev: I keep trying to remember teh package which builds teh livefs chroot [18:10] livecd-rootfs? [18:10] pitti, yeah, believe it or not, i386 has two more packages than amd64, geode and i740 [18:11] ev: ah, that one; no obvious weird mkdir there, though; where do you see this? [18:12] pitti: it's a laptop in the possession of the design team, though I could've sworn I saw it somewhere else [18:12] came up in user testing [18:13] looks like the pool on amd64 has libc6-i386 and lib32gcc1 pulled in on amd64 [18:14] but that's only about 3.4 megs === sforshee is now known as sforshee-lunch [18:20] jono: pong [18:20] mvo, just a quick q: I noticed that for Volleybrawl in the paid apps section of the USC, it has 14 ratings but no reviews, is that a bug? [18:21] wasn't sure if I should file a bug [18:23] jono: hm, I see that here, what language are you using? what is lsb_release -a displaying? [18:23] mvo, : [18:23] jono@forge:~$ lsb_release -a [18:23] No LSB modules are available. [18:23] Distributor ID: Ubuntu [18:23] Description: Ubuntu Natty (development branch) [18:23] Release: 11.04 [18:23] Codename: natty [18:24] mvo, I wasnt sure if there are just ratings but no reviews [18:24] jono: hm, odd, that should work [18:24] but I wasnt sure if you could just leave a rating [18:24] jono, do you use en_GB? [18:25] jono: there is one know bug in the current archive version, it will raise a error after the review, but the review will make it through [18:25] seb128, my keyboard and language is set to US [18:25] ok [18:25] because I am 'merican now [18:25] :-) [18:25] just curious if it would list GB reviews only and there was none [18:25] it's a bit confusing when you use a non english locale and there is no review in your language [18:26] you get the scoring but no comment [18:26] mvo, seb128 other reviews appear fine [18:26] it is just for Volleybrawl [18:26] thought it might be something specific to that repo [18:27] pitti, okay well i ditched some stuff from the pool by modifying the seed, i'm confident we should be under size limit now. whenever that is made effective can you queue a rebuild again? [18:29] * hallyn hates context-free patches [18:29] -p ftw [18:29] jono: works for me (but I use the version that is currently in the frozen queue of natty). I use en_DK [18:30] mvo: looks like this is an issue with the ReviewLoaderJsonAsync, with the threaded loader from trunk it works fine [18:30] mvo, when will I get the new version, post-Thurs? [18:30] kiwinote: yeah, I moved that to a spawner now, third iteration to get it right :) (hello btw :) [18:30] mvo: there was a tmp issue in the current version in natty which causes the json loader to be used, tremolux fixed it in rev 1694 [18:31] hi ;) [18:31] jono: you could use bzr get lp:software-center; cd software-center; PYTHONPATH=. ./software-center [18:32] kiwinote: yeah, I noticed that on monday morning, the fix I put in for the multiprocess/accessiblity crash did not actually work and I fixed it now in a different way in trunk [18:36] superm1: would you mind asking in #u-release? I need to disappear soon [18:36] sure === hallyn is now known as hallyn_afk [18:40] pitti, cjwatson, Keybuk, kees, do you think we should have a one-off TB meeting to look at Unity as of beta 2? [18:41] good night everyone, need to run now [18:43] mdz: I think it would be useful, even if just to give a public airing [18:44] rickspencer3, I guess I was hoping for a more targeted list of bugs [18:44] I don't want to trawl through all of the bugs on compiz looking for which ones are unity-related [18:44] mdz, well, compiz is tightly bound with Unity [18:44] and I'm quite certain there are unity-related bugs filed on packages other than unity and compiz [18:44] rickspencer3, yes, but compiz is also used in the classic desktop [18:44] Unty doesn't crash that much, it's usually copiz [18:45] *compiz [18:45] mdz I'm trying to help here, but I'm not sure what other report we can run [18:45] rickspencer3, as I understand it, unity runs as a plugin to compiz, so it's a pretty blurry line [18:45] we have incoming bugs in compiz and unity [18:46] these get triaged and the ones that the team thinks are the biggest threats get moved onto the milestone list [18:46] mdz, well, Unity may trigger compiz bigs that GNOME 2.3.x does not [18:47] rickspencer3, yes. those are the ones I want to know about [18:47] rickspencer3, https://launchpad.net/unity/+milestone/3.8.8 won't have any of those bugs [18:47] why not? [18:47] or will it? [18:48] well, because it's only upstream unity bugs [18:48] I assume that if the bug is in compiz code, it won't be filed on unity upstream [18:48] is that a wrong assumption? [18:49] mdeslaur: https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/740126 is one that only happens in unity and not classic gnome with compiz [18:49] Ubuntu bug 740126 in compiz (Ubuntu Natty) "compiz hangs randomly several times per day" [High,Confirmed] [18:50] whoops, sorry, mdz: ^^ [18:51] mdz well, I would expect that they would open a bug task on Unity so that they can track those bugs in the milestone [18:51] mdz the issues with xorg that I know of are invariant to Unity [18:51] rickspencer3, Sarvatt's bug is a counterexample [18:52] specific to unity, but not filed on unity upstream [18:52] mdz, right [18:52] there's a "unity" tag on it, is that a useful way to filter bugs? [18:52] mdz could be, I haven't been deep in the bug workflow [18:53] but there are only 9 bugs with that tag, it looks like [18:53] rickspencer3: It's not a normal triaging practice to also open bug tasks against packages (e.g. unity) when the bug is triggered by using that package but is in a different package (e.g. compiz). [18:53] rickspencer3, who should I be asking? [18:54] mdz, well, didrocks, I guess would be a good goto person [18:54] or seb128 [18:54] getting late for them today [18:54] yes [18:54] wow, bug 685552 has a lot of duplicates [18:55] Launchpad bug 685552 in unity (Ubuntu) "Compiz crashes when (en|dis)abling a plugin (ccsm) aka compiz crashed with SIGSEGV in sigc::signal_base::impl()" [High,Confirmed] https://launchpad.net/bugs/685552 [18:55] mdz: it could be worth a public meeting, sure. [18:55] and no indication of a fix on the horizon [18:56] I wonder why it has so many duplicates if it's only triggered by tweaking in ccsm [18:56] sorry I disconnected [18:56] what was the question? [18:56] I wouldn't expect most users to fiddle with that [18:56] ScottK, yes it's normal [18:56] seb128, I'm just wondering where I can get a comprehensive list of bugs which are specific to Unity [18:56] OK. [18:56] regardless of which package [18:56] they use "unity" to track their milestones for any of the unity components [18:56] mdz, https://bugs.launchpad.net/unity [18:57] mdz, they "also affect unity" on any of the unity shell components [18:57] that doesn't cover the indicators but you probably don't count those for unity anyway I guess [18:57] seb128, does that imply that bug 740126 (which Sarvatt mentioned was unity-specific) should have a unity task open? [18:57] Launchpad bug 740126 in compiz (Ubuntu Natty) "compiz hangs randomly several times per day" [High,Confirmed] https://launchpad.net/bugs/740126 [18:57] jono: mvo: If it helps I see the reviews but I'm using trunk [18:58] mdz, likely yes [18:58] mdz, would it only to have them being able to track it on one of the unity milestones [18:59] mdz, do you look for specific informations? I'm doing sort of daily stats on what bugs get duplicates from the retracer logs [18:59] mdz, well not "stats" just a list that I review and I ping dx about issues that raise there [18:59] but I could probably share those lists if useful [18:59] seb128, I'm looking for an overview on behalf of the TB per https://lists.ubuntu.com/archives/technical-board/2011-April/000816.html et al [19:00] mdz, ok, I'm happy to help if you need extra details [19:01] seb128, if you say that the unity bug list should have everything on it, then that's good enough for now, thanks [19:02] ok [19:02] yes it does that's how they track their work ;-) === sforshee-lunch is now known as sforshee [19:26] kees, hey [19:27] kees, it does for bugs like bug #760025, didrocks has a script which is running daily which does "also affect unity" when there is a bug on any of the unity components [19:27] Launchpad bug 760025 in nux (Ubuntu) "compiz crashed with SIGSEGV in nux::WindowCompositor::RenderTopViews()" [Undecided,New] https://launchpad.net/bugs/760025 [19:27] kees, that one is fix commited btw, the fix will land in natty after beta2 [19:37] seb128: nice! [19:38] kees, do you want me to reply to your email to say that? [19:39] seb128: for completeness, yeah, might as well, in case anyone else is reading that thread without this IRC context. [19:40] rickspencer3: I've replied to the TB thread now too. [19:40] kees, ok [19:40] kees, btw in case you didn't read what I told mdz before I do daily stats and review on the retracer logs, I'm happy to help you guys having a better overview of natty crashers if you need one [19:41] siretart: what's up with the ffmpeg/libav split? [19:41] seb128: cool, thanks. === hallyn_afk is now known as hallyn === dendrobates is now known as dendro-afk === hunger_ is now known as hunger === dendro-afk is now known as dendrobates === Claudinux_ is now known as Claudinux [20:32] is this at all normal? [20:32] mdz 1827 1.3 15.7 2221876 483528 ? Sl Apr10 62:04 compiz [20:47] mdz: not at all, https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/758248 [20:48] Ubuntu bug 758248 in nux (Ubuntu) "memory leaking in compiz" [High,Triaged] [20:48] Sarvatt, I just filed bug 760161 [20:48] Launchpad bug 760161 in compiz (Ubuntu) "Very high memory usage" [Undecided,New] https://launchpad.net/bugs/760161 [20:48] (also limited to a unity session I believe) [20:48] this is with a classic session === chuck_ is now known as zul [21:22] bdmurray: re #760140 - what version did you test? the archive version or the version from vorlon's branch? [21:23] bdrung: the version from vorlon's branch [21:23] bdrung: oh must of mispasted [21:24] then it makes sense :) [21:35] TheMuso: I'm removing hal from ubuntustudio-desktop; I hope that's OK [21:35] TheMuso: (bug 760008) [21:35] Launchpad bug 760008 in debian-installer (Ubuntu Natty) "amd_64 studio install fails" [High,Triaged] https://launchpad.net/bugs/760008 [21:40] TheMuso: the ubuntustudio.natty/audio-common seed inherits from desktop. Should ubuntustudio-generation and ubuntustudio-recording Depends: ubuntustudio-desktop to match that? [21:41] TheMuso: hm, and in fact all the other ubuntustudio tasks likewise === tkamppeter_ is now known as tkamppeter [21:53] @pilot out === udevbot changed the topic of #ubuntu-devel to: Archive: Beta-2/Feature/UI freeze | Development of Ubuntu (not support, not app development) | #ubuntu for support and general discussion for dapper -> maverick | #ubuntu-app-devel for application development on Ubuntu | http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://wiki.ubuntu.com/HelpingWithBugs | Patch Pilots: zul, Riddell [21:57] TheMuso: hal> or not - see #ubuntu-release and the commit log === sconklin is now known as sconklin-afk [22:44] cjwatson: No, because we want users to be able to install audio packages without pulling in the entire desktop and theme if they so wish. [22:44] cjwatson: and re hal, it can be removed. If its not done already, I can take care of it. === dendrobates is now known as dendro-afk [22:47] oh... read the log, hrm ok. === dendro-afk is now known as dendrobates [22:53] cjwatson, I don't know if you are around, but jamespage1 has encountered an oddity with initial language selection... http://inky.ws/g/96 I cannot reproduce it, http://erk.daviey.com/language-natty-first-screen.png .. both in KVM and md5sums match. === Sarvatt_ is now known as Sarvatt [22:53] both i386. [22:54] Daviey, cjwatson: just did a quick check on amd64 and get the same result. [22:55] jamespage1, what command line are you using to launch kvm? [22:55] Daviey: using virt-manager [22:56] jamespage1, ok... can you reproduce it spawning from the console? [22:56] Daviey: I'll take a look [22:58] rickspencer3, kees, mdz: http://paste.ubuntu.com/593780/ [22:58] rickspencer3, kees, mdz: the list of the retracers log for the week for bugs which had > 1 duplicate [22:59] rickspencer3, kees, mdz: it's count, bug number, title, components [22:59] rickspencer3, kees, mdz: if that's of any use to you [23:00] seb128, am I interpreting it correctly in that the long tail seems to be mostly not related to Unity or compiz? [23:01] rickspencer3, yes [23:01] seb128: thanks, it's pretty enlightening. seems like the ones at the top could really use attention. this might be a good report to keep on handy all the time. [23:01] rickspencer3, out of some exceptions which are fix commited since [23:01] seb128, are there any Unity specific crashers on that list that are not fixed or currently targeted to be fixed? [23:01] kees, the unity stack with > 5 are mostly with a fix ready [23:02] a quick read, they all appear to be fixed, but that's just from my recognition [23:02] rickspencer3, the ccsm one and maybe or two weird compiz ones like bugs on compiz --replace [23:02] they still plan to fix the ccsm one by natty if they can [23:02] but it's not a crash in normal use situation [23:02] it's when tweaking with options with something not installed by default [23:02] yeah, thought fixing it would be nice [23:03] so it's not really a stopper [23:03] indeed [23:03] it will be fixed in a sru if not in natty [23:03] seb128: sounds good [23:07] kees: ah, I haven't tried auto-raise with FFM [23:07] * pitti waves good night === FauxFaux_ is now known as FauxFaux === dendrobates is now known as dendro-afk [23:35] TheMuso: hmm, well, perhaps the other tasks shouldn't be inheriting from desktop then? [23:36] cjwatson: I guess not, I wasn't the one who set that up, at least I don't remember doing it. [23:36] Daviey: I didn't see the exact same symptoms, but it could easily be caused by bug 747090 [23:36] Launchpad bug 747090 in Ubuntu Translations "wrong return address sometimes pushed for INT in kvm (not qemu)" [Low,Triaged] https://launchpad.net/bugs/747090 [23:37] Daviey: try with qemu -no-kvm, or on bare metal? [23:38] cjwatson, ah, good thinking - will advice jamepage tomorrow to try. [23:39] Daviey: that's certainly known to affect gfxboot's language presentation in other ways, and to behave at least somewhat inconsistently [23:40] yeah [23:40] hopefully it is just that. === TerminX_ is now known as TerminX [23:51] hrm. did bazaar.launchpad.net just go away? [23:51] I think so [23:51] chasing [23:51] k [23:54] and the librarian, by the looks of things [23:55] network layer issue [23:55] is are on it