[05:22] Good morning [07:03] good morning [07:09] bonjour didrocks, ça va ? [07:09] pitti: Hello. And thanks again for the headache fix [07:10] hey duflu; no worries, thanks for pointing it out [07:11] didrocks: je suis déjà dans le train à België :) [07:11] pitti: ça va, et toi ? :) [07:11] pitti: tu arrives à quelle heure ? [07:11] didrocks: présque 14h30 [07:12] * duflu would also like to ask for a translator in advance when ordering biere sans gluten [07:12] :) [07:12] tu as le temps d'être confortablement installé :) [07:12] duflu: no problem, stay with us :) [07:12] Thanks didrocks. See you soon [07:13] duflu: ah, tu vais être à Bruxelles aussi ? [07:13] pitti: oui [07:13] I think [07:13] duflu: are you coming to FOSDEM as well, or just the sprint? [07:13] duflu: alors, bon voyage ! [07:13] didrocks: Just the sprint [07:59] Hello, world! [08:00] morning mlankhorst [08:00] Morning! :-) [08:01] good morning desktopers! [08:05] re seb128 [08:05] lut didrocks :-) [08:07] The following problem: I have CUPS running on Raspian as a print server. On Windows, everything works fine. Ubuntu 14.04 has also worked on the last laptop. Only on my current laptop (Ubuntu 4.14 also) I can speak to the printer, but get endless blank pages. Can someone help me? [08:10] Mo_1080, hey, try #ubuntu for user support [08:11] tried that, but thanks [08:29] didrocks: I sent my review for the first patch FYI [08:33] pitti: got it! reading, thanks :) [08:38] * didrocks can see that pitti has a similar nitpick on trailing \ as I do on trailing , on the Deps/Build-deps in packaging :) [08:39] pitti: I agree with you, but seems that's not the style used in Makefile.am (having the last $(NULL)), would you do it anyway? [08:41] didrocks: I started doing that only recently [08:41] there are some 4 precedents, so it shold be fine [08:42] pitti: ok, doing then! I'm still voting strongly in favor of the same behavior in debian/control :) [08:43] mornin' [08:43] hey willcooke [08:44] larsu, I've got some meetings this morning, once they're done I'll see if I have time to get over to Cambridge. I'm on school run today, so need to be home by 1500 [08:44] didrocks: so again we talked most about the least important issue :) [08:45] moin [08:45] willcooke: morning! We're here, let us know if you can make it ;) [08:45] morning didrocks, Sweet5hark1 [08:49] pitti: ahah, I'm continuing browsing the changes and answering some more by emails [08:49] hey larsu, Sweet5hark1 [08:49] didrocks: (just kidding) [08:49] hey Sweet5hark1, wie gehts? [08:49] hallo larsu [08:49] hi pitti! how goes? [08:50] larsu: fast! (ICE to Bruessel) [08:50] well, to Cologne first, then the Thalys, but same difference [08:50] pitti: nice! Ya, I was about to ask - hackfest doesn't start until Friday ;) [08:50] pitti: we'll arrive on Thursday evening [08:50] pitti: excited, landed libreoffice 4.4.0~rc2 in -proposed a few hours ago ;) [08:51] larsu: I'll visit some friends in Leuven until then, and work from there [08:51] Sweet5hark1: /me feeds the buildd hamsters [08:51] pitti: cool, enjoy! [08:51] pitti: they did hard work in cold winter ;) [08:51] Sweet5hark1, I promoted the packages from the other bug yesterday but didn't see that others need promoted as well, doing that now [08:53] * Sweet5hark1 will arrive on Friday in Bruessels with a weird Flightplan: HAM->CPH->BRU [08:53] seb128: aye [08:59] Sweet5hark1: not by car? :P [09:01] mlankhorst: there was the option to travel with the LibreOffice-hackers-and-FSFE-folks-car track from Hamburg, but a/ I learned to late about that b/ It wouldnt fit with the extra days for Hackfests etc. [09:01] and one way trips are more expensive than roundways :/ [09:02] I never understood why.. [09:03] yo [09:04] yo yo [09:05] hey Laney, how are you? [09:06] Laney, happy birthday! [09:07] oh right, happy birthday Laney! [09:07] hey Laney, good morning [09:07] Laney: HAPPY BIRTHDAY! [09:07] * pitti hugs Laney and throws some candy [09:08] pitti: answered and did the changes along the way! Now, looking at the DGRAM part [09:08] hey, happy birthday Laney! (g+ betrayed you :)) [09:09] thanks seb128 larsu pitti didrocks ;-) [09:09] didrocks: I feel a bit bad about proposing these big changes, but I honestly think it's easier, smaller, and more robust [09:10] pitti: yeah, I don't mind dropping this buffer which can enlarge as requested to pass the structure right away instead [09:11] pitti: I need to check about the blocking vs non blocking and do it [09:16] didrocks: (non)blocking shouldn't behave any different with stream vs. dgram and read() vs. recv() [09:19] pitti: I'm trying to find a good example (most of them talk about getting back to TCP and doing serialization/deserialization) [09:20] didrocks: (non)blocking shouldn't behave any different with stream vs. dgram and read() vs. recv() [09:22] pitti: I'm trying to find a good example (most of them talk about getting back to TCP and doing [09:22] serialization/deserialization) [09:22] (recopying back due to your lag) [09:24] didrocks: perhaps udev_monitor_receive_device() in src/libudev/libudev-monitor.c ? [09:24] didrocks: but it's really quite straightforward [09:25] didrocks: except for flags (where you can pass MSG_DONTWAIT for non-blocking) it has the same signature as read() [09:25] ok, with recvmsg() then [09:25] didrocks: and correspondingly, send() and write() are pretty much the same, just that one is for dgram, the other for stream [09:26] pitti: ok, giving it a try, thanks! [09:26] didrocks: if you have a connected socket, use recv() (easier); for an unconnected socket recvmsg() [09:26] ah ok ;) [09:27] didrocks: the big advantage is that you don't have to worry about message sizes and boundaries [09:28] pitti: yeah, I just allocate the structure and pass as a parameter, I see [09:28] didrocks: you send/receive one struct at a time, don't have to decode, etc. [09:29] pitti: what happens as the socket is non blocking? recv() will still get the size I guess, and so, only get one struct? [09:29] pitti: I'll need to adapt the send back though (using this socket to send cancel messages as a string) [09:30] didrocks: right, just tell it you want to get sizeof(struct progress), you'll get one at a time [09:31] didrocks: ah, perhaps define a "command" enum for the fsckd -> fsck direction, and send that? [09:31] didrocks: (if that later needs some extensions, it could become a full "command struct" again) [09:31] pitti: yeah, will need to do this [09:31] didrocks: dgram just means you have to do exactly as many recv()s than send()s; as long as you know what kind of data you expect, you can send different lengths [09:32] pitti: ok, giving it a try [09:33] ahhh found my libreoffice on desktop bug [09:33] how silly [09:33] didrocks: ply_boot_client_tell_daemon_to_display_message()... why did they have so incredibly short and hard to read identifiers? :-) [09:34] (could it be any longer?) [09:34] pitti: I found some longer one, if you are a fan :p [09:34] pitti: but yeah for ply_boot_client_* \o/ [09:34] ones* [09:36] someone was abusing the api, long live asserts === greyback__ is now known as greyback [09:44] pitti: I need to have a fixed length then for device name [09:44] didrocks: hm, PATH_MAX? [09:45] pitti: yeah, using that already in some other place [09:46] _ask_daemon() vs. _tell_daemon() ... *sheesh* [09:47] * pitti wants to add _if_you_please() and _nudge_daemon(), _shout_at_daemon() variants [09:49] pitti: seeing the activity on plymouth upstream git, you may get maintainership role then, I would think twice, even for the sake of joke! :) === czajkows1i is now known as czajkowski [10:27] didrocks: ok, I'm through with the first round [10:28] pitti: thanks a lot! I'm looking on how to listen on the dgram, and then, once all done, will resend you a second version with the proposed enhancement [10:29] pitti: listen() is not supported on dgram socket, but I need to detect connexions, so, let's see how it goes [10:31] pitti: as I can't listen, it's easy to add new ones as they come, but unsure how to detect drop connexion… [10:36] didrocks: oh, I wasn't aware of that; do you need this? [10:36] didrocks: you already have a timeout after all, and if a fsckd is at 100% and just stops sending stuff that should be ok? or am I missing something? [10:40] didrocks: if dgram becomes too unwieldy for some reason, you might also combine the approaches [10:40] didrocks: i. e. keep STREAM and use read()/write() to send structs instead of strings [10:40] didrocks: it's a little less robust since anyone sending garbage will break everything, but *shrug* [10:41] and read/write can be interrupted and only be done partially, which is ugly for structs [10:44] compiz (core) - Info: Unity is not supported by your hardware. Enabling software rendering instead (slow). [10:44] compiz (core) - Info: Unity is fully supported by your hardware. [10:44] :/ [10:58] heh [11:32] tedg: is https://code.launchpad.net/~ted/indicator-application/lp1411959-xfce-autostart/+merge/247051 a temporary build error? [11:59] pitti: well, if a fsck stop sending stuff, it's blocking if I can't get the disconnect [12:00] pitti: yeah, seems that sending read/write for struct is more risky than the existing approach [12:00] didrocks: oh, what does it block? [12:00] pitti: well, I only timeout right now if number_device == 0 + timeout [12:00] ah [12:00] pitti: I can get a timeout per device, but I need to register last message for each [12:01] so fsckd doesn't send a final "I'm done" message? (which could just be that curr >= max) [12:01] pitti: at least, I register with the current approach exactly when a connection is drop [12:01] pitti: sending a final message is fine, but the issue is more about one process dying [12:01] didrocks: *nod*, ok; that didn't seem crucial to me, but if it is, then we can discuss that on the ML too [12:02] pitti: yeah, I think I'll keep the current code adapating to socket, and just modify to send cur, max instead of percentage [12:02] adapting* [12:02] pitti: in case I need to get that out again :) === MacSlow is now known as MacSlow|lunch [12:13] tkamppeter: do you have a VCS for s-c-p? [12:40] Sweet5hark1, https://launchpadlibrarian.net/195930264/buildlog_ubuntu-vivid-arm64.libreoffice_1%3A4.4.0~rc2-0ubuntu1_FAILEDTOBUILD.txt.gz [12:40] Sweet5hark1, it fails to build [12:40] Sweet5hark1, :-( [12:46] hooray, flipping working as intended [12:50] oops, FTL still broken :P [12:56] larsu: have you looked into gnome-system-monitor black bg previously? [12:57] had 2 different clipping bugs! [13:04] http://notyetthere.org/unity8-windowed-mode/ [13:04] \o/ === alan_g is now known as alan_g|lunch [13:10] seb128: yeah. well, it doesnt fail on the platforms we always had for LibreOffice: arm64 and ppc64el are new ... [13:10] uploading +sa30, it needs some testing but I think I fixed all glitches I've had on desktop.. [13:10] just relashing my phone to try the windowed mode [13:11] there are 4 different ways of getting contents to the screen :P [13:11] seb128: dammit. forgot to remove those additional archs. [13:12] but now I mastered them! [13:13] seb128: bumping to a version with those removed right now. [13:13] Sweet5hark1: if you didn't have a build there before then proposed-migration won't complain [13:13] Laney: https://launchpad.net/ubuntu/+source/libreoffice/1:4.3.3-0ubuntu3 did not have a build there ... [13:15] Laney, seb128: so an upload only breaking on new archs (never build before) should work in general? [13:15] all good then, at least as far as proposed-migration is concerned [13:15] seb128: ^^ [13:16] willcooke: I've ran into some issues with desktop after I fixed all the phone stuff, after all those fixes I noticed that compiz would work again correctly too in zero-copy mode, so I uploaded a fixed version. :P [13:16] mlankhorst, oh excellent! thanks [13:16] FTL windowed, compiz, and glxgears windowed now work again as intended.. if only input did [13:16] seb128, are you playing with Xmir on your U8 desktop? [13:17] it was broken, but sa30 should work (minus input) [13:18] * willcooke -> late lunch [13:18] hm... Xmir might work as replacement for Xorg with the xmir driver in full desktop mode.. [13:18] haven't tried lately.. [13:22] seb128: FWIW, 1/ arm64 breaks on not building internal mwaw, 2/ ppc64el breaks on missing gcc-4.7 on that arch. For 1/ if we sync mwaw, we might use external mwaw (its already in main) 2/ multiple options: a/ test if any later gcc preprocs work now b/ bring gcc-4.7 to ppc64el c/ MIR and use ucpp on all platforms [13:34] ok it seems to work [13:36] installing ubuntu-desktop-mir, removing nvidia-prime and changing /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf from X -core to Xmir -core [13:36] hm or not.. bah [13:38] charles: JFYI: you have two indicator-datetime fixes in two different silos, while the description suggests that you wanted both fixes in one upload [13:38] Anybody else missing the box to enter the password in the greeter when first logging into the system with latest Vivid updates? [13:39] Password is still accepted, just no box is rendered...strange. [13:41] no idea why xserver is ignored, but replacing /usr/bin/X with Xmir works :P [13:51] Laney, yes, there is an upstream VCS. It is https://git.fedorahosted.org/cgit/system-config-printer.git/. [13:51] Laney, for wha do you need it? What do you want to contribute? [13:51] tkamppeter: packaging change [13:52] Laney, so you do not want to contribute to the upstream code? On the packaging level I have never used a VCS. [13:53] tkamppeter: indeed, OK that's fine then, thanks! [13:53] Laney, what do you want to change on the packaging? [13:53] icon theme dependency (already uploaded) [13:54] mirsc [13:54] oops [13:55] Laney, OK, I have seen the change. [13:55] bleh, need hw cursor :P === alan_g|lunch is now known as alan_g [14:02] brainwash, I would expect so, but let me see. [14:03] Eh, no. But known. [14:04] tedg: ok, hopefully this little change can land in vivid soon :) [14:04] brainwash, Yeah, probably. Pushed a fix. Let's see what Jenkins thinks. [14:04] tedg: thanks :) === MacSlow|lunch is now known as MacSlow [14:41] Sweet5hark1, sorry was not around, reading backlog ... what Laney said, if we didn't have those archs it's fine to do without [14:42] let me know when you have something to sponsor [14:42] seb128: hang on a sec. [15:05] all - got the school run in a mo. Should be back in time for the meeting, but if not I wont be very late [15:05] k [15:18] ... still building source package ... [15:29] back [15:30] #startmeeting Weekly Desktop Team Meeting - 2015-01-27 [15:30] Meeting started Tue Jan 27 15:30:53 2015 UTC. The chair is willcooke. Information about MeetBot at http://wiki.ubuntu.com/meetingology. [15:30] Available commands: action commands idea info link nick === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: [15:31] Roll call: attente_, desrt, dgadomski_, didrocks, FJKong, Laney, larsu, mlankhorst, qengho, seb128, Sweet5ark1 [15:31] hey [15:31] hey o/ [15:32] I have updates for Themuso, robert_ancell, tkamppeter [15:32] s/for/from [15:33] Let's get this party started: attente_ [15:33] #topic attente_ === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: attente_ [15:33] hi [15:33] implementing the menu api on the mir server side, small menu fixes to the gdk backend to use it [15:33] going to kernel bisect for https://bugs.launchpad.net/mir/+bug/1409133 [15:33] Launchpad bug 1409133 in linux (Ubuntu) "Heavy black flickering after VT switching on Intel Ironlake Mobile." [High,Incomplete] [15:33] that's all from me [15:33] good stuff, thanks attente_ [15:33] good luck with the bisect [15:33] thanks [15:34] Let me know if you need anyone else pulling in to help [15:34] #topic desrt === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: desrt [15:34] hi! [15:34] How's CAM? [15:34] i have been sitting here for hours waiting for my turn [15:34] willcooke: under a bridge [15:34] it's lovely. [15:34] :D [15:34] Sorry I couldnt make it today - hopefully tomorrow will be easier [15:34] been getting a lot of good work done here. a lot of long-term items are getting reviews and merged [15:34] Awesome! [15:34] the unix mount monitor stuff will land before i leave, it seems [15:35] great news [15:35] also we landed the G_DECLARE_TYPE header macro stuff [15:35] and now we are doing g_autoptr(GObject) which is a local variable that unrefs itself on scope ending [15:35] which is ... nice [15:35] GListModel probably also lands today or tomorrow [15:35] neat [15:35] also chatting about some other things.... it's a good hackfest, in other words [15:35] great news [15:35] that's all i really have to say [15:36] thanks desrt [15:36] #topic dgadomski_ === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: dgadomski_ [15:36] hey! I have some questions today and I appreciate your help in getting more info on those: [15:36] * one of the users is having problems with getting external mics working on his Thinkpad X240 (bug #1414706). It does not work neither directly nor via a docking station. I believe it has something to do with either CTIA<->OMTP jack incompatibility or it may require some quirks passed to the snd-hda-intel model=. Do you know who could have some more info in that area? [15:36] bug 1414706 in alsa-driver (Ubuntu) "[20ALCTO1WW, Realtek ALC292, Black Mic, Left] No sound at all" [Undecided,New] https://launchpad.net/bugs/1414706 [15:37] dgadomski_, try asking diwic or themuso [15:37] Off the top of my head, I'd say TheMuso is probably a good starting point. He's in UTC-12 so email would be easiest [15:37] what seb128 said :) [15:37] cool, thanks! [15:37] * Somehow related to bug #1104230 - if you have some windows on an extra display, and then you disconnect the display, the window is moved to the display that is left. If you then reconnect that extra display - the window does not move back. Is a feature to restore the window missing or is it a bug? If it is missing - is it triaged to be fixed at some point? It's super annoying for a group of users using lapt [15:37] ops with docking stations. [15:37] diwic is on #ubuntu-devel atm [15:37] bug 1104230 in xserver-xorg-video-intel (Ubuntu) "DisplayPort 1.2 MST support is missing in the Intel driver" [Undecided,Confirmed] https://launchpad.net/bugs/1104230 [15:38] dgadomski_, yeah I've heard people complaining about that one as well [15:38] dgadomski_, bregma_ & co should be able to help there [15:38] feature or bug doesn't make much a difference, does it? [15:38] but yeah, it's for bregma_'s team and a compiz thing [15:39] yeah, if it's a bug there is a chance that the implementation is already there, just not working ;) [15:39] * bug #445333 - I have talked to seb128 about it a while ago, are there any plans of including the fix in gtk2? [15:39] well, on 14.04 when I reconnect my external display ALL windows move to it, so it's just a colleciton of bugs [15:39] bug 445333 in gtk+2.0 (Ubuntu Trusty) "remember password on printing to windows printers does not work" [High,Triaged] https://launchpad.net/bugs/445333 [15:40] dgadomski_, did upstream decide on what they want to do with this one? [15:40] I guess we could SRU it, it's just a non trivial change and would be good to have it landing upstream first [15:41] seb128: they still haven't made decision yet, they are being super cautious with adding anything to gtk2 [15:41] rightly so :-) [15:42] there are some users already using the hotfix I provided and they haven't reported any regressions yet, but we don't want to break gtk2 :) [15:42] I would appreciate considering it though [15:43] yeah, we should probably start by uploading it to vivid [15:43] I mean consider backporting not breaking :) [15:43] I have posted a debdiff for vivid so we could give it a try [15:43] right [15:43] I'm going to have a look at sponsoring it [15:44] thank you [15:44] that's all from me today, thanks [15:44] thanks dgadomski_ [15:44] #topic didrocks === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: didrocks [15:44] Ubuntu Make: [15:44] * Releasing Ubuntu Make 0.4.1 installing by default the java appmenu support and an intellij fix due to their web page change (http://blog.didrocks.fr/post/Bringing-appmenu-support-for-java-application-and-Ubuntu-Make-0.4.1-with-an-Intellij-IDEA-fix) [15:44] * Finishing up review and merging IDEA (non community) edition support [15:44] * Start helping a new contributor for other IDEs support [15:44] Systemd: [15:45] * continue on fsckd communication, bringing: final plymouth communication, being able to cancel current fsck at boot time, i18n support for themes not supporting it. [15:45] * review in progress, doing some polishing [15:45] Misc: [15:45] * patch pilot [15:45] * AA duties [15:45] . [15:45] thanks didrocks [15:45] yw [15:46] #topic FJKong === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: FJKong [15:46] hey [15:46] * Fix bug: after preview skin from right click menu status bar icon error [15:46] * Fix bug: crash when switch skin from menu. [15:46] * bug review: status bar icon error from some skin, find reason it is caused by size of picture and trasparent, won't fix this type [15:46] * bug review: font size won't changed in setting menu, can't be reproduced [15:46] in progress: skin error after first installed package [15:46] here is mine [15:46] . [15:46] thanks FJKong [15:47] #topic Laney === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: Laney [15:47] [15:47] HELLO [15:47] • Mainly worked on splitting adwaita-icon-theme [15:47] ∘ getting the icons in the right package [15:47] ∘ removing all main deps on gnome-icon-theme to try and get g-i-t off the cd and ideally demoted to universe [15:47] ‣ need to fix a couple of remaining BDs now, including gnome-system-monitor, see later on [15:47] ∘ updating our icon theme to inherit from this [15:47] ∘ found some gtk reftests don't work with our icon theme, added a patch to force these to adwaita for now (at the very least we need rtl icons to fix this, or to skip that test ...) [15:47] • Poke at gnome-system-monitor transparent background, don't know what happen, larsu please halp [15:47] • Merge webkitgtk, need to SRU, will do this week [15:47] • Test eog without libgrip patches, using GTK's new GtkGesture support. It works! So those are now gone [15:47] • poppler transition, couple of packages needed porting, nobody seemed to notice (good) [15:47] Laney: drop overlay-scrollbars! [15:47] • got pung to clean up the cdimage building machine as it was running low on space [15:47] • Dig into a couple of proposed-migration issues for people [15:47] 🎂 [15:47] lol [15:48] you get one more cycle of this shit, then we can :p [15:48] I could have bet on the o-s comment from larsu! [15:48] ;) [15:48] Laney: I looked into it but couldn't find a solution either [15:48] can't you just override the bg color for g-s-m? [15:48] it's something to do with the border [15:48] you did it for deja-dup iirc [15:49] I can get the colour on the GtkBox but there's still a transparent border [15:49] which is even still there with * { background-color: red } [15:49] and border-color [15:49] ho hum [15:49] ya, that's what I saw as well [15:49] maybe we've reached the end of that hack [15:50] how can there be an unstyleable transparent area? [15:51] anyway, post-meeting ;-) [15:51] that's a good question [15:51] [15:51] thanks Laney [15:51] #topic larsu === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: larsu [15:51] * finsihed up some gtk 3.14 theme fixes [15:51] * fixed the volume slider (wasn't moving properly when dragging) [15:52] * put gedit menubar back (upstream, almost ready to merge) [15:52] I have a package built for that, but it still has a header bar. Adding a titlebar makes it look weird [15:52] we decided to talk about what to do there when we see each other next week [15:53] * fixed an indicator-messages problem that phone people were hitting (unable to reply to messages) [15:53] * at a hackfest since sunday! Lots of discussions etc. [15:54] [15:54] thanks larsu [15:54] #topic mlankhorst === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: mlankhorst [15:54] noon [15:54] oh just in time [15:55] working on xmir, getting lts-utopic packages accepted [15:55] most of the desktop works now on es2 and mesa [15:55] fixed the mesa dri2 acceleration too [15:55] not much else going on right now :) [15:55] thanks mlankhorst [15:56] hopefully we can make a start on input stuff next week with the Mir guys [15:56] cursor support would be nice too [15:56] #topic qengho === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: qengho [15:56] Heya. [15:56] * More Mir work. Trying to figure out how to get around a dlopen'd protobuf problem. I may need advice here. More later. [15:56] * New chromium release 40.0.2214.93. Testing and fixing now. [15:56] EOF. [15:56] !! fast [15:56] :) [15:56] thanks qengho [15:56] new chromium \o/ :-) [15:57] seb128: You have DRI3, yes? I'll have something for you to test in 4h. [15:57] mlankhorst /might/ be able to give you some pointers with Mir? [15:57] qengho, I don't know, I've an i5 intel video, how do I tell? [15:57] @mir, there is #ubuntu-mir as well, bunch of helpful people there :-) [15:57] seb128: Error: "mir," is not a valid command. [15:57] seb128: if you had the crasher you asked about, you do. The intel driver is a good indicator you do. [15:58] k [15:58] I'm happy to do testing then [15:59] qengho I saw that missing url bubble again the other day, but I still haven't worked out the cause of events which makes it happen, so I think it might be a JS thing, perhaps the URLs are not really URLs at all but JS functions. Going to look more next time [15:59] #topic seb128 === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: seb128 [15:59] • tested touch rtm updates, reported some bugs [15:59] • some small ubuntu-system-settings reviews [15:59] • updated unity8 bugfix branch after review comments, got it landed [15:59] • updated casper to have the desktop-next iso starts the live session without the configuration wizard, users want to try the desktop not configure their user account/computer [15:59] • tried qtmir fix for gtk rendering issues on unity8 [15:59] • worked on some ubuntu-system-settings privacy panel bugs [15:59] • helped debugging unity8-desktop not starting after yesterday updates (platform-api issue, being addressed) [15:59] • usual share of desktop related bugs triages and discussions [16:00] [16:00] thx seb128 [16:00] #topic Sweet5hark1 === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: Sweet5hark1 [16:00] heya [16:00] - ran autopkgtests for 4.4.0 locally, tweaked around some failures [16:00] - uploaded libreoffice 4.4.0~rc2/vivid [16:00] -- includes these MIRs: libfreehand, libodfgen, libabw, libe-book, libeot [16:00] -- other MIRs/system libs punted for an later upload [16:00] -- (new) arm64 doesnt build yet because of internal mwaw (to investigate: can we simply build with external mwaw -> needs sync) [16:00] -- (new) ppc64el doesnt build yet because of gcc-4.7 missing, options: a/ check if newer gcc preprocessors work for LibreOffice by now b/ port gcc 4.7 on ppc64el too c/ MIR and use and test using ucpp instead on all platforms [16:00] -- however, forgot to remove ppc64el, arm64 from platform, done now with the just-created http://people.canonical.com/~bjoern/vivid/4.4.0/libreoffice_4.4.0~rc2-0ubuntu2_source.changes [16:00] - finished libreoffice 4.2.8/trusty SRU [16:00] - some investigation on libreoffice android viewer, tiled rendering, gtk+tiled rendering on MIR options [16:00] - LibreOffice migrated from freedesktop to http://bugs.documentfoundation.org [16:00] -- thus freedesktop bugzie should have lost 25% of bugs, users and traffic over the weekend. To other freedesktop projects: enjoy your speedup. [16:00] - this week: FOSDEM preparations (talks, slides, BoD and employee meetings) [16:01] thanks Sweet5hark1 [16:01] #topic robert_ancell === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: robert_ancell [16:01] Worked on: [16:01] - Released unity-greeter 14.04.11 (SRU) [16:01] - Released lightdm 1.13.1 [16:01] - Released simple-scan 3.15.4 [16:01] - Sponsored GNOME updates [16:01] - Updated Sudoku and Mahjongg to 3.14 [16:01] Currently working on: [16:01] - Unity Greeter update for vivid (tests are failing on vivid, not on 14.04) [16:01] - TPM support [16:01] - Updating Indic font packages [16:01] #topic themuso === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: themuso [16:01] * Made a breakthrough WRT bug #1066157. Just got to make the dash work properly with orca when open and closed more than once. Additionally a small bit of work on the Orca side will be needed for Vivid. [16:01] * Updated pulseaudio to version 5.99.3 in the transitions PPA, ppa:ubuntu-desktop/transitions. [16:01] bug 1066157 in unity (Ubuntu) "dash +orca does not speak the names of application icons" [High,Triaged] https://launchpad.net/bugs/1066157 [16:01] #topic tkamppeter === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: tkamppeter [16:02] - system-config-printer: Uploaded and verified fixes of second SRU for Utopic. Now automatic driver download should work again in all situations. Also uploaded a second SRU for Trusty with the same fixes and uploaded the fixes to Vivid and submitted them upstream. [16:02] - Started discussion on project ideas for Google Summer of Code 2015. [16:02] - Bugs [16:02] #topic Any other business === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v | Weekly Desktop Team Meeting - 2015-01-27 | Current topic: Any other business [16:02] It's the start of the annual review process [16:02] YAY [16:02] Expect emails and stuff [16:02] * didrocks got emails, even spam, waiting for stuff [16:03] I hope you all have a fun time @ FOSDEM [16:03] See some of you on Sunday/Monday [16:03] #endmeeting === meetingology changed the topic of #ubuntu-desktop to: Welcome to the Desktop Team | https://wiki.ubuntu.com/DesktopTeam | For support please join #ubuntu | Issues with GTK 3.14? Check here: http://pad.ubuntu.com/gtk-update-v [16:03] Meeting ended Tue Jan 27 16:03:46 2015 UTC. [16:03] Minutes: http://ubottu.com/meetingology/logs/ubuntu-desktop/2015/ubuntu-desktop.2015-01-27-15.30.moin.txt [16:03] thanks all [16:03] thanks [16:03] thanks willcooke [16:04] * willcooke -> Back to shouting at mirscreencast [16:04] thanks [16:04] Sweet5hark1, so http://people.canonical.com/~bjoern/vivid/4.4.0/libreoffice_4.4.0~rc2-0ubuntu2_source.changes is ready for sponsoring? [16:04] seb128: yes [16:04] don't you want to wait for the current version to migrate? [16:04] willcooke: hopefully it's not mirsoundrecorder :) [16:05] Sweet5hark1, done [16:05] Laney, ups, sorry, read your comment after dputting [16:05] guess not [16:05] seb128: libreoffice-l10n should not need a rebuild [16:05] seb128: thanks. sorry for the extra hassle [16:06] Sweet5hark1, no worry [16:08] qengho: i think i might've had a similar problem because i accidentally had the mir android packages installed [16:15] attente_: which problem? DRI3 crasher? === l3on_ is now known as l3on [16:18] hum [16:18] is anybody else having lot of spacing in their sound menus "app entries"? [16:18] not more than usual, but I didn't restart after updating today [16:18] didrocks, thanks [16:18] didrocks, want to try in a guest session maybe? ;-) [16:18] seb128: confirmed in a guest, after starting rhythmbox -> rhythmbox registered, but no controls showing on [16:19] didrocks, thanks! [16:19] yw :) [16:19] larsu, Laney, ^ any idea? [16:20] ja [16:20] it's today's light-themes update [16:21] I guess it's it as well that makes the password entry on the greeter not visible [16:21] yep, confirmed [16:21] head -> desk [16:21] mitya57, ^ [16:22] larsu, sorry :-( [16:22] seb128: which updates are in there? The gnome-panel one? [16:22] larsu, https://launchpad.net/ubuntu/+source/ubuntu-themes/14.04+15.04.20150126.1-0ubuntu1 [16:23] could be any of them :/ [16:26] seb128: oh right: could you please sync libmwaw_0.3.4-1 from debian experimental to vivid? for the next libreoffice upload ... [16:26] (so not terribly urgent) [16:27] larsu, let me know if I can help testing/finding the issue [16:27] seb128: thanks [16:28] Sweet5hark1, synced [16:28] seb128: awesome, thx [16:28] yw! [16:31] qengho: mir protobuf issue [16:32] attente_: Ah. Thanks. [16:32] think it had to do with having both the mesa and android packages installed simultaneously. could be a different problem though [16:35] attente_: I think this is different. [16:36] shrug [16:36] I again have polkit auth screwed after some updates [16:36] ah, ok [16:37] pitti, did you have hints on how to debug that? logind restarted some 15 minutes ago, I guess that was part of the upgrades, since I get polkit prompt for every action (like things wanting to write user datas to accountsservice, update-manager to check for updates, etc) [16:38] seb128: ah, you couldn't reproduce last time with merely restarting logind, right? [16:38] seb128: what's loginctl show-session $XDG_SESSION_ID [16:38] pitti, indeed not [16:38] * mitya57 reads the scrollback [16:39] pitti, http://paste.ubuntu.com/9900729/ [16:39] pitti, I guess active=no is wrong? [16:40] larsu: "could be any of them" — no, could be any of *your* changes ;) [16:40] pitti, that session is c5 but I've a c2 which is active [16:40] pitti, http://paste.ubuntu.com/9900750/ is c2 [16:43] seb128: right, that looks wrong, if c5 is your active session [16:43] Timestamp=lun. 2015-01-26 08:13:13 CET [16:43] seb128: is that plausible? i. e. is your computer running since (at least) yesterday morning, when you logged in first? [16:44] pitti, yes, that seems about right for my uptime/last boot [16:44] pitti, I did close my session and logged back in since though [16:44] seb128: i. e. did you log out and back in, and perhaps there was still some leftover process from the old c2 session which kept the session alive? [16:44] mitya57: dude... [16:45] seb128: found the issue - the menu item sets the spinner class on itself and the way spinners are drawn got changed in gtk [16:45] larsu, ah, great :-) [16:45] larsu, that was efficient, how did you find it? [16:45] pitti, http://paste.ubuntu.com/9900820/ [16:45] seb128: gtkinspector! [16:45] seb128: navigated to the menu item to see what style is set on it [16:46] seb128: don't start blaming chrome! [16:46] I see what you are doing here :) [16:46] pitti, so maybe it has nothing to do with the update, I also restarted my session which could be the issue [16:46] didrocks, :-) [16:46] seb128: ah, that makes sense; they are both on vt7 and display :0, so I guess logind becomes confused [16:46] pitti, but why is that session still marked as active? [16:46] seb128: well, I think the old logind might still have known which one is "really" active, but as that's due to watching VT changes it doesn't get written to /run/systemd/ [16:46] shouldn't the logout have flagged it inactive? [16:47] seb128: I suppose the restarted login just iterated over them and marked the first one active that "fitted" [16:47] oh, ok [16:47] seb128: yeah, I guess that's roughly the direction of the bug [16:47] that would make sense [16:47] larsu is super fast [16:47] want me to report that? [16:47] seb128: would you mind filing one with all the output from above and the summary of how you (re)started sessions? [16:48] seb128: I think it should be possible to reproduce that somehow; i. e. log out with some leftover processes (so that c2 doesn't close), log back in, restart logind [16:48] right [16:49] seb128: hm, actually /run/systemd/sessions/c2 does have the ACTIVE flag [16:49] seb128: so it might be more complicated, like restarting logind while the session gets changed or whatnot [16:49] I updated from update-manager on desktop [16:49] so I for sure didn't log out during the update [16:50] ok, good data point [16:50] seb128: well, it could still be that logind re-evaluates ACTIVE at startup (which would make sense) [16:50] seb128: blindly trusting what's in /run doesn't sound like a good idea [16:51] seb128: playing with that in a VM [16:54] pitti, https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1415104 [16:54] Launchpad bug 1415104 in systemd (Ubuntu) "logind flags wrong session as active" [Undecided,New] [16:55] seb128: merci [16:55] pitti, merci à toi ! [16:56] seb128: hm, what's weird is that c2 is in state "opening" [16:56] yeah [16:56] seb128: I tried that and the old one is in state "closing" after logging out and back in [16:57] pitti, is the timestamp supposed to be the session start? [16:57] seb128: ah, reproduced! [16:57] oh, great! [16:57] how? [17:01] seb128: sent to the bug report; pretty much as I suspected above [17:03] pitti, makes sense, thanks for looking at it! [17:03] seb128: I'll look at it tomorrow, I'm too tired today I'm afraid [17:04] pitti, yeah, no hurry, it's not like it was happening often or not easy to workaround [17:04] would be nice to fix for vivid release though [17:04] seb128: yes, absolutely; I haven't looked into the code yet, but my gut feeling is that it's rather shallow [17:05] good [17:12] larsu: please ping me if you need approve/landing [17:14] mitya57: will do, thanks (at a hackfest, might take a while) [17:16] larsu: btw, seb128 also talked about an issue with unity-greeter, that's probably because you dropped an unico rule from unity-greeter.css, right? [17:16] mitya57, larsu, I tried to add that line back it doesn't fix it [17:17] right, unico rules didn't do anything anymore [17:18] larsu, btw I expect users are going to be highly confused by the greeter one, the password entry is missing [17:18] you can actually type but I expect we start receiving soon "I can't log in anymore" bugs [17:19] I can revert both larsu's changes temporarily if needed [17:20] mitya57, thanks, let's see if larsu comes with a fix today, if not that might be a good idea indeed [17:21] seb128: can I test the greeter in my session? [17:21] larsu, unity-greeter --test-mode [17:22] larsu, be careful, it might disable some g-s-d/u-s-d plugins from your user config [17:22] awesome! Thanks [17:22] e.g changing the active gsettings key [17:22] just in case you notice that e.g multimedia keys stop working [17:22] I can't log in anymore!?!!!!1! [17:23] lol [17:25] same issue, it sets spinner [17:45] hello, i've got a problem with dual booting my hp envy 4-1100ed. My pc was delivered with Windows 8.1, and now is want to install ubuntu besides it. I've made a bootable USB stick with ubuntu 14.01 on it, my BIOS settings are ok, my internal hdd has unallocated space and i did everything i had to do to install ubuntu according to several 'how tos', but when i boot ubuntu fron the USB, i don't get the choice how to install ubu [17:45] the screen where i’m supposed to choose a partition on which i want to install ubuntu, except the fact that it shows no storage at all. The section is completely empty. Does someone know what’s going on? [17:49] hey paulltk_ - you would be best of asking in the #ubuntu channel. Those guys are better placed to help I think [17:50] oh, looks like you are already there [17:53] willcooke, thanks, yeah i didn't know where i could ask best [17:53] paulltk_, as a side note - could it be a UEFI BIOS thing? Secure boot? [17:56] willcooke, secure boot is disabled, i think not so, besides i thought that ubuntu had a signature? [17:58] willcooke, anyway thanks for your help! [17:58] paulltk_, nw === alan_g is now known as alan_g|EOD [19:10] * willcooke -> EOD === greyback__ is now known as greyback [19:32] Laney: still around? [19:35] my IRC says he's away [19:36] * larsu is trying to find out why we're not shipping all icons in adwaita-icon-theme [19:36] but it can wait till tomorrow - it's his bday after all [19:37] some of the icons are in adwaita-icon-theme-full [19:37] interesting... [19:38] that's what we had in gnome-icon-theme previously [19:43] larsu: btw, any update on the theme issues? should I do the temporary revert as agreed with seb128? [19:52] * mitya57 → EOD, too late here [20:09] mitya57: no, found both issues already. Just have to come up with patches [21:09] larsu, what's the other MP you refer to in https://code.launchpad.net/~larsu/unity-greeter/dont-set-spinner/+merge/247770? [21:10] robert_ancell: https://code.launchpad.net/~larsu/ubuntu-themes/unity-greeter-pw-entry/+merge/247771 [21:10] it sets a -gtk-icon-source on the entry [21:10] problem is that we don't draw spinners anymore unless they're spinning [21:10] so setting the .spinner class results in getting opacity=0 for your widget when it's inactive [21:11] robert_ancell: I have the same problem in i-sound, please wait with merging that second one [21:11] larsu, do we need a dependency on unity-themes? [21:11] no [21:11] ok [21:11] whichever theme you're using should support this [21:11] Adwaita does, for example [21:19] robert_ancell: done [21:20] thanks for the review [21:20] np [21:21] note: this won't work until our adwaita-icon-theme gets process-working-symbolic [21:21] or out theme gets a custom one... [21:21] no clue why it's not in the package, will ask Laney tomorrow [21:21] larsu, yeah, that's why I was wondering if we should put a dependency in debian/control. But it's probably just easier to wait [21:22] * larsu nods