[00:01] @pilt in [00:01] Error: "pilt" is not a valid command. [00:01] @pilot in === udevbot changed the topic of #ubuntu-devel to: Archive: open | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> trusty | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots: TheMuso [00:39] is there a guide somewhere for "how to build an ubuntu kernel with this extra patch i want to test"? [00:39] mwhudson: Apply patch, build package. [00:39] * mwhudson finds that the link to https://wiki.ubuntu.com/Kernel/BuildYourOwnKernel was purple already [00:40] infinity: so easy [00:40] mwhudson: If you want a different version number and don't want to futz with ABI check ignore stuff, just change the top version in debian.master/changelog and debian/changelog instead of adding a new entry, and voila. [00:40] i guess i need to find out if the patch set i care about applies to 3.13 [00:41] unless utopic has a newer kernel already i supose [00:41] mwhudson: utopic is 3.15 [00:41] oh shiny [00:41] Way to keep up. ;) [00:42] is 3.16 out yet? [00:42] 3.15 isn't out yet... [00:42] haha [00:42] ok [00:42] but it's well into rcs? [00:42] Yeah, rc8. [00:43] hm i wonder if it has the patch i want already [00:43] (psci support in kvm) [00:43] Do you have the commit? [00:43] not to hand no [00:43] last i heard it was in kvm-next [00:48] it was queued on apr 30 http://www.spinics.net/lists/kvm-arm/msg09229.html [00:48] but doesn't seem to be in linus' tree yet [00:48] i guess it's waiting for 3.16 [01:06] gruh, patch series doesn't apply [01:06] (to linus tip even) [01:06] i hope i don't have to understand this! [02:35] woop i have some hacked up kernel debs of my very own [02:36] If any SRU reviewers are around, mind having a look at bug 1308771, and its lack of a specific test case, given a language specific bug, and the difficulty in possibly finding someone to test the fix who knows the language in question? [02:36] bug 1308771 in openoffice.org-hyphenation (Ubuntu) "Update Swedish spellcheck and hyphenation dictionaries" [Medium,In progress] https://launchpad.net/bugs/1308771 [02:38] I guess my question is would you let that fix through? === plars-away is now known as plars [03:59] @pilot out === udevbot changed the topic of #ubuntu-devel to: Archive: open | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> trusty | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots: === Nigel_ is now known as G === halfie_ is now known as halfie === klubko is now known as katka [07:59] @pilot in === udevbot changed the topic of #ubuntu-devel to: Archive: open | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> trusty | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots: jamespage === mvo__ is now known as mvo === pete-woods is now known as pete-woods-away [09:25] cjwatson, infinity: please could one of you take a look at the debdiff on https://bugs.launchpad.net/ubuntu/+source/finish-install/+bug/1320327 [09:25] Ubuntu bug 1320327 in finish-install (Ubuntu Trusty) "configure getty properly on serial consoles using hardware flow control" [High,In progress] [09:25] it looks reasonable to me - but wanted someone with better knowledge of this package to review before I sponsor === doko_ is now known as doko [09:35] In a shell script wrapper, I need to get from the line: "$@" to the equivalent line inside: su -c '...' ... [09:35] ie. shell quote the whole "$@" into a single thing that the shell will then interpret as normal, if that makes sense. [09:35] Is there a standard way to do this? [09:40] jamespage: looking [09:40] rbasak: I'm sure it is possible but su's interface is dreadful for this. Is there any way you can use a different tool that doesn't require requoting? [09:41] rbasak: (and doesn't involve creating a new PAM session, etc.) [09:41] rbasak: if you're just trying to switch from root to some other user in a maintainer script or something, then there's a pattern in man-db.postinst that you could use [09:42] jamespage: looks fine, matches the fix that went upstream [09:43] cjwatson, indeed - thanks for the second pair of eyes! [09:44] cjwatson: thanks. Are you referring to the Perl invocation in run_mandb? I can use that I think. I'm in a dep8 test, and I need to switch from root to another user, set a new HOME but maintain PWD and call another script that runs as a normal user. [09:45] On a second look, I'm not sure I see the bit in man-db.postinst you mean [09:49] rbasak: is this not appropriate "HOME=/bar sudo -E -u user cmd --cmd-args" ? no quoting for target command, can change env variables, and preserves PWD, doesn't do login shell. [09:49] rbasak: The perl invocation, yes. [09:50] That's simpler than sudo. [09:50] And fewer things can go wrong. [09:51] Re-reading the Perl guessing what $(, $), $< and $> might mean I understand it now - thanks. [09:51] I do wish we had something in coreutils or util-linux or something that *just* did user-switching (and maybe group-switching) without any of the other gubbins, for use as a primitive operation. [09:51] Is there anything that won't be switched, but might be in a login shell that hit PAM? [09:52] I want to test juju as a normal user here, but need the test to run as root for some setup. I'm just concerned that I'm testing exactly what a local user would get. [09:52] So I was going for a login shell that then called juju, but having to change PWD made it awkward. [09:53] (because PWD is where the dep8 test resources are) [09:56]  [09:56] reading perlvar manpage, that perl invocation is very nice. =) would be less cryptic, if expanded var names would be used e.g. $REAL_USER_ID instead of $<. I guess I didn't do any amount of perl to learn about those vars to date. [09:57] xnox: I think there's a "use English;" thing (or something like that). But it's been many years since I touched Perl [09:57] It would make the whole snippet quite a bit longer though [09:58] rbasak: as per spec, you also have $ADT_TMP which should be used. So you can e.g. change directory to $ADT_TMP and set $HOME to that location as well and run anything you like. [09:58] Yeah I'd have to do some refactoring though. [09:59] What I have are a couple of different wrappers, and multiple test definitions. Some use the wrappers, and some don't. [09:59] So the wrappers need to find the original test files currently, and AFAICS the only way to know the location of those are with the PWD. [10:00] "use English;" -> reminds me of Pulp Fiction "do you speak it" [10:00] So the thing that is called on the "other side" needs to be handed the directory somehow. If it's one of my tests directly, then I'll need to refactor the test to pick it up from a different environment env or something [10:02] Or some kind of "sh -c 'cd /... && ...'" type thing, and that's when the quoting starts getting horrible. [10:40] I've ended up doing: [10:40] sudo -iu jujutest sh < cd "$PWD" [10:40] $@ [10:40] EOT [10:41] This gives me the login shell I wanted. It doesn't quote $@ properly I don't think, but in my case I don't think I need it. [10:44] @pilot out === udevbot changed the topic of #ubuntu-devel to: Archive: open | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> trusty | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots: [11:10] doko: Mind if I sync perl? It has a different fix for https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=746890 than the one you applied, but apparently one preferred by upstream [11:10] Debian bug 746890 in src:perl "perl: ftbfs with GCC-4.9" [Important,Fixed] [11:10] cjwatson, sure [11:10] thanks === MacSlow is now known as MacSlow|lunch [11:39] @pilot in === udevbot changed the topic of #ubuntu-devel to: Archive: open | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> trusty | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots: mdeslaur === MacSlow is now known as MacSlow|lunch [11:59] mdeslaur: hi! While you're piloting, I noticed bug 1189939 in my bugmail this morning that I think needs another look, and noticed you sponsored it last time. Would you mind? Else I'm fine to look at it - I flagged it in my mail already. [11:59] bug 1189939 in libjpeg-turbo (Ubuntu Precise) "Initialization leaks file descriptors to /prox/self/auxv" [High,Fix committed] https://launchpad.net/bugs/1189939 [12:00] rbasak: sure, I'll handle it, thanks [12:00] Thanks! [12:26] How do I get the Skype status icon on the main bar of ubuntu? === pete-woods-away is now known as pete-woods === _salem is now known as salem_ === MacSlow|lunch is now known as MacSlow [12:51] nectarys: I think you want to ask in #ubuntu; this channel is more for app devs [12:52] sorry, i meant for ubuntu dev questions [12:58] rbasak: Hi Robie [13:02] GunnarHj: pong. Sorry I haven't had a chance to look yet - I did see that you updated the bug. [13:03] rbasak: Ok, I just wanted to make sure that you saw it. Please take your time. === ara is now known as Guest42533 [14:00] Q: with a list of packages & versions, which would be the most effective (and network inexpensive) way to confirm that all those package/version tuple are on official archives ? [14:00] for a given release [14:01] I mean, I could do apt-cache on the package & compare versions, but there might be a more cost effective way of doing this [14:01] my goal is to identify packages that would not be part of our official archives [14:02] rmadison [14:03] or "apt-cache policy" to check the candidate URL [14:04] cjwatson: I'm talking about a list of more then 1000 packages, so rmadison on each one of them would be radical [14:04] maybe there is no way of doing it without querying the remote archive [14:05] just for a bit of context, I'm investigating a problem on a system & just found out that one of the libraries doesn't come from one of our archives [14:05] well I gave two answers so you could try the other one :) [14:05] (also fwiw rmadison can take multiple packages in one go) [14:06] (you'd have to write a script to correlate/compare the output though) [14:07] apt-cache policy is probably better though in that it will introduce less confusion with out-of-date packages and the like [14:07] cjwatson: ok, I'll check that one out [14:07] cjwatson: thanks [14:08] caribou: I would download the packages files and process them with grep-dctrl, sort, uniq, comm, etc. [14:09] rbasak: I had that in mind too; my problem will be to deal with various versions of the same package [14:09] Hmm. [14:10] Maybe apt-cache policy like Colin says then? chdist is useful to do that on multiple releases at once. [14:10] And some xargs-fu to speed it up. [14:11] I'm wondered about some tooling around this kind of task before. Two jobs ago I had a Postgres db with a debian version number comparison function I wrote [14:11] rbasak: hmm, chdist is interesting [14:11] Then SQL provides a more powerful query language to that. [14:12] tbl-dctrl + join is worth considering too, by way of poor man's SQL [14:13] rbasak: my idea is to have some tools to process the output of sosreport & identify potential problems [14:13] rbasak: that's the big picture [14:16] Oooh. I didn't know about tbl-dctrl. Thanks! [14:22] caribou: python-apt should be up for the task as well, it sounds pretty straightforward (sorry for being a bit late to the reply-party :) [14:22] mvo: that would be even better ! [14:24] caribou: so you have a given release (say trusty) and want to feed it a list of (pkgname, ver) and see if that is a version that is in the archive? [14:24] mvo: exactly [14:25] mvo: but the ver value may not be the latest version available in the archive, but one that was officially published [14:26] xnox: Could you merge emacs24, please? It needs to be rebuilt for libgnutls-deb0-28 anyway, I have somewhat limited internet here so it'd be nice to avoid downloading its .orig.tar.bz2, and I see that the latest Debian upload fixes several security issues [14:43] xnox: (I've uploaded all the rest of the libgnutls-deb0-28 transition BTW; guess we'll see whether it all builds) [14:44] caribou: http://paste.ubuntu.com/7602161/ - a very quick sketch what I have in mind, run: "printf '2vcard 0.5-3\napt 1.0'" | python checker.py" for a quick demo you certainly want to improve plus the fallback to changelogs.u.c [14:47] mvo: thank you so much! that will get me started ! [14:55] caribou: your welcome, let me know in what way you get the data and I can look at the changelogs.u.c stuff too [15:36] @pilot out === udevbot changed the topic of #ubuntu-devel to: Archive: open | Devel of Ubuntu (not support or app devel) | build failures -> http://qa.ubuntuwire.com/ftbfs/ | #ubuntu for support and discussion of lucid -> trusty | #ubuntu-app-devel for app development on Ubuntu http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://bit.ly/lv8soi | Patch Pilots: === salem_ is now known as _salem [17:01] infinity, jamespage: so I uploaded juju-core 1.18.4, which FTBFS on powerpc. But it hasn't changed much since Trusty in theory, and I can't reproduce on our porters. [17:01] Any hints? [17:01] Could this be a toolchain regression of some sort? [17:01] https://launchpad.net/ubuntu/+source/juju-core/1.18.4-0ubuntu1/+build/6076908 [17:01] I have retried once. [17:03] I guess I'll worry about it on Monday [17:03] * rbasak EODs [17:03] rbasak: You can't reproduce on an up-to-date porter chroot? That's a bit suspect. [17:03] rbasak: That might point to gccgo doing something POWER7-specific that sulfur can't deal with. [17:03] * infinity gives it a retry on sagari to see. [17:04] Thanks [17:04] Oh one catch. I didn't think to dist-upgrade the porter. [17:04] * rbasak does that now [17:07] It succeeded on the porter again. I didn't see the dist-upgrade pull in anything relevant anyway. Some perl and python. [17:07] Failed on sagari === _salem is now known as salem_ === salem_ is now known as _salem === _salem is now known as salem_ === roadmr is now known as roadmr_afk === dpm_ is now known as dpm-afk === roadmr_afk is now known as roadmr === salem_ is now known as _salem === _salem is now known as salem_ === josepht_ is now known as josepht === roadmr is now known as roadmr_afk === hmatlock is now known as heath === ken_ is now known as kenvandine === funkyHat_ is now known as funkyHat === roadmr_afk is now known as roadmr [21:08] When marking verification as failed for an SRU and pushing a new change for sponsorship, do I need to rev the version or can it stay the same? [21:11] rcj: if it was in proposed you need to bump the version. [21:12] ScottK, thanks, that's exactly what I needed to know. === kentb is now known as kentb-out === salem_ is now known as _salem === _salem is now known as salem_ === salem_ is now known as _salem === bluesabre_ is now known as bluesabre === beisner is now known as beisner-weekend