/srv/irclogs.ubuntu.com/2014/02/26/#ubuntu-devel.txt

=== sarnold_ is now known as sarnold
LinuxPCDoes anyone know of an app to use to connect my LG cell phone to my HP Laptop, so that I can transfer files between the 2 devices?01:54
LinuxPCI am using Ubuntu 12.04 on my laptop01:55
sarnoldLinuxPC: if you have bluetooth in both you can probably use a bluez-provided obex transfer mechanism02:02
sarnoldLinuxPC: there are a variety of webserver kinds of applications available for many cell phone operating systems, if you can configure one of those you may be able to then use wget --mirror or similar on your laptop..02:03
=== mwhudson is now known as zz_mwhudson
=== zz_mwhudson is now known as mwhudson
LinuxPCi will give that a try02:22
LinuxPCthanks02:22
YokoZarpitti: Err I hadn't looked into it further, I suppose that means I'm supposed to nudge you02:30
=== mwhudson is now known as zz_mwhudson
=== doko_ is now known as doko
Noskcajwhat happened to qa.ubuntuwire.com ?07:10
geserNoskcaj: what's wrong with it? It's available for me07:24
pittiGood morning07:43
pitticjwatson: vala mocks> I'm afraid I don't have a recommendation; I haven't used mocks in Vala myself yet, but you might be able to use cmocka?07:45
pittislangasek: I figure containers can't do modprobe07:46
pittislangasek: so that's a test which we need to mark as "does not work in containers" then07:46
Noskcajgeser, all the parts pointed to qa.ubuntuwire.org no longer work. e.g. reverse-depends07:46
Noskcajand my bookmark of the ftbfs list07:46
pittiinfinity: right, ppc64 is using clone, no overlays; arm is using overlayfs still07:46
pittiinfinity: yes, the arm/ppc64 jobs live in their own sections instead of being part of the matrix job, mostly because we don't gate on them yet07:49
infinitypitti: Right, okay, then the armhf/eglibc failure is an overlayfs grump (and why I use aufs instead of overlayfs for my sbuild schroots).07:50
infinitypitti: I'll have to look at that bizarre ppc64el failure sometime though.07:50
pittiinfinity: aufs completely broke all ppc builds on Monday, so I reverted it07:50
infinitypitti: Oh, super fun.  Can't win, I guess.07:51
infinity(I use it on all arches here, but that's all arches except ppc64el, maybe there's a bug there that needs sorting)07:51
pittiinfinity: wiht that, upgrading python3.3 in the chroot failed with a dpkg "cannot rename file" error07:51
infinityI guess I should test it in a ppc64el VM and whine at Andy.07:51
pittiinfinity: then I gave up and just use cloning; much slower, but avoids that kind of fun07:52
infinitypitti: What was the backing store for your aufs?  ext4 on ext4?  tmpfs on ext4?  Any LVM in play?07:52
pittiinfinity: I had expected tmpfs on ext407:52
pittino LVM07:52
infinityLVM snapshots are, really, the least dangerous way to do what you're trying to do here, to be fair, it's just far more of a pain to set up.07:53
infinity(Pot calling the kettle black, cause I should be using LVM for my sbuild/schroot setup too, and don't)07:53
pittiinfinity: well, everything which actually hits the disk is already slow07:54
pittiinfinity: on my laptop I build everything on tmpfs overlays (containers, schroots, etc.); way to go07:54
infinitypitti: Yeah, I use tmpfs-aufs-on-ext4 on my laptop.07:54
=== jackson is now known as Guest46812
=== Guest46812 is now known as Noskcaj
dholbachgood morning08:19
Noskcajevening dholbach08:19
dholbachhi Noskcaj08:20
NoskcajCould you please send another call for sponsors email sometime soon?08:21
dholbachNoskcaj, you could send one as well? :)08:23
Noskcaji wasn't sure i was allowed to, plus you saying it will probably be heard by more08:24
dholbachof course you are08:24
dholbachI'm going to run around like a headless chicken for the rest of the day, because I have quite a lot of work ahead of me08:25
dholbachso feel free to send the mail08:25
dholbachand I'll follow up to it08:25
Noskcajok, which list(s)?08:25
dholbachubuntu-devel@ should be good08:26
Noskcajok08:27
geserNoskcaj: I just checked again and for me both qa.ubuntuwire.com and .org work08:31
Noskcajstrange08:31
=== freeflying is now known as freeflying_away
=== freeflying_away is now known as freeflying
seb128infinity, thanks for fixing firefox/ppc!09:10
infinityseb128: NP.  Tomorrow sometime (I hope), there should be a ppc porter back online too (that's where I did all my iterative test builds to burn it in)09:11
=== shookees is now known as Guest3383
seb128infinity, nice09:13
cjwatsonpitti: Mm, yeah, cmocka is the closest I've seen.  I suspect that I might actually end up borrowing ideas from it rather than using it directly09:20
cjwatsonpitti: Since I'm translating selected code from Python to Vala (this is in click), I was actually thinking of writing a crazy Python decorator which generates LD_PRELOADable libraries on the fly and re-execs single tests with them :-)09:22
cjwatsonpitti: But still need to experiment ...09:22
pitticjwatson: I'm not aware of anything resembling python-mock for Vala (would probably be rather difficult to do as C doesn't have the dynamism of py)09:23
pitticjwatson: what do you want to mock in particular?09:24
cjwatsonpitti: The equivalent of things in Python like (a) faking up os.stat/os.chown so that I can run ensure-file-ownership tests without root (b) installing a mock subprocess.call so that I can test which subprocesses a method would run09:25
cjwatsonhttp://paste.ubuntu.com/6998847/09:25
pitticjwatson: ah, that indeed sounds like LD_PRELOAD09:26
cjwatsonYeah.  I was toying with translating the relevant bits of the test suite to Vala too, but I'm not sure that actually helps a whole lot, and I'd be more comfortable leaving the test suite in more or less its original state09:26
cjwatsonDynamically generated LD_PRELOAD isn't going to be as convenient as mock.patch, but I *might* be able to get it to the point where it isn't a horrible wart09:27
cjwatsonMaybe09:28
pitticjwatson: crap's uid_wrapper (http://cwrap.org/#learnmore) provides something like this, but not for chown; but we don't have a package for cwrap anyway09:28
pitticjwatson: I guess you'd just need some extension of fakeroot which logs the calls and simply ignores them?09:28
cjwatsonBackground: I'm translating bits of click from Python to Vala (could also be C but Vala worked out much easier) so that I can export a libclick to other bits of the phone middleware stack so that they don't have to use the slow exec("/usr/bin/click") path for certain queries - this is expected to save anything up to a second from app startup time09:29
pitticjwatson: actually, if you test this in-process instead of a separate process, you might just be able to define chown() etc. in your test, instead of going through the LD_LIBRARY dance?09:29
cjwatsonI have indeed also thought about the approach of making all the relevant calls go through some kind of function pointer scheme that I can substitute in the tests09:30
cjwatsonThat's a bit more invasive though09:30
pittiah, like introducing a FileOp class with wrappers, which the test can subclass; but that would still only work in-process09:30
cjwatsonYeah, and also it seems distinctly non-trivial to do in Vala09:31
cjwatsonIt doesn't really want to assign to non-delegate functions09:31
pitticjwatson: so your tests are in-process?09:31
cjwatsonYes09:32
pitticjwatson: if so, perhaps a cheap trick would be to link it to a test_posix.vapi which re-routes Posix.chown() and friends to your test wrapper?09:32
cjwatsonSo, I only want to do this for certain tests, and I'd like to avoid having to relink libclick.so all the time09:33
pitti(I haven't tried that myself, you might get some "already defined" error)09:33
cjwatsoni.e. I'd like to be able to run the tests against the genuine as-will-be-shipped libclick.so09:33
pitticjwatson: hmm; I think in the end a standalone LD_PRELOAD lib which logs the calls instead of executing them might be best09:34
pittiit's not hard to do, and it will work for any programming language you might port click to in the future09:34
pittiand it's very flexible as you can load it or not in different scenarios09:34
cjwatsonYeah, provided relevant function names are reasonably stable anyway09:34
pitticjwatson: it's mostly chown, execve(), stat, and getpwnam()?09:35
cjwatsonI actually really like Vala, mostly, and I can sort of imagine how one might do a better mocking framework in it, but I think it needs extensions to the core language09:35
pitti*nod*09:35
pitticjwatson: I like the language and design of Vala too; it just feels like its development got stuck halfway in, one hits rough corners quite often09:36
pittitoo bad09:36
pittiit's quite understaffed as not that many projects are using it; chicken-egg09:37
cjwatsonWell, I sent a couple of trivial patches for it anyway :)09:37
xnoxsince it's C# inspired, using similar syntax to established mock libs, e.g. https://github.com/Moq/moq409:38
pittiwell, C# uses bytecode and a runtime interpreter/compiler, so there's more places to stuff in mocks09:39
pittivala is by and large just a transpiler to C, so there's no extra runtime layer to do modifications09:40
tvosscjwatson, is there a specific reason you have chosen Vala for libclick?09:40
pittibut you can certainly do that in pricinple at compile time, by allowing vapis to get swapped out or partially overridden09:40
cjwatsontvoss: Yes, I wanted gobject-introspection so that I had trivial bindings in Python because I'm only rewriting part of click, not all of it; I tried both C and Vala and the latter came out much more readable and compact09:41
cjwatsonI wanted to put just about zero effort into bindings09:42
cjwatsonpitti: Well, you could also switch around symbols at run-time in the kind of way cmocka does; doing that at the Vala layer would be helpful because it could make it type-safe09:43
cjwatsonAnd automatically clean up, etc.09:43
tvosscjwatson, well, we were rewriting the scopes engine to get rid of Vala. As pitti pointed out, it's kind of half finished09:45
cjwatsontvoss: Different contexts, I think09:46
pittiI use vala in umockdev for pretty much the same reasons: It's much more compact, utterly fast (essentially C speed), and I get automatic bindings09:46
pittiand it effortlessly mixes C anc Vala code, so I can write the tricky bits (the preload library) in C09:46
cjwatsontvoss: While I do need to solve the test-suite issues, this is mostly a matter of Vala failing to help me out rather than a matter of Vala getting in my way - I'd have the same basic set of things to solve in C09:47
cjwatsontvoss: And I'm not prepared to use C++ for anything ever, sorry :-)09:47
pittiyeah, C++ is an utter pain for libraries (aside from being comparatively hard to grasp)09:48
cjwatsonI'm also simply not skilled in it09:48
cjwatsonAnd I know better than to think I can teach myself it properly in a short time09:48
tvosspitti, I'm not sure that I agree that C++ is a pain for libraries09:48
cjwatsonAs I say, I'm very happy with how the core libclick code looks in Vala09:49
tvosscjwatson, ack09:49
pittitvoss: well, it combines "brittle ABI" with "zero bindings for other languages"09:49
cjwatsonAlso, I need to interface with code currently written in C/GObject; one of those projects is the most important client for this09:49
tvosspitti, define brittle ABI please, I think that's one of the most common misconceptions about C++09:49
pittiI also find it comparatively hard to grasp, but I'm well aware that this may just be a personal grudge, and it's certainly not an objective argument09:49
tvosscjohnston, which one is that?09:50
cjwatsontvoss: upstart-app-launch09:50
tvosscjwatson, ack09:50
cjwatsontvoss: So you won't ever be asking us about symbol management issues again, then? :-)09:50
pittitvoss: it's way too easy to break the ABI inadvertently, unless you are really careful09:50
tvosspitti, zero bindings is not true, specifically generating python bindings for C++ and Javascript is super easy09:50
tvosscjwatson, I think the symbol mgmt. issue arises from our tools not being fit for the job09:50
cjwatsonI think that's simplistic09:51
tvosscjwatson, that's not a question or language property09:51
tvosscjwatson, I have to argue against that. I spent a fair amount of time on the symbols topic and dpkg-gensymbols is tailored towards a C world09:51
* pitti pulls himself out of the "my language is better" discussion before getting too deep in it; we all have our preferences ;)09:51
tvosscjwatson, which is perfectly fine, not argueing about that09:51
cjwatsonI think it would be more accurate to say that dpkg-gensymbols is tailored towards the ELF representation of the binary09:52
infinitypitti: That python-cffi upload of yours, jtaylor thinks it's a toolchain bug.09:52
pittiinfinity: this one drives me crazy; I sbuilt it in trusty-i386, and I can't reproduce it09:53
infinityhttps://sourceware.org/bugzilla/show_bug.cgi?id=1662509:53
ubottusourceware.org bug 16625 in libc "sin gives wrong result with 2.19 on i386" [Normal,New]09:53
infinitypitti: Really?09:53
pittiinfinity: even without the most recent patch (which sounded related, but apparently wasn't)09:53
pittiinfinity: ooh, 2.19; I didn't build it in trusty-proposed09:53
pittiinfinity: so I guess that's what the difference was09:53
tvosscjwatson, well, it certainly does not take into account that all the stl symbols are weak, which leads to the massive blow-up in symbol file size09:54
pittiinfinity: ah, so -O0 helps, too?09:54
pittiinfinity: thanks for pointing out09:54
cjwatsontvoss: Yeah, that's apparently subtle, did we point you at https://lists.debian.org/debian-devel/2012/01/msg00759.html ?09:55
infinitypitti: Rebuilding glibc with -Og made the bug go away.  Not sure how much we can divine from that (and I haven't tried myself).09:55
pittiinfinity: well, it's not like I urgently need that cffi upload in release, I just need it in -proposed to stop DoSing the armhf/ppc64el test boxes; so it can just wait until that eglibc/gcc bug gets fixed09:55
cjwatsonAnd the followup  https://lists.debian.org/debian-devel/2012/01/msg00760.html09:55
tvosscjwatson, nope, no one pointed me there09:56
cjwatsontvoss: (anyway, I actually think that's a relatively shallow issue, I only haven't dug into it myself because as I said my C++ experience is fairly weak, or more accurately I have a chunk of C++ experience but it predates the STL so isn't very useful in a modern world)09:56
Riddellam I right in thinking you can't become and ubuntu-dev in whatever flaour without first being an ubuntu-member in whatever flavour?10:27
seb128@pilot in10:28
=== udevbot changed the topic of #ubuntu-devel to: Trusty Tahr Alpha 2 released! | Archive: feature freeze (+ beta1 migration block) | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> saucy | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots: seb12
pittiseb12, haha10:28
cjwatsonRiddell: when I was last involved with this, being a developer was considered to grant membership, rather than membership being a prerequisite10:28
LaneyIndeed, it's not a prerequisite10:29
ograyeah10:29
seb128pitti, shrug :p10:29
cjwatsonRiddell: i.e. you must meet the criteria for membership to be in ubuntu-dev (or similar), but that doesn't mean you have to separately acquire membership first10:29
=== cjwatson changed the topic of #ubuntu-devel to: Trusty Alpha 2 released! | Archive: feature freeze (+ beta1 migration block) | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> saucy | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots: seb128
ograit comes alongside though10:29
seb128cjwatson, thanks ;-)10:29
Riddellcjwatson: hmm, so if membership needs to wait 6 months minimum does that mean 6 months before you can become a developer?10:29
cjwatsonRiddell: now you're outside the set of things I remember from when I was on the DMB :)10:29
pittiah, I had a trimmed /topic halfway typed in, but cjwatson beat me to it10:29
cjwatsonthe criteria for membership was traditionally "sustained and significant contribution", and six months was maybe a guideline for sustained I suppose10:30
xnoxRiddell: to become a developer, one needs to show a sustained contribution for more than one cycle, so yeah 6+ months is requirement for developers.10:30
cjwatsoncriteria *were, sigh10:30
LaneyWe recently changed the requirements so that you don't have to get membership to become a developer10:30
cjwatsonor *criterion was :)10:30
LaneyIn some circumstances etc10:30
xnoxRiddell: i've seen that e.g. contributions to Debian could count as sustained contribution to ubuntu.10:31
seb128is syncing on new packages to universe subject to feature freeze?10:33
* seb128 unsure10:34
LaneyOne of the exclusions which might apply to Riddell is that flavour packagesets still require membership10:34
Laneyyes it is10:34
seb128Laney, thanks10:35
Laneynp10:35
* dholbach hugs seb12810:40
* seb128 hugs dholbach back10:40
infinityseb128: Subject to, but likely to get quick verbal exceptions for things that don't look super scary.10:41
seb128infinity, noted, it turned out that this package was already in and the sponsoring request buggy, but good to know for the next time ;-)10:43
shadeslayerjibel: any news on those lxc issues?12:06
=== brainwash_ is now known as brainwash
=== _salem is now known as salem_
jibelshadeslayer, I didn't fix your code because it is based on an old version of the upgrader that has largely evolved12:47
jibelshadeslayer, instead I deployed 3 profiles https://jenkins.qa.ubuntu.com/search/?q=upgrade-kubuntu12:47
jibelshadeslayer, there S->T, P->T and P+backports ->T12:48
pittinice, and they all succeed!12:48
=== salem_ is now known as _salem
Saviqpitti, you said ppa-sourced -dbgsym packages should be in their respective PPAs, is that something that should work already, or just a thing that "should be like that"?13:23
infinitySaviq: Depends on how the PPA is set up but, yes, they can be set up to publish ddebs to the PPA.13:35
infinitySaviq: That's mutually exclusive with the PPA being used as a copy source to the primary archive, though.13:35
=== psivaa is now known as psivaa-lunch
Saviqinfinity, that'd be fine - so we need to ask for it per-PPA to be enabled?14:21
SaviqMirv, think we want that enabled for qt5-beta2 ↑?14:22
shadeslayerjibel: <314:22
MirvSaviq: 1. there are already manually build -dbg in the PPA, 2. in the past it was found out neither those or .ddebs were enough in case qt not built with debug options, 3. I'm offering the qt5-proper PPA with debug options enabled (non-tested) now that I enabled full release mode for qt5-beta214:28
MirvSaviq: so, I'm not really sure if it would get anything extra to enable ddebs there14:28
MirvSaviq: or the 2. is what you know about more and because of which at some point I switched to building everything in debug mode earlier14:29
SaviqMirv, hmm ok14:29
* Saviq just assumed I needed -dbgsym, but if everything's there in -dbg, then we're good14:29
=== psivaa-lunch is now known as psivaa
jibelshadeslayer, and now available on https://jenkins.qa.ubuntu.com/view/Upgrade/14:54
shadeslayer:D14:54
=== _salem is now known as salem_
=== blaroche_ is now known as blaroche
=== freeflying is now known as freeflying_away
dokojtaylor, qhull and octave did migrate15:38
slangasekpitti: bluez doesn't do a modprobe, it only relies on udev loading the module15:44
pittislangasek: ok, same thing in a container, I guess15:53
slangasekpitti: hmm, would it be?  I would expect the request to be handled by the host udev15:55
pittislangasek: the host doesn't have bluetooth hardware I expect (it's just a ppc64el vm), and isn't running bluez; woudl such a request somehow be propagated to the host's udev? that sounds odd15:59
slangasekpitti: bluez tries to start and asks for an AF_BLUETOOTH socket; the kernel doesn't have this address family and goes looking for it; the host udev sees the request and loads bluetooth.ko16:00
slangasekpitti: this isn't hardware support, but address family support16:00
slangasekbluez will run with or without bluetooth hardware present16:00
pittislangasek: it still seems odd to me that we'd allow a container to cause modprobes in the hosts? but maybe that's supposed to work, I don't know really16:03
stgraberpitti: containers can't load modules, we block that through appear and capability drop16:05
stgraberpitti: /me reads the rest of backscroll16:05
stgraberpitti: hmm, right, that auto-loading bits for network families may still work though. So yeah, ignore me, whatever slangasek said ;)16:06
pittistgraber, slangasek: FWIW, it also fails locally on amd64:16:16
pittiapt0t-bluez_response FAIL status: 0, stderr: Can't open HCI socket.: Address family not supported by protocol16:16
pitti(in LXC)16:16
pittiexactly the same as on ppc64el, so I'll keep it in the "does not work in container" category16:17
* pitti waves good night16:17
stgraberpitti: interesting, so one thing you could do is load whatever modules it needs from the host16:17
stgraberpitti: similar to what you have to do when you want iptables to work in a container16:17
pittibarry: please don't review https://code.launchpad.net/~xnox/ubuntu/trusty/ofono/python3/+merge/208117, it's superseded by https://github.com/rilmodem/ofono/pull/5616:18
stgraberpitti: I guess the "bluetooth" module ought to load everything that's needed for the test.16:18
barrypitti: i'll forward my comments there (it's much easier for me to review branches in my inbox ;)16:19
xnoxbarry: well, i think pitti didn't do my mistakes there with wrapping everything in list()16:20
xnoxbarry: why does 2to3 is list() overzealous? just to be on the save side?16:20
barryxnox: exactly16:21
barrywhich is another reason i don't much like 2to3 ;)16:21
cyphermoxstgraber: if you want to do anything useful with bluez though, you'll need a hardware driver too16:22
cyphermoxstgraber: I don't remember seeing a mock bluetooth device driver16:22
stgrabercyphermox: does kvm provide a fake bluetooth device then? (we're talking about adt here, I'm guessing those actually pass in kvm)16:23
cyphermoxfigured it was adt.16:23
cyphermoxI don't know16:23
cyphermoxI could search a bit, I did find a fake-rfkill driver after all :)16:23
cyphermoxstgraber: ignore me, I guess pitti found and uses that already: http://www.spinics.net/lists/linux-bluetooth/msg03127.html16:25
SaviqMirv, just remembered... -dbgsym in qt5-beta2 could be useful for other packages :)16:29
tseliotslangasek: can you approve bug #1282796 , please?16:35
ubottubug 1282796 in nvidia-prime (Ubuntu Precise) "prime-xconfig can write an invalid BusID string" [High,In progress] https://launchpad.net/bugs/128279616:35
barrypitti: commented16:35
=== robru-is-dying is now known as robru
hallynhm, apt-get install software-properties-common in trusty contaienr gives me http://paste.ubuntu.com/7000799/17:11
hallynactually that's python3-dbus17:11
* hallyn tries installing apport17:12
stgraberhallyn: that's a python3.4 bug17:15
hallynstgraber: ok thx17:16
hallyn(i thought it had stopped the pkg install but i see now it didn't)17:16
xnoxbarry: can you help with http://paste.ubuntu.com/7000830/ ?17:17
xnoxbarry: python3.4 specific failure.17:17
xnoxdoko: is this known http://paste.ubuntu.com/7000830/ ?17:18
Saviqxnox, hey, cross-build issue of qmenumodel: http://paste.ubuntu.com/7000839/ - not sure what should be done about this...17:20
Saviq(or can, for that matter)17:20
xnoxSaviq: something somewhere build-depends on "python3" instead of "python3:any"17:21
xnoxSaviq: let me check it out.17:21
Saviqxnox, thanks17:21
Saviqxnox, looks like it's qmenumodel itself17:22
Saviqxnox, yeah http://bazaar.launchpad.net/~indicator-applet-developers/qmenumodel/trunk/view/head:/debian/control17:22
xnoxSaviq: i believe all three should be moved to Build-Depends-Indep to be honest.17:23
Saviqxnox, mhm17:24
xnoxSaviq: also it will probably fail due to dependency on qt5-qmake anyway.17:25
Saviqxnox, ugh, it probably uses it to determine the qml install dir :/17:25
Saviqyeah17:26
xnoxSaviq: there are stock install locations for those...17:26
Saviqxnox, https://bugreports.qt-project.org/browse/QTBUG-2998717:26
* Saviq wonders where others are taking it from these days17:27
xnoxSaviq: i bet they just stick it into "CMAKE_LIBDIR/qt5/qml/"17:29
Saviqxnox, looks like it, yeah17:29
Saviqxnox, actually most query qmake still...17:32
xnoxSaviq: i know a lot of _our_ code does, what about non-ubuntu code?17:32
Saviqxnox, they don't cross-build ;)17:33
Saviqxnox, so what do they care17:33
=== superm1_ is now known as superm1
barryxnox: did you figure it out?18:35
seb128@pilot out18:38
=== udevbot changed the topic of #ubuntu-devel to: Trusty Alpha 2 released! | Archive: feature freeze (+ beta1 migration block) | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> saucy | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots:
=== psivaa is now known as psivaa-afk
=== bfiller is now known as bfiller_afk
stokachuanyone come across "postrm-does-not-call-updaterc.d-for-init.d" even though we only have <package>.upstart in our dist19:32
stokachui looked through dh_installinit and it seems to handle all the magic automatically, at one point you could force --upstart-only but that was deprecated19:33
stokachuive tried adding <package>.postrm with the updaterc.d to attempt to silence that error but no go19:33
directhexso what's the quickest way to get mono ppc64el removed from the archive? it's a blocker for -proposed transition, and i *really* want that unblocked for FFe reasons19:35
directhexi recognise that critical test suite failures should cause package build aborts. i'm discussing the best way to do that with upstream19:35
=== henrix_ is now known as henrix
Noskcajseb128, I thought Bug 1282937 doesn't need an FFe since all non-bugfix changes we already have as patches19:53
ubottubug 1282937 in xfburn (Ubuntu) "Please package xfburn 0.5.0" [Undecided,In progress] https://launchpad.net/bugs/128293719:53
seb128Noskcaj, 480k of diff isn't something I'm wanting to wave through as "bug fix only", but maybe some other sponsors want to do that...19:54
Noskcajok, i'll file an FFe now19:54
seb128thanks19:54
NoskcajAlso, the libxfce4ui merge needs the tarball from http://archive.xfce.org/src/xfce/libxfce4ui/4.11/libxfce4ui-4.11.1.tar.bz219:56
seb128Noskcaj, is Debian using the same tarballs?19:56
Noskcajyep19:56
seb128the libxfceui one wasn't happy with the upstream tarball19:56
seb128or I did something wrong19:56
Noskcajstrange19:56
seb128well, I got the tarball from Debian and it was fine, but maybe I got something wrong on the first try19:57
=== cmagina_ is now known as cmagina
=== robru is now known as robru-sick
=== freeflying_away is now known as freeflying
=== lionel_ is now known as lionel
=== hggdh_ is now known as hggdh
=== zz_mwhudson is now known as mwhudson
=== doko_ is now known as doko
=== DrKranz is now known as DktrKranz
=== ChrisTownsend1 is now known as ChrisTownsend
=== LBo is now known as Guest67033
=== doko_ is now known as doko
=== doko is now known as stub
=== stub is now known as doko
=== smoser` is now known as smoser
=== LeonBo is now known as LBo
Noskcaj_schoolseb128: The clutter new release builds fine, i said might need exta symbols since i wasn't sure of other arches22:10
Noskcaj_schoolseb128_: Did you see my message?22:15
seb128_Noskcaj_school, which one? having flacky internet there, I don't think so22:16
=== seb128_ is now known as seb128
Noskcaj_schoolseb128: The clutter new release builds fine, i said might need exta symbols since i wasn't sure of other arches22:19
seb128Noskcaj_school, oh, ok, maybe you can try in a ppa to see if that's the case?22:19
Noskcaj_schoolI did, build's just finished, ppa is fine.22:20
seb128good22:20
stgraberdoko, infinity: does that mean something to either of you? http://paste.ubuntu.com/7002151/22:20
dokois systemd happening that fast?22:21
stgraberI'm working on patching our logind to work with cgmanager22:22
dokoanyway, afk now22:22
stgraberI started getting this today, first thought it was my patch, then noticed that a no change rebuild of systemd reproduces it too22:22
=== salem_ is now known as _salem
=== bfiller is now known as bfiller_afk

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