/srv/irclogs.ubuntu.com/2013/10/10/#ubuntu-devel.txt

=== freeflying is now known as freeflying_away
=== _salem is now known as salem_
=== freeflying_away is now known as freeflying
pittiGood morning03:31
pittidoko_: verbose systemd build> can do03:32
=== salem_ is now known as _salem
pittiinfinity: err, how is https://launchpad.net/ubuntu/+source/libgphoto2/2.5.2-0ubuntu5/+build/4964722 a "failed to build"?03:46
pittiinfinity: the build log got debs and ends with "built successfully" !?03:46
infinitypitti: Yeah, and then my lp-buildd hack failed it hard due to segvs in the ringbuffer.03:47
infinitypitti: I admit that I didn't make that overly verbose.03:47
pittiah03:47
infinitypitti: But it's a temp hack until we get some more stable buildds going.03:47
=== freeflying is now known as freeflying_away
pittiwhat does that grep for?03:48
* pitti has some trouble actually finding a segfault in the log03:48
infinitypitti: It's right at the end.03:48
infinityconftest[6966]: unhandled level 2 translation fault (11) at 0x00000008, esr 0x9200000603:48
infinityconftest[10403]: unhandled level 2 translation fault (11) at 0x00000008, esr 0x9200000603:49
=== freeflying_away is now known as freeflying
infinitypitti: Nothing you can do about it, don't worry.  We're working on it.03:49
pittiah, I thought something during the tests or so crashed, but apparently not03:49
pittiinfinity: ack, thanks03:49
infinityThose conftests are collateral damage from the segv checker not being able to be smart.03:50
infinityTurns out that's actually a subtle glibc bug, and those segv on all arches. :P03:50
infinityI'm testing an upload for that right now.03:50
=== bfiller is now known as bfill_afk
wgrantinfinity: Well, the test doesn't exactly segv on all arches... it just accidentally fails to build on most/all of the other archs :)05:04
infinitywgrant: Potayto, puhchicken.05:05
=== freeflying is now known as freeflying_away
pittiinfinity, ogra_: https://android.googlesource.com/kernel/msm/+/57195292 sounds promising for the "uevents for vsync" madness?05:24
infinitypitti: Yeahp, shame it's for the wrong driver.05:25
infinity(But hopefully this is a trend)05:25
infinitypitti: Does umockdev-testbed/script_replay_socket_stream rely on a specific kernel feature that might not be enabled on my arm64 buildds?05:46
pittiinfinity: well, I surely do hope that we have unix sockets there05:47
pittiotherwise, nothing I can think of05:47
=== stub` is now known as stub
=== freeflying_away is now known as freeflying
pittiinfinity: do we have a porter box for arm64 to investigate this?06:17
pittidoko_: done now; OOI, why do you need this? (it built fine on arm64)06:23
pittidoko_: (done in git, not uploaded yet)06:23
infinitypitti: No, we don't officially have any of the hardware we have. :P06:28
dholbachgood morning06:52
=== PaowZ_afk is now known as PaowZ_
NoskcajAre we still aiming to make 14.04 only ship python3?07:28
=== Trewas666 is now known as trewas
cjwatsonNoskcaj: on images, yes if possible, in the archive, that's a pipe dream and isn't going to happen07:33
cjwatsonnot that it's a bad idea to port things, just might as well have realistic expectations07:34
Noskcajcjwatson, I mean on the images. Is the spreadsheet to-do list still current?07:34
cjwatsonI doubt anyone's looked at the spreadsheet for some time07:34
cjwatsonwow, there's still a lot on the images :-/07:35
cjwatsonI guess the bulk of that is U1 (<- twisted)07:35
NoskcajI'll see if i can port testdrive one the gtk3 transition for it is finished. Although i really need one of the old devs to help with that07:35
Noskcajkirkland, speaking of which, is there any chance you'll ever have the time to help with gtk3 and python3?07:36
ogra_pitti, i added a comment with the link to bug 1234743 ... thanks07:41
ubottubug 1234743 in linux (Ubuntu) "omapfb module floods system with udev events on samsung galaxy nexus when playing mp4" [Undecided,Incomplete] https://launchpad.net/bugs/123474307:41
xnoxslangasek: yeah, I believe it's the bug report from the same person who was contacting me in private. Will investigate.07:49
ogra_WHEEE !07:53
ogra_http://review.cyanogenmod.org/#/c/28068/07:53
* ogra_ dances07:53
tvossogra_, ;)07:57
ogra_xnox, looks like we can drop the uevent filtering again if the above works07:58
xnoxogra_: wow =)08:00
xnoxthat's nice!08:00
xnoxogra_: is that how the rest of platforms work?08:02
ogra_xnox, dunno, and i'm not sure yet it will help us ... its not for a maguro kernel and i dont know if our PVR driver will get along with that change08:04
ogra_only trying it out will revel that ... i'll do that later today08:05
infinityThat's not the only driver that's seen that change, so there's some comfort in that.08:05
Laney@pilot in08:11
=== udevbot changed the topic of #ubuntu-devel to: Ubuntu 13.10 Beta 2 released | Archive: frozen | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> raring | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots: Laney
=== iahmad is now known as iahmad|afk
pittiogra_: oh, that looks promising!08:24
Riddellhow do I do a three way conditional in make?  I want to set something different for armhf in this http://paste.ubuntu.com/6217149/08:27
cjwatsonelse ifeq08:28
cjwatsonRiddell: though watch out for backwards conditional syntax there as the first branch is currently "all architectures other than powerpc"08:29
cjwatsonand should really be written as $(filter powerpc,$(DEB_HOST_ARCH)) rather than $(filter $(DEB_HOST_ARCH),powerpc), otherwise it's a trap for anyone trying to extend that08:30
cjwatsonactually maybe it's OK either way08:30
Riddellcjwatson: why do we use that backwards syntax with filter, why not just ifeq ($(DEB_HOST_ARCH),amd64) ?08:38
pittiRiddell: I guess the idea is if you want to extend matching to other architectures08:39
pittiRiddell: i. e. "powerpc ppc64" or similar08:39
henrix@pilot in08:40
=== udevbot changed the topic of #ubuntu-devel to: Ubuntu 13.10 Beta 2 released | Archive: frozen | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> raring | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots: henrix, Laney
cjwatsonRiddell: what he said08:41
cjwatsonRiddell: but a plain ifeq is fine too if you don't expect that *shrug*.  However it's not especially unlikely that we'll have a ppc64el port at some point soonish08:41
evchrisccoulson: hi. Are you familiar with apparmor and lxc? We're having some trouble talking to dbus when lxc confined: http://paste.ubuntu.com/6217202/08:44
=== iahmad|afk is now known as iahmad
xnoxbdmurray: can I or you somehow search all ubiquity bugs and check if "GET/HEAD requests should not include body." is in the syslog ?09:21
xnoxbdmurray: i think i am managing with ubuntu-bugpatterns. Wrote my first pattern and the search is running.09:42
=== gusch is now known as gusch|lunch
=== tkamppeter_ is now known as tkamppeter
evpitti: thanks for clarifying the apport-retrace stuff!10:19
pittiev: yw :)10:19
=== doko_ is now known as doko
dokopitti, postgres ping?11:06
pittidoko: waiting for the upstream release announcement (folks are in the US)11:11
=== MacSlow is now known as MacSlow|lunch
=== gusch|lunch is now known as gusch
jtaylorcan one get a list of package versions installed during adt tests?11:33
jtaylorI wondering about the scipy failure, the only change which falls in this 3 hour timeframe is glibc update11:33
jtaylorbut I can't imagine how that could cause this type of failure11:34
jtaylorbut I have no idea if it ran with ubuntu2 or ubuntu311:35
=== MacSlow|lunch is now known as MacSlow
infinityjtaylor: Seems more likely that it's a sketchy non-deterministic test, rather than glibc breaking it.11:49
jtaylormight be, but it worked reliably for a long time11:51
infinityjtaylor: It ran against the latest glibc.11:52
infinityjtaylor: https://jenkins.qa.ubuntu.com/job/saucy-adt-python-scipy/ARCH=i386,label=adt/50/console11:52
infinityjtaylor: Click "full log" at the top of the log.11:53
infinityjtaylor: Then you can see it doing some upgrading and installing bits.11:53
jtaylorthx11:53
infinitypitti: Erm, the adt systems are qemu right, not xen?11:53
pittiinfinity: yes11:53
infinitypitti: Then why do the i386 VMs have libc6-xen installed?11:54
Laney@pilot out12:00
=== udevbot changed the topic of #ubuntu-devel to: Ubuntu 13.10 Beta 2 released | Archive: frozen | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> raring | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots: henrix
pittiinfinity: (re from dinner) err -- they certainly aren't supposed to; checking12:26
ogra_pitti, the omapbf patch is a no go ... seems something actually makes use of the uevents on the other side12:27
ogra_*omapfb12:27
ogra_*sniff*12:27
pittiinfinity: ah, it's in the cloud images already: http://cloud-images.ubuntu.com/saucy/current/saucy-server-cloudimg-i386.manifest12:27
infinitypitti: Kay.  Theoretically shouldn't do any harm (or, indeed, load at all) on a non-xen system, but it looked odd.12:28
pittiinfinity: that seems a bit questionable indeed; but we can certainly purge that from the auto-package-testing VMs as we know they won't run on xen12:28
pittiinfinity: is that causing some test failure troubles?12:28
infinitypitti: It shouldn't be.  If it is, it's my bug. :P12:28
pittiinfinity: heh, ok12:29
infinitypitti: It was more just something I noticed in passing, looking at an i386 log.12:29
Riddellpitti: are you still incharge of langpacks?12:41
pittiRiddell: yes12:41
Riddellpitti: could it be possible to include kubuntu-patched-l10n in language-pack-xx ?12:42
mvohi, I keep getting firefox crashes on my saucy box "g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting." - is this a known saucy issue? http://paste.ubuntu.com/6217833/ - I have it in gdb12:43
Riddellpitti: we use upstream translations for almost everything but there is a couple of patches with i18n which get extracted into kubuntu-patched-l10n only nothing then installs the kubuntu-patched-l10n .po file12:43
xnoxmvo: do you have matching latest kernel & apparmor  in saucy?12:43
xnoxmvo: if not fully dist-upgrade and reboot.12:44
pittiRiddell: you mean that package installs its own translation domain?12:44
pittiRiddell: and we should install that into the langpacks? or you need this package as a dependency? (which would be harder, and I think you should just seed it)12:44
mvoxnox: I think so, I upgraded yesterday or so and restarted since12:44
* mvo double checks12:45
Riddellpitti: it includes kubuntu-patched-l10n.pot in the source and that gets put into launchpad where nothing else happens with it12:45
pittiRiddell: ah12:45
pittiRiddell: yeah, no problem12:46
zygaslangasek: hey12:46
zygaslangasek: looking at mountall 2.52 now12:46
pittiWARNING: unknown translation domain: kubuntu-patched-l10n12:46
pittiRiddell: ^ ack12:46
pittiRiddell: added to overrides and rolled out12:47
Riddellpitti: that warning seems scary but it means everything is ok?12:47
pittiRiddell: as it happens I'm waiting for LP to give me a full new export, for building the saucy final langpacks; should happen this evening or tomorrow morning12:47
pittiRiddell: it meant that the po files are in the tarball, just that langpack-o-matic previously didn't know what to do with it12:48
pittias it isn't appearing in any binary package12:48
zygaslangasek: do I need debhelper 9.20120410 or can I keep using the old one from precise?12:49
=== _salem is now known as salem_
zygaslangasek: ok, apparently standards version and debhelper weren't that relevant, rebooting to check12:53
zygaslangasek: success on first try, this looks promising12:54
henrix@pilot out13:03
=== udevbot changed the topic of #ubuntu-devel to: Ubuntu 13.10 Beta 2 released | Archive: frozen | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> raring | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots:
apwtvoss, hey, would you be a good person to ask about location-service and platform-api.  if i am reading this right, they seem to have developed a mutual build dependancy preventing them building on powerpc13:13
cjwatsonI wouldn't expect that stack to build on powerpc13:13
tvossapw, powerpc?13:13
ogra_aww, bad, so no map apps on powerpc phones then13:14
cjwatsondon't they end up at qtdeclarative sooner or later?13:14
cjwatsonmir isn't built on powerpc, various other things in that stack probably aren't either13:14
cjwatsonapw: I'd pick something else ;-)13:14
tvosscjwatson, that's my understanding, too13:14
apwtvoss, they seem to have Architecture: any in 'em but hey13:15
cjwatsontvoss: circular build dependencies are bad news in general, though; they're a pain when bootstrapping new ports13:15
apwcjwatson, will do13:15
cjwatsonapw: A bunch of things are Architecture: any when they aren't intrinsically restricted themselves13:15
tvosscjwatson, I can break that package up post freeze13:15
cjwatsonThis is generally fine13:15
tvossapw, would that be fine for you?13:15
cjwatsontvoss: (The new port we're bootstrapping right now, I confidently predict you will care about it rather soon)13:15
apwtvoss, i will poke something else, it sounds like you have it on your radar13:16
tvosscjwatson, as long as it is after this week, I'm happy to care about it :)13:16
=== psivaa is now known as psivaa-afk
cjwatsonapw: missing powerpc builds are only a problem if the same package used to build so it's blocking proposed-migration13:18
mdeslaurogra_: oh darn, and here I was building my own powerpc phone! I managed to get it down to 8 kg13:18
apwcjwatson, ack13:18
=== bfill_afk is now known as bfiller
cjwatsonev: would you mind fixing https://launchpadlibrarian.net/153264198/buildlog_ubuntu-saucy-arm64.libtimezonemap_0.4.0.1_FAILEDTOBUILD.txt.gz ?  I don't have commit access to the branch ... basically the problem here is a general one exposed by the particular setup of our arm64 builders at the moment; you can see the real problem if you search for "segmentation fault" in the log13:40
cjwatsonit looks like the test either needs to tolerate not being able to open that file, or it needs to take an argument to let it read that file from the build tree during tests, possibly both13:40
evwe have tests?!13:41
* ev looks13:41
cjwatsonwell, sort of a test13:42
evcjwatson: still making sense of the code, but I'll take care of it13:47
cjwatsonta13:48
evcjwatson: how's that http://paste.ubuntu.com/6218121/14:03
cjwatsonev: LGTM aside from indentation, thanks14:10
evoh man14:15
bdmurrayxnox: for future reference I have a local collection of ubiquity bug attachments and descriptions for quick searching14:15
evWHO USES TABS ANYMORE14:15
* apw for one14:16
xnoxev: https://plus.google.com/109160032876474505377/posts/2K7iAEALrSH14:16
evHAHAHAHA14:16
xnoxbdmurray: ah, I see. I think my bugpatter sucked, can you still do a search for that string?14:16
bdmurrayxnox: yes, and they are already consolidated14:17
xnoxbdmurray: ah, cool. thanks a lot.14:17
ogra_mdeslaur, hey, thats still lighter than my sparc phone ;)14:26
jdstrandev: looking at http://paste.ubuntu.com/6217202/-- lightdm is running in the container?14:31
=== pete-woods is now known as pete-woods-away
evjdstrand: I'm not sure, but stgraber followed up with Mirv: https://pastebin.canonical.com/98867/14:32
jdstrandok14:32
jdstrandthanks14:32
jdstrandtyhicks: curious: https://pastebin.canonical.com/98867/. it seems odd to me that lxc would all of a sudden start seeing this-- is that because AF_UNIX wasn't mediated it was just being passed though with no dbus mediation, but now that it is, dbus is getting mediated? that seems odd to me14:35
jdstrandtyhicks: I don't think it requires a lot of time to investigate since lxc was updated-- I just find it weird since we have had dbus mediation since august but lxc only saw it after the recent kernel/dbus uploads14:36
jdstrandtyhicks: s/only saw/seemingly only saw/14:36
tvossogra_, remind me, who was looking into the upstart memory issues?14:38
=== psivaa-afk is now known as psivaa
=== ricmm_ is now known as ricmm
ogra_tvoss, several people14:39
ogra_(in a mtg, more details later)14:39
tvossogra_, ack14:40
=== freeflying is now known as freeflying_away
ogra_tvoss, so cking was originally looking at the kernel side of this bug, i did too today (to find we cant fix it there) ... jodh fixes the "§upstart doesnt free memory on dbus disconnect", xnox did already add a filter for the uevent to upstart-udev-bridge to avoid upstart picking up all the uevents and he is now looking into a netlink filter to do the same for udevd (since that still consumes 5-10% CPU while the screen is on thanlks to t14:56
ogra_he event spam)14:56
ogra_tvoss, so with xnox finishing that the bug should be worked around enough to be fine for release (we should re-visit the kernel part in T)14:57
ckingthat sounds most fine14:58
xnoxyeap. Not sure if i will have the udev fix today or not.14:58
ogra_cking, well, i would like to get rid of the event rather sooner than later or hide it on a lower level at least14:58
ckingindeed14:59
ogra_filtering on all levels wont stop the traffic14:59
ogra_and i strongly assume thats what kills our performance on maguro14:59
=== freeflying_away is now known as freeflying
dokomterry, https://bugs.launchpad.net/ubuntu/+source/mir/+bug/1203207 why committed and not fixed? it's promoted15:06
ubottuUbuntu bug 1203207 in mir (Ubuntu) "[MIR] mir" [Undecided,Fix committed]15:06
mterrydoko, oh right, it was pre-promoted15:06
mterrydoko, changed15:07
tvossogra_, okay, trying to understand this ... why do we accumulate memory somewhere in userspace?15:14
ogra_tvoss, bug 1234743 causes 60 uevents per second (one for each vsync) ... upstart-udev-bridge picks it up15:15
ubottubug 1234743 in linux (Ubuntu) "omapfb module floods system with udev events on samsung galaxy nexus" [Undecided,Incomplete] https://launchpad.net/bugs/123474315:15
ogra_tvoss, due to bug 1235649 each of the uevents gets accumulated in ram by the session upstart15:15
ubottubug 1235649 in unity (Ubuntu Saucy) "uevent spam causes session upstart to consume massive amounts of memory on Ubuntu Touch" [Undecided,New] https://launchpad.net/bugs/123564915:15
ogra_tvoss, additionally udevd gets some load due to processing all these udevents15:16
ogra_*uevents15:16
tvossogra_, in my perfect little world, fixing 1235649 would help15:17
tvossogra_, modulo udevd being quite busy15:17
ogra_tvoss, the fix for 1235649 means that upstart just frees the ram on disconnect ... there is no proper way to prevent it from collecting valid uevents15:18
ogra_tvoss, we added an improper filtering mechanism for this, but the real fix would be to fix 123474315:18
tvossogra_, sure, agreed15:18
ogra_tvoss, we only work on hiding the fallout15:18
ogra_the traffic is still happening and will eat performance15:19
=== freeflying is now known as freeflying_away
=== MacSlow is now known as MacSlow|afk
=== MacSlow|afk is now known as MacSlow
=== dholbach_ is now known as dholbach
=== pete-woods-away is now known as pete-woods
zygastgraber: ping16:05
zygastgraber: is it safe to use _lxc from ubuntu-precise with a updated version of python-lxc from trunk?16:05
zygaslangasek: hey, it works, did a dozen reboots, no hangs anymore16:06
slangasekzyga: spiff16:06
zygaslangasek: will this come to ubuntu precise?16:07
stgraberzyga: we build and usually support current LXC on all supported releases starting with precise, so yes, running current LXC on precise should be fine16:08
zygastgraber: I mean -- just the pure python bits while the _lxc module comes from 12.04 stock (0.8 IIRC)16:08
slangasekzyga: dunno, I would need to age it a bit to watch for further regressions and by then it might be too late to be worth it16:09
stgraberzyga: stock precise doesn't have python3-lxc16:09
stgraberzyga: and doesn't have the liblxc0 library you need for that either16:09
tyhicksjdstrand: No, the dbus message sending/receiving mediation point is completely separate from the AF_UNIX connect() mediation point16:10
zygastgraber: it has here?16:10
stgraberzyga: that's because you're pulling it from the precise-backports ;)16:11
tyhicksjdstrand: adding in the AF_UNIX connect() mediation point wouldn't suddenly cause dbus message send/receive denials16:11
zygaah, it's from backports16:11
zyga:)16:11
zygaslangasek: hmm, so precise is going to stay broken?16:13
zygaslangasek: don't our customers hit that or anything? I mean the next LTS is 6 months away16:13
slangasekzyga: clearly they don't, since you're the first person to report this issue16:13
zygaslangasek: wow, nobody uses nfs nowadays :)16:14
zygaslangasek: is the bug specific to nfs btw?16:14
slangasekzyga: it probably affects all network filesystem types16:17
zygaslangasek: ceph?16:17
slangasekif mounted at boot time via /etc/fstab, I don't see why it wouldn't be affected16:17
slangasekbut it's not as simple as "if you have network filesystems, you hit this bug"16:18
slangasekI have network filesystems mounted at boot, since before precise, and never hit this bug16:18
zygaslangasek: ah, so it was caused by that nested mount point?16:18
zygastgraber: lxc-create hangs on flock -x 200, any idea why that may happen?16:18
zygastgraber: works on my desktop, hangs on my server (both 12.04)16:18
slangasekzyga: honestly, there were so many things that were just slightly wrong that I'm not going to try to untangle that right now and tell you what the root cause was16:19
cjwatsonslangasek: reviewing your grub branch for bug 123662516:19
ubottubug 1236625 in grub2 (Ubuntu) "grub-install fails to set up /boot/efi/EFI/ubuntu/grub.cfg with UEFI and LVM root" [High,In progress] https://launchpad.net/bugs/123662516:19
slangasekcjwatson: what'd I do wrong? :)16:19
cjwatsonslangasek: I'm not convinced that --target=efi_hints always outputs a single drive name suitable for use in $root16:19
slangasekright, I didn't know if it did either16:19
cjwatsonslangasek: in fact it seems to explicitly output delimiter-separated names16:19
zygaslangasek: fair enough :)16:19
slangasekcjwatson: cut -f1 ?16:20
cjwatsonpossibly but I wonder if there's a better way16:20
zygaslangasek: but IIRC after dropping all exotic cases it was still hanging with just a bunch of mount points16:20
cjwatsonjust reading through that code closely now16:20
slangasekzyga: well, one of the issues we did find in your case was "names resolvable before the network is up"16:21
zygaslangasek: ah, right16:21
cjwatsonslangasek: you know, I'd almost be more comfortable using the search.fs_uuid path anyway16:23
cjwatson(if it works)16:23
cjwatsonslangasek: the hints mean that it shouldn't be inefficient - it'll try the hinted locations first16:23
slangasekcjwatson: yeah, it will work16:24
cjwatsonslangasek: you could even reduce a lot of the complex duplicated code, then16:24
slangasekcould you?16:25
cjwatsonCould the test on line 641 just become "if no abstraction || (efi && uefi_secure_boot && -e efi_signed)"?16:25
slangaseklet me check16:25
slangasekyeah, seems plausible; want me to test that here?16:26
cjwatsonyes please :)16:27
cjwatsonthat avoids having to copy the horrible regex and stuff16:27
* slangasek nods16:27
slangasekcjwatson: well, efi_signed is only set at line 83716:29
cjwatsonyeah, you'll need to hoist that up, but that'e asy16:30
cjwatson*that's easy16:30
cjwatson$source_dir and $efi_suffix are already defined16:30
=== mbiebl_ is now known as mbiebl
cjwatsonby the if block ending line 512 at the latest16:31
slangasekcjwatson: yeah, it found its brain on reboot.  Want me to update the patch?16:34
cjwatsonplease, then I'll be happy to merge16:34
cjwatsonsorry for the delay, the copied code entirely melted my brain before I realised it was copied :)16:34
slangasekah :-)16:35
zygabrb16:36
=== bfiller is now known as bfiller_afk
=== yofel_ is now known as yofel
slangasekcjwatson: branch updated16:45
=== ChickenCutlass is now known as ChickenCutlass_l
=== Maple[] is now known as RDisBestPony
infinitypitti: Can you upload your fixed umockdev?16:57
bdmurraycjwatson: is the v-done tag in bug 1234705 for every release?17:00
ubottubug 1234705 in apt (Ubuntu Raring) "apt-ftparchive writes SHA256 checksums in place of SHA512 in Sources" [High,Fix committed] https://launchpad.net/bugs/123470517:00
cjwatsonbdmurray: Yes17:01
cjwatsonslangasek: You meant to include MokManager bits in that latest version?17:03
slangasekcjwatson: hnngh no, sorry17:04
cjwatson(should I anyway?  but if so it should be a separate patch)17:04
slangasekcjwatson: there's a separate mp for that open17:04
cjwatsonwhoops, better look at that too then :)17:05
cjwatsonI think it will be just after final freeze though :(17:05
slangasekcjwatson: cruft removed, repushed17:06
cjwatson(but I'll go for an exception, I think it's reasonable)17:06
cjwatsonslangasek: any chance you could quickly refactor https://code.launchpad.net/~vorlon/ubuntu/saucy/grub2/mokmanager-support/+merge/187148 to make the mokmanager changes be a separate ubuntu_* patch on top?  I might coalesce when I merge into Debian, but I find that having changes to the Debian patches not be in separate patches is a recipe for me getting confused17:08
slangasekcjwatson: looking17:11
cjwatsonslangasek: ok, got to EOD now as I'm already late, but I can merge this later tonight17:16
cjwatsonslangasek: (already merged your first branch)17:16
slangasekcjwatson: thanks - and mokmanager branch re-pushed now17:17
cjwatsonslangasek: thanks17:23
cjwatsonslangasek: ok, you're in luck, uploaded, but somebody else will have to tend grub2-signed17:25
cjwatsonuploading anyway17:25
slangasekcjwatson: ack, thanks :)17:25
mdeslaurev: might want to check out 1238139 to make sure18:01
hallynthis is odd - i'm on a precise system, doing 'apt-get build-dep qemu-kvm'.  it says it can't find source package.  apt-cache show qemu-kvm indeed doesn't show the source pkg name (which is qemu-kvm)18:05
sarnoldhallyn: deb-src lines in your sources.list ?18:05
hallynyup18:06
hallynoh well, using dpkg-checkbuilddeps by hand...  i seem to have messed something up earlier18:07
evmdeslaur: that code hasn't changed in literally years. I'd be quite surprised if this were true. I'll endeavour to look at it tomorrow18:08
* ev home18:08
mdeslaurev: yeah, I have the same feeling18:08
=== ahasenack is now known as andreas
dobeyhallyn: "apt-cache show" doesn't show the "Source:" entry for packages where source name == binary name18:15
sarnoldI wish it did, that'd make grep ^Source a lot more useful..18:16
=== bfiller_afk is now known as bfiller
=== ChickenCutlass_l is now known as ChickenCutlass
hallyndobey: interesting.  like sarnold i wish it did :)18:18
hallynthx18:18
=== RDisBestPony is now known as Maple[]
stgraberhallyn: just do apt-cache showsrc <binary package name>18:23
stgraberand grep ^Package on that one18:23
dobeyyeah18:25
slangasekbdmurray: do you have a reproducer for bug #1024590?18:38
ubottubug 1024590 in update-manager (Ubuntu Saucy) "update-manager crashed with AttributeError in _on_download_changed(): 'NoneType' object has no attribute 'get_value'" [Medium,Confirmed] https://launchpad.net/bugs/102459018:38
bdmurrayslangasek: unfortunately, no18:38
slangasekbdmurray: ok.  looking at the code, I'm not sure why this is valid in the first place... this is a subclass of Gtk.Treeview, which http://www.pygtk.org/docs/pygtk/class-gtktreeview.html says is a subclass of Container, and http://www.pygtk.org/docs/pygtk/class-gtkadjustment.html says gtk.Adjustment applies to various things but not to GtkContainer.18:42
minohi :) how does dhclient get called? Where is the script that parses the network config? I have a problem that dhclient is not listening on a second dhcp interface if i use vlans18:54
ekarlsois there a way to create a "bootstrapped" / initial debian folder inside a source folder ?19:25
lifelessekarlso: make-dpkg or something like that exists, I forget the name19:29
leniosekarlso, dh-make ?19:53
bdmurraypitti: Do you have any opinion on the SRU of bug 1215911?20:31
ubottubug 1215911 in initramfs-tools (Ubuntu Raring) "wait-for-root fails to wait for plain /dev/sdaX partitions." [Medium,Fix committed] https://launchpad.net/bugs/121591120:31
=== bschaefer_ is now known as bschaefer
ricardobarbosamshi21:34
ricardobarbosamsi try deploy router proxy-arp21:34
ricardobarbosamsbut not working21:34
ricardobarbosamsi set /proc/sys/net/ipv4/all/proxy_arp21:34
ricardobarbosamsexists any module for kernel for working?21:35
ricardobarbosamsmy version ubuntu 13.0421:35
sarnoldricardobarbosams: does "sysctl -a | grep proxy_arp" show you anything interesting or unexpected?21:39
ricardobarbosamsroot@ubuntuDELL:~# sysctl -p | grep proxy_arp21:40
ricardobarbosamsnet.ipv4.conf.eth0.proxy_arp = 121:40
ricardobarbosamsnet.ipv4.conf.eth1.proxy_arp = 121:40
ricardobarbosamsroot@ubuntuDELL:~#21:40
ricardobarbosamsin tcpdump displaying the request arp, but not response21:41
ricardobarbosams17:41:15.262145 ARP, Request who-has 172.16.200.3 tell 172.16.200.2, length 4621:41
ricardobarbosams17:41:16.262597 ARP, Request who-has 172.16.200.3 tell 172.16.200.2, length 4621:41
=== Laney changed the topic of #ubuntu-devel to: Ubuntu 13.10 Beta 2 released | Archive: frozen, final freeze | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> raring | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots:
CyclicFluxGood day all. I have a bit of a prob, and had a question or two.21:50
CyclicFluxWhile upgrading from 12.04, to 12.10, my electricity went out causing my system to lose power. Recovery appears to work21:50
CyclicFluxcould I do a chroot, and then continue the upgrade process?? Or is it best to do it with a Ubuntu 12.10 alternative install Disk.21:51
slangasekCyclicFlux: define "recovery"?  If the system boots, you may as well try 'dpkg --configure -a && apt-get -f install && apt-get dist-upgrade'.  Worst case is that you lose the time it takes trying to run, and have to resort to a reinstall; best case is that it completes successfully22:11
=== salem_ is now known as _salem
=== freeflying_away is now known as freeflying

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!