/srv/irclogs.ubuntu.com/2013/11/14/#ubuntu-devel.txt

hallyn_infinity: extracting the arm64 ubuntu core image for saucy, i get /lib/ld-linux-aarch64.so.1: No such file or directory when i try to run something.  should that exist, or does that mean my interpreter is bogus?00:00
infinityhallyn_: It should and does exist...00:23
brainwashis http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632598 a security related issue? is does affected ubuntu and the debian report is still open00:38
ubottuDebian bug 632598 in grub-common "grub-mkconfig: should set safer permissions even when hashed passwords are found" [Normal,Open]00:38
brainwashwoops, "it does affect ubuntu", that's what I tried to type :)00:39
hallyn_infinity: huh.  it's not here in mine.00:43
hallyn_wait.  now it is.  wtf00:44
hallyn_a few sips of duvel must be what fixed it00:45
hallyn_now i have to move everything to a vm :)   FATAL: kernel too old00:45
sarnoldcjwatson: brainwash asks ^^ about http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632598 -- is there a reason why the grub.cfg is left world-readable? My inclination is to take the patch proposed by Francesco but perhaps forcing the mode regardless of password vs password_pbkdf201:07
ubottuDebian bug 632598 in grub-common "grub-mkconfig: should set safer permissions even when hashed passwords are found" [Normal,Open]01:07
rsalvetislangasek: xnox: ogra_: the goal of the emulator is to simulate a real device, using the supported path we use03:24
rsalvetias we want it to be the main "hardware" to support our CI03:25
rsalvetiso we want to make sure it's as close as possible with our supported solution03:25
rsalvetibut it also works with the old flipped model, we can have a tutorial for that if needed03:25
rsalvetiI tested that locally, it's just that it's not what we want to officially support03:26
rsalvetiand I think we can better support the porters in a different way03:26
rsalvetixnox: I believe we want to support both CM and AOSP, when we rebase to kitkat03:27
rsalvetias we can't just ignore the porters03:27
rsalvetiI still don't know how we'll manage that, but something to keep in mind03:27
=== freeflying is now known as freeflying_away
=== freeflying_away is now known as freeflying
=== Nisstyre-laptop is now known as nisstyre
pittiGood morning06:08
pittislangasek: ah, I couldn't agree more to your "UDD" response wrt. "don't commit to them"06:25
cjwatsonsarnold: It's very irritating for debugging when grub.cfg is world-unreadable; I'm inclined to take Francesco's patch07:42
cjwatson(more or less directly)07:42
didrocksenjoy Debian miniconf cjwatson :)07:57
pittignargh, alioth down for a week now :/08:05
cjwatsonannoying isn't it08:05
pittimuchly08:08
=== iahmad_ is now known as iahmad
=== iahmad is now known as iahmad|afk
pittidoes anyone know whether it's possible to exclude debian/patches/ from a Launchpad build recipe? https://help.launchpad.net/Packaging/SourceBuilds/Recipes has nothing in that area08:20
pittibut my daily builds keep failing because it tries to apply the 00git_*.patch cherrypicks to trunk08:21
diwicpitti, I don't think it's possible08:27
pittidiwic: ah, I was afraid of that08:27
diwicpitti, hmm, maybe you can take an empty branch and use the nest command ?08:28
diwicpitti, like, overwriting it with an empty directory or something08:28
diwicpitti, not sure it works, but could be worth a try08:28
pittidiwic: I have a feeling it's additive, but it's a nice idea08:29
pittidiwic: well, that branch could have an empty debian/patches/series, which shold overwrite the old one08:29
diwicpitti, yeah08:29
diwicpitti, it's possible it complains that the directory already exists though, in which case you have to do some ugly scripting instead (like erasing all patches first in the clean target or something)08:30
pittidiwic: that's too late -- dpkg-source will complain about the patches on unpack?08:31
* pitti tries that "empty series" trick08:31
diwicpitti, actually, if you look in the src for making recipes, there is some way to run a shell command, but it seems to be turned off on the launchpad server08:32
pittiheh, it better be :)08:32
diwicpitti, this is from my vague memory from a year ago or more08:33
diwicpitti, anyway, since you have magical lp powers maybe it's turned on for you...08:33
* pitti creates the marvellous piece of two years of engineering lp:~pitti/+junk/empty-series08:33
pittiok, not that easy (https://launchpadlibrarian.net/156547038/buildlog.txt.gz)08:45
=== psivaa-afk is now known as psivaa
=== iahmad|afk is now known as iahmad
pittiI'm looking for a libc function or shell tool which produces a (line-by-line) merged pipeline from two pipelines; essentially the opposite of tee; any ideas?09:26
pittiuse case: I want to tee stdout and stderr, and merge the combined result into a log file09:26
pittiI think you can open a FIFO several times for writing, but that might potentially garble lines09:27
StevenKpitti: 'paste' ?09:30
rbasakpitti: could annotate-output help you here? It'll run a command, take its stdout and stderr and combine them to stdout09:30
rbasakpitti: (on a line by line basis)09:30
pittirbasak: in principle yes, except for the annotation bits09:31
pittiStevenK: ah, that sounds just like I was looking for, thanks!09:31
* rbasak wonders if socat has a suitable option09:31
pittiStevenK: ah no, that does some magic tricks with joining lines with tabs, and they need to match in number09:42
StevenKpitti: You might be able to get away with -d\n, but I'm not sure.09:43
pittiStevenK: that still reads lines pairwise09:43
pittiStevenK: I'll try with plain FIFOs09:43
pittithat should by and large work; stdout/err work no different, after all09:43
StevenK2>&1 ? :-P09:43
pittiI want to retain the original stdout/stderr, not merge them together09:44
ogra_use tmp files ?09:46
ogra_(and post-process them)09:46
pittiogra_: how would that help?09:46
pittinah, you can't open a file for writing twice09:47
ogra_one for each command and then merge tzhem afterwards09:47
pittiI think I'll use one tee for stdout -> stdout + FIFO, another tee for stderr -> stderr + FIFO, and a cat from FIFO to logfile09:47
pittiogra_: you don't know how to interleave them, though, and you wouldn't get realtime logfiles09:47
ogra_indeed09:48
rbasakpitti: for the effort that would take, have you considered writing a quick Python script?09:50
pittirbasak: that is a python script, it's called "adt-run" :)09:50
pittirbasak: I want to simplify the rather convoluted way of logging09:50
rbasakpitti: I'm not sure that qualifies :-P09:50
pittiI want to do it in one place, not spread over all the code09:51
rbasakIt looks more like a Perl script to me09:51
pittirbasak: heh, yes09:51
pittirbasak: although I spent some time to make it a little better09:51
rbasakI saw the changelog entries. I appreciate it!09:51
pittirbasak: and I am doing some refactoring/cleanup to make it a bit more comprehensible09:51
pittirbasak: I still don't understand these AutoFile classes at all, but that'll be the next step after cleaning up the output/logging handling09:52
=== freeflying is now known as freeflying_away
=== geser_ is now known as geser
=== doko_ is now known as doko
=== _salem is now known as salem_
=== sunweave1 is now known as sunweaver
=== brainwash_ is now known as brainwash
slacko253281hi guys11:57
slacko253281i have question about pst, do you have any idea which application can read pst files from outlook so i can use it?11:58
=== MacSlow is now known as MacSlow|lunch
slacko253281hi guys12:05
pittislacko253281: evolution with the evolution-plugins package allegedly can12:08
ogra_dholbach, !!! congrats12:15
ogra_"Condorcet-Sieger: schlägt jeden anderen Kandidaten" ....12:15
ogra_stop beating the other candidates though :P12:16
dholbachogra_, you're such a troll :)12:26
* dholbach hugs ogra_12:26
seb128ok, so wpasupplicant is on top of e.u.c (which was expected since we cleaned the other issues) ... who is looking at that component?12:26
seb128cyphermox, stgraber: is that one of you? ;-)12:26
seb128mvo, update-manager is second, please help on bug #1024590 ;-)12:27
* ogra_ hugs dholbach 12:27
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/102459012:27
seb128ev, bdmurray: is there anything we can do to debug/fix non working retracings on e.u.c? e.g https://errors.ubuntu.com/problem/bbbc7a7db95644fe731284a597366bf199bae00a is not very useful without more info12:28
seb128pitti, hum, for some reasons it seems http://people.canonical.com/~ubuntu-archive/proposed-migration/update_output.txt still isn't happy with gnome-icon-theme12:56
=== MacSlow|lunch is now known as MacSlow
seb128diwic, hey, in case you didn't notice, your g-c-c test ppa for that raring user failed to build, looks like a typo in the patch you added there13:37
mvoseb128: hey seb128, sorry for letting you down on this, you asked me some days ago already, I just didn't mangaed to find time yet :/13:37
=== freeflying_away is now known as freeflying
seb128oh, a mvo13:38
* seb128 hugs mvo13:38
seb128mvo, no worry, sorry for being impatient, I'm exited by the LTS coming and trying to clean e.u.c issues ;-)13:38
diwicseb128, thanks for the heads up. I did notice, and blamed myself for forgetting to test-compile the stuff before sending to the ppa. And then other things happened and I forgot to fix and upload a new one13:38
seb128diwic, np, thanks for helping debugging that one!13:40
ogra_hmpf13:52
ogra_software-center is really crashy for me in trusty13:52
=== ppetraki_ is now known as ppetraki
seb128ogra_, backtrace?14:02
ogra_seb128, seems to be X/compiz/Gdk related14:03
ogra_http://paste.ubuntu.com/6415934/14:03
seb128shrug14:03
seb128ogra_, can you get a stracktrace?14:03
* ogra_ bets it would go away after a reboot ... 14:04
seb128ogra_, export GDK_SYNCHRONIZE=114:04
seb128$ gdb python14:05
seb128(gdb) r /usr/bin/software-center14:05
seb128... get the issue14:05
seb128(gdb) bt14:05
seb128ogra_, ^14:06
seb128oh, I get those as well14:06
seb128webkitgtk, shrug14:06
seb128ogra_, could be https://bugs.webkit.org/show_bug.cgi?id=12348014:07
ubottubugs.webkit.org bug 123480 in WebKit Gtk "ubuntu software center hits _XReadEvents() error" [Normal,Unconfirmed]14:07
ogra_seb128, http://paste.ubuntu.com/6415950/14:07
seb128hate webkit14:08
seb128the new version seems to make things even buggier for s-c :/ (that was already one of the most reported saucy issues)14:08
ogra_bah14:08
seb128ogra_, yeah, it's the same stacktrace that the bug I gave the url to14:09
ogra_yup14:09
ogra_just looking at it14:09
ogra_sigh14:09
seb128I wonder why the log has14:15
seb128[000:004] Using Gtk2 toolkit14:15
seb128dobey, isn't s-c using gtk3?14:16
arun_Guys anyone here freom dev team14:34
dokoxnox, looking at http://people.canonical.com/~ubuntu-archive/component-mismatches-proposed.txt, boost demotions. how did we handle these in the past? should these be kept in universe?14:57
stgraberseb128: that's usually cyphermox14:59
pittiseb128: I guess it's because there's the failed deja-dup test; we need to restart it, once the DC is back14:59
seb128pitti, it's weird, http://people.canonical.com/~ubuntu-archive/proposed-migration/update_excuses.html says "valid candidate", aren't tests on that report?15:00
cyphermoxstgraber: I'm looking into it15:00
seb128cyphermox, stgraber: thanks ;-)15:00
pittiseb128: g-i-t-symbolic has the failed test15:00
cyphermoxthe thing is, there is not one successful trace, and I wasn't able to retrace it myself either15:00
cyphermoxtrying some more15:00
seb128pitti, oh ok, that would explain it indeed, danke15:00
seb128cyphermox, do you have some dumps?15:01
pittiseb128: but the "private jenkins" URL now points into the void, as the IPs changed15:01
cyphermoxseb128: yeah15:01
seb128or are you able to reproduce the bug?15:01
cyphermoxnot able to reproduce, no15:01
cyphermoxI have no idea how, nothing mentions it :)15:01
mitya57Mirv: hi, I just saw your PPU application — I think it'll be a good idea to create a packageset containing all qt packages so that other people (like me :P) can easily request access to it.15:02
dokopitti, hunspell-br wants to demote, anything changed in the language-* stuff?15:06
pittidoko: you mean it wants to *pro*mote? (because that's what c-m says)15:08
pittidoko: we seed all the dictionaries, yes15:08
=== didrocks1 is now known as didrocks
dokook, will do15:11
saiarcot895How long does it take for a backports request to be processed?15:22
=== funkyHat2 is now known as funkyHat
=== funkyHat_ is now known as funkyHat
pittiseb128: ah, I updated VPN config for the new DNS, I started http://d-jenkins.ubuntu-ci:8080/view/Trusty/view/AutoPkgTest/job/trusty-adt-deja-dup/15:34
seb128pitti, danke15:34
pittijibel, cjwatson: can we update the excuses page for the private jenkins URLs from the IP to d-jenkins.ubuntu-ci ?15:34
Laneypitti: cjwatson: doing15:37
stgraberare the IPs the same at least?15:38
stgraberotherwise we'll need to get IS to update all the firewalls again15:38
pittistgraber: no, they all changed, hence my question15:40
stgraberpitti: well, we can change our config in the scripts to use the name, but firewall rules all use IPS15:40
stgraberpitti: so we still need someone from CI to send a list of old ip => new ip to IS so they can update all the firewalls accordingly15:41
LaneyNot sure what the path for jobs to get submitted is15:41
jibelstgraber, IP changed, but I don't know yet if services that hosted autopkgtest will move or not to another server15:49
Laneyjibel: It should ideally get a DNS record15:50
jibelLaney, there is a DNS record now, just don't have the confirmation of name of the machine15:50
pittijibel: d-jenkins.ubuntu-ci works here15:51
jibelpitti, right, but the gateway with the lab seems to still be jiufeng15:51
LaneyIs it the same for submission and viewing?15:51
pittithere's also an s-jenkins, q-jenkins, and possibly others; I read "d-" as "distro"?15:51
pittiLaney: AFAICS, yes15:52
LaneyThe IPs were different before15:52
pittiyeah, I have two different IPs in my browser history, but they seemed to be aliases15:52
=== corvolino is now known as corvolino[AFK]
=== greyback is now known as greyback|away
cjwatson$ syncpackage -f grub216:40
cjwatson^- commands that feel REALLY good to run16:40
=== salem_ is now known as _salem
=== _salem is now known as salem_
mitya57cjwatson: \o/16:43
=== dholbach_ is now known as dholbach
xnoxdoko: if it's binaries only, it should be safe to demote them. at times some get "recovered" and are usually pulled back in without much fuss. I think infinity demoted *53* ones after that transition was done. And main has transitioned to boost1.54, so it is safe to demote those that are not needed.16:52
=== hggdh_ is now known as hggdh
dokook, thanks16:52
ogra_infinity, http://www.mail-archive.com/u-boot@lists.denx.de/msg125968.html ... in case you want our panda images to also support the new svtronics panda ...16:53
infinityogra_: That patch is vile.  I assume someone will commit something less hackishly gross upstream at some point.16:58
ogra_yeah, its not actually a beauty16:58
=== greyback|away is now known as greyback
=== Ursinha is now known as Ursinha-afk
=== dpm_ is now known as dpmafk
=== dpmafk is now known as dpm-afk
=== dholbach_ is now known as dholbach
=== Ursinha-afk is now known as Ursinha
=== tkamppeter__ is now known as tkamppeter
pittibdmurray, infinity, stgraber: can I nag you about looking at the systemd-shim saucy SRU?17:47
sarnoldcjwatson: thanks (re: grub.cfg, francisco's patch)18:17
bdmurraypitti: I'll review it18:27
barry@pilot in19:42
=== udevbot changed the topic of #ubuntu-devel to: Ubuntu 13.10 released! | Archive: open | 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: barry
bdmurrayslangasek: bug 1241385 is interesting in that the already installed and configured message comes after an "unexpected end of file or stream" for the same package20:54
ubottubug 1241385 in aptdaemon (Ubuntu) "package syslinux-common 3:4.05+dfsg-6+deb7u2ubuntu1 failed to install/upgrade: ErrorMessage: package syslinux-common is already installed and configured" [Undecided,New] https://launchpad.net/bugs/124138520:54
slangasekbdmurray: ah; so in that case, it seems like there was an error from the dpkg --unpack command, which wasn't handled before sending a follow-on dpkg --configure command?21:12
infinitybarry: Why did you sponsor that memcached upload? :/21:17
bdmurrayslangasek: that sounds right to me21:18
infinitybarry: Gratuitous patch diffs, plus it's FTBFS, plus poor style in the one new patch...21:18
barryinfinity: i fixed it :)21:18
barrywell, it builds locally, at least on amd6421:19
slangasekinfinity: say hello to the Cambridge pub full of Debianers21:20
infinityslangasek: I didn't pub tonight, I'm fluish and trying not to kill myself.21:20
slangasekah21:21
infinitybarry: Given that it only built on i386, I'm assuming it builds with "-b" but not "-B".21:21
infinitybarry: Which is likely because quilt doesn't appear to run with -B...21:22
slangasekcjwatson: so I'm having a poke at kernel package cross-buildability; I'm surprised to find openssl in the list of unsatisfied cross-build-deps.  Was that not M-A: foreign at one point?21:23
infinityErm...21:24
infinityEw.21:24
infinitybarry: Yeah, you shouldn't have accepted this patch. :P21:24
infinitybarry: Mixing and matching old-style and dh(1) is unpredictable and never right.21:25
infinitybarry: Better to just manually call dh_autoreconf and dh_autoreconf_clean at the right parts of the series (right before configure, and right before dh_quilt_unpatch, probably)21:27
=== salem_ is now known as _salem
=== knocte_ is now known as knocte
bdmurrayslangasek: so I think I've found dozens of bugs where dpkg tries to configure a package that failed to unpack, does consolidating them all make sense?22:16
slangasekbdmurray: yes22:20
barryinfinity: well, let's see if this one fixes the ftbfs22:23
orbisvicisis there a tool to list all uninstalled dependencies of a deb ?22:43
sladenorbisvicis: not quite; but  apt-get -f install22:46
sladenorbisvicis: will fix it22:46
sarnoldorbisvicis: apt-get install --dry-run  <packagename> does a good job, if apt knows about the package22:46
sladenorbisvicis: or apt-get install -n ..   or apt-get install and Ctrl-c22:46
infinitybarry: The whole '%:\ndh $@' bit should have gone away when you did that too.22:48
infinitybarry: And autoreconf should come after quilt_patch, since some patches touch reconf bits.22:48
infinitybarry: How about I just fix it? :)22:49
barryinfinity: clearly my isp is totally f*cked this evening, so please dtrt.  thanks ;)22:50
infinitybarry: Done.22:51
infinityOh lolz, except now it's broken on i386.  *headdesk*22:54
infinityS'pose I should test this properly instead of shotgunning a fix.22:54
infinityOh, this is probably the patch itself actually breaking with autoreconf.22:55
infinitySo, this wasn't even tested by the person you sponsored for, as it wouldn't have had the desired effect.22:55
barry@pilot out23:02
=== udevbot changed the topic of #ubuntu-devel to: Ubuntu 13.10 released! | Archive: open | 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:
barryinfinity: i did actually test the local builds and it seemed to do as advertised23:03
barrysigh.  i give up.  maybe my intarwebs will be happier tomorrow23:04
=== freeflying is now known as freeflying_away
brainwashcjwatson: should I file a launchpad report for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632598 ? still not sure if this is an issue which should be addressed and fixed eventually23:48
ubottuDebian bug 632598 in grub-common "grub-mkconfig: should set safer permissions even when hashed passwords are found" [Normal,Fixed]23:48
rsalvetihm, seems the simplejson package is empty now23:52
rsalvetican't run any lp script anymore23:53
=== freeflying_away is now known as freeflying

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