[05:09] Good morning [05:28] good morning [05:30] morning pitti didrocks [05:30] bonjour didrocks et flocculant ! [05:31] good morning flocculant, pitti! [05:34] not sure about good - it's certainly early - woke up at 4 couldn't get back to sleep ... [05:36] urgh [08:17] * didrocks is really annoyed by xnox's pkgconfig merge with debian for his tests :) [08:17] (finally got the time to have a look at this issue that only happened on "desktop", where pkg-config is installed [08:17] not like my builders or autopkgtests setup :p [08:43] Good morning! [08:43] hey Trevinho, how are you? [08:44] didrocks: oh, something broken there? the merge happened a month ago already [08:44] didrocks: I can say quite well, finally. [08:44] didrocks: you? [08:45] pitti: yeah, the issue is that when you install pkg-config, you have a dpkg hook installed now [08:46] pitti: and this hook doesn't work well when you use dpkg --root [08:46] I'm unsure if dpkg --root shouldn't look at the hooks config in the usual dirs [08:46] or if the hook should be fixed to not mixed with real installation when --root is used [08:46] Trevinho: I'm good thanks! [08:47] didrocks: interesting, I wasn't aware of this mechanism even [08:47] pitti: it's passing in builders and autopkgtests because I don't install pkg-config here, so I don't have the guilty hook [08:47] yeah, I'm doing funky stuff to test adding an architecture and such in my tests :) [08:48] and the hook hardcode the path, so I can't even just "discare it" [08:48] didrocks: could you just remove the hook for the tests? [08:48] if you don't care about cross-building [08:49] pitti: how come? It's on the system itself in /etc/dpkg… [08:49] pitti: so it means running those tests are root [08:50] (and so, running those as root on my machine… :/) [08:50] didrocks: oh, I thought it breaks your tests [08:50] it does [08:50] didrocks: ah, for that; so at least you want something nondestructive like sudo mount -o bind /dev/null /usr/share/pkg-config-dpkghook [08:50] I can't run small tests locally on my machine itself now [08:50] which will make the test -x fail [08:50] pitti: yeah, but this will require root as well, no? [08:51] didrocks: yes, it does [08:51] didrocks: oh, you call dpkg as user in a temp dir? [08:51] yep [08:51] (with fakeroot to install package) [08:51] and --root= [08:52] local repo, everything locally brewed :) [08:52] didrocks: so why doesn't that take the dpkg config files from that fakeroot as well? [08:52] pitti: yeah, I think that's the dpkg bug, it should IMHO [08:53] didrocks: you mean fakechroot bug? [08:53] no [08:53] oh, fakeroot, not fakechroot [08:53] fakeroot only [08:53] I'm still using system dpkg and such [08:53] just faking hiding dpkg with "dpkg --root…" [08:53] s/faking// [08:55] pitti: basically: https://github.com/ubuntu/ubuntu-make/blob/master/tests/small/test_requirements_handler.py#L59 [08:55] maybe there is a DPkg:: directive [08:55] * didrocks looks [09:04] argh, it's a linked list when added [09:04] /* Add the new hook at the tail of the list to preserve the order. */ [09:04] **hook_tail = hook_new; [09:04] *hook_tail = &hook_new->next; [09:15] didrocks: with new unity/launcher integration, we've a dbus dependency with nautilus (not that without it it wont' work, but still)... I was wondering whether. So should I add it to reccomends? [09:18] pitti: filed a new upstream dpkg bug FYI [09:19] Trevinho: what happens if nautilus isn't installed? [09:19] didrocks: well, launcher icons (the trash and devices one) won't be illuminated, or wont' control any window. They should work as they used to work before [09:20] didrocks: so only as a shortcut to open stuff [09:20] Trevinho: ok, recommends sounds right then [09:20] Trevinho: btw, not sure if you noticed, be the student updated his patch: https://code.launchpad.net/~mcintire-evan/unity/add_screenshot_shortcut_hints/+merge/280671 [09:21] Trevinho: I'm not sure we have any category matching well where to put this, but I guess, we don't want to expand with another one (and fighting with nux layouting ;)) [09:22] yeah, I agree [09:22] also there's the thing that adding too many stuff might pretend the view to be shown in low resolutions (by low also <= 1366x768) [09:23] Trevinho: yeah, so I guess where he added it is fine [09:24] Trevinho: mind reviewing it once more? Will be nice to have it merged before EOW if possible :) [09:25] didrocks: yeah, I'd love to do an unity landing before xmas, but not sure it's sane. As I won't be back till 12nd... [09:25] good morning! [09:26] didrocks: and well, you might revert in case, but... [09:26] Trevinho: well, I can consider the "approval" to be +1 for his code in task [09:26] Trevinho: so, just approve if you feel so, already :) [09:26] hey larsu [09:26] (old Trevinho would have merged it any day, but he's getting more responsible :PO) [09:28] hi didrocks! [09:30] Trevinho: just review it, if it's good, tell me and I can close the task :) [09:33] didrocks: sure, I was in the meeting with kylin before... I'll do that shortly [09:36] thx [09:51] hum, one test become racy (only on xenial), seeing the diff, apt 1.1.5 sounds like a good guilty guy [09:55] mvo: hey, is that expected with new apt that I can (not always), having multiple times the same status reported by the apt binding? [09:56] mvo: this doesn't happen 100% of the time (with the same test), but if you look at https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-xenial/xenial/i386/u/ubuntu-make/20151217_075907@/log.gz, I'm installing one package, one bit, I get twice: [09:56] 2015-12-17 07:58:38,914 [umake.network.requirements_handler] DEBUG: ['testpackage'] download update: 0.0% of 1 [09:56] 2015-12-17 07:58:38,924 [umake.network.requirements_handler] DEBUG: ['testpackage'] download update: 0.0% of 1 [09:56] (I would expect to have progress triggers only if the percentage changes, even slightly) [10:03] * didrocks changed his test to be more resilient against this [10:14] didrocks: the way this works internally is that it call the progress callback periodically so that you don't need your own mainloop (if you set the timeout low enough). this has the side-effect that it will also report non-changes just so that you can refresh your ui [10:18] mvo: ok, do you confirm that wasn't the case before or I just good lucky over the past 2 years? [10:19] mvo: changing the tests to take that into account is quite easy for me, just wanted to know if I wasn't dreaming :) [10:50] didrocks, ? =) [12:31] xnox: see my discussion with pitti about the dpkg trigger and --root suport === alan_g is now known as alan_g|lunch [13:00] didrocks can have 1 cookie, (I'll keep the one for 32 bit warm still, that failed to build) - thanks for fixing that :) [13:05] flocculant: yw! happy to have found it :) [13:06] flocculant: bonus: the initramfs is smaller than before the plymouth merge :) [13:06] :) [13:31] didrocks, i keep wondering to make the 2x plymouth theme the default. === alan_g|lunch is now known as alan_g [13:31] not because there are more high-dpi screens than normal, but because both are usable with 2x theme. [13:33] xnox: is the current plymouth theme unusable on high-dpi? [13:33] I mean, I would agree it likely is quite small, but still [13:33] hi, could someone sponsor automake-1.15 merge -- https://launchpad.net/~ricotz/+archive/ubuntu/staging/+sourcepub/5781864/+listing-archive-extra [13:33] (I have no idea how it looks on high-dpi mind you) [13:34] xnox: I don't know if there is any info from the script exported for this [13:34] xnox: part of the issue is that the script will really need a complete rewrite, there is a lot of dead code in the ubuntu logo one [13:36] cyphermox, not usable at all. hence a while back i added a "2x" theme too, which one can manually opt into using update-alternatives. [13:37] didrocks, there are two scripts/themes packaged - 1x and 2x. [13:38] didrocks, is there any api to query screen dpi/scale factor these days as root? e.g. I could query gsettings or somesuch in postinst and automatically opt into 2x theme.... [13:40] xnox: no api AFAIK, (that's why we have the scale thingy in Unity) [13:40] but query user's info gsettings key (user info) in postinst (root) [13:40] hem… ;) [13:40] xnox: guess from xdpyinfo? [13:40] wait nvm, same issue === davidcalle_ is now known as davidcalle === davidcalle__ is now known as davidcalle_ [14:02] good morning, peeps [14:03] * ogra_ wonders in that light if leaning back and watching IRC scroll by then counts as peepshow [14:04] good morning desrt [14:07] didrocks: what are you up to today? [14:11] desrt: working on moving from jenkins to autopkgtests for ubuntu make tests [14:11] as the jenkins infra is going down [14:11] what about you? [14:11] doing my dance back and forth between dconf and glib. did the dconf release yesterday, so back to glib today to add some new APIs that i can use from the next dconf release :) [14:12] handy! [14:12] kinda ugly, in fact [14:12] i'm really increasing the coupling of dconf and glib here [14:12] oh well [14:13] in a way the coupling was already there insofar as all GSettingsBackend implementations are expected to be dconf-like [14:13] which is more complicated than it sounds [14:36] so i just got an email from asustor's RT-equivalent [14:36] i filed a ticket about missing files in their GPL package [14:36] i got zero reply from anyone [14:36] and now the system is telling me the ticket is being automatically closed due to inactivity [14:36] suggestions? [14:36] i'd prefer to avoid hiring a lawyer [15:03] Mirv: is there a known problem with the CI infra? [15:05] Trevinho: the MP was updated [15:05] oh you approved \o/ [15:05] rocking [15:05] didrocks: yeah :) [15:29] pitti: probably a stupid question, but I don't find any answer on http://packaging.ubuntu.com/html/auto-pkg-test.html or https://wiki.ubuntu.com/ProposedMigration/AutopkgtestInfrastructure. What's the directory where I should push artefacts to be saved in swift? (or even with a local adt-run, if they can be stored outside the vm…) [15:30] didrocks: that's in https://people.debian.org/~mpitt/autopkgtest/README.package-tests.html aka /usr/share/doc/autopkgtest/README.package-tests.* [15:30] didrocks: put them into $ADT_ARTIFACTS/ [15:30] pitti: ah, excellent, thanks for the pointer :) [15:30] ok! [15:31] pitti: good news: docker tests run inside the vm without any trickery contrary to jenkins! [15:31] didrocks: with --output-dir=X they will appear in X/artifacts/ [15:31] didrocks: nice! with trickery you mean the ssh -tt? [15:31] yep! [15:31] didrocks: ah, same issue that we had back then [15:31] indeed :) [15:31] pitti: the only issue I have is that the testbed is set to something in /tmp (and I have a tmpfs limited to 2G here) [15:32] so large tests don't run, need to find a way to tell "use the disk, son" ;) [15:32] didrocks: with VM? [15:33] -o OVERLAY_DIR, --overlay-dir OVERLAY_DIR [15:33] Temporary overlay directory (default: in /tmp) [15:33] didrocks: ^ you want that then? perhaps /var/tmp/ [15:33] didrocks: 2GB! you only have 4 GB? [15:33] pitti: I have 8GB, but I like having enough for the browser and such [15:33] ah [15:34] used 4.5GB here [15:34] didrocks: anyway, so adt-run [...] --- qemu -o /var/tmp/ yourimage.img [15:34] pitti: excellent, thanks a bunch! :) [15:35] pitti: I guess I'll be able to do everything is needed on my side. I guess the last things we will check is what's available through the proxy and if sourcing /etc/environment really works for docker [15:35] (but that can wait January) [15:36] didrocks: right, but that shouldn't be an issue as long as you run tests locally? [15:36] yep! [15:36] at least, I'll have a reproduceable local system :) [15:39] Laney: yay prodstack troubles again (IS knows) [15:39] Laney: I can't ssh into stuff, and all workers died [15:40] hopefully, Laney is on holidays and won't see that :) [15:53] I'll screenshot it for him [15:54] poor Laney :p [15:55] * desrt observes the start of the eoy slowdown [15:59] * didrocks doesn't feel any slowdown with google code in :p [16:29] pitti: the testbed isn't kept between tests? It would mean I need to put all tests in the same scripts (as I think we don't want to install ubuntu-desktop 4 times ;)) [16:29] didrocks: depends [16:30] didrocks: the test bed is reset if [16:30] - the current test declares "breaks-testbed", or [16:30] - the current test has Depends: which the next test does not have [16:30] ahhhh [16:30] didrocks: and yeah, you really want to pre-prepare an image with u-desktop for taht [16:30] so I need to keep the same Depends list [16:30] didrocks: same, or only add to it [16:30] ok, let me try this [16:31] didrocks: but I suppose you'll run this more than once [16:31] yeah :) [16:31] didrocks: so, cp the VM, start it, install u-desktop, and save that [16:31] pitti: I have the desktop one, but I'm doing a little bit more in setup that just installing u-desktop [16:31] I was using that just as an example [16:32] didrocks: well, sure -- if it's "cheap" setup that doesn't hurt, but installing u-desktop on a minimal cloud image sucks [16:32] pitti: yeah, we discussed that, and agreed, we'll need to do something about it :) [16:32] but let's try to get something ready first [16:36] didrocks: once we run that in production I can work on building desktop-ish images, this is just for not making you weep too much when running locally :) [16:37] pitti: yeah, I'm already doing that with pleasure when I see that apt install -y ubuntu-desktop is just upgrading ubuntu-desktop package :p [17:31] time to go, see you tomorrow guys! === xnox is now known as xnox_2016 === alan_g is now known as alan_g|EOD === dpm is now known as dpm-afk [20:21] Good evening everyone ! === dkessel-cloud is now known as dkessel