=== Jucato_ is now known as Jucato [04:18] hello people, I'm new here and want to port ubuntu touch for Zuk Z1. Can anyone get me started? [04:54] Anyone? [04:54] falcon: repeat your issue plz? [04:55] hello people, I'm new here and want to port ubuntu touch for Zuk Z1. Can anyone get me started? [04:55] the wiki is a little bit blunt [04:55] falcon: porting ubuntu touch isnt very easy mate [04:55] falcon: perhaps try the XDA forums and try to find an existing project? [04:56] falcon: another way around is too sell your device and buy a supported ubuntu touch device [04:56] I have ported Sailfish OS. Same with libhybris. Their build wiki was good. [04:57] falcon: we alway looking for porters, makes it good for the community [04:57] So I guessed this will be worth the try. [04:57] falcon: try the XDA forums and mariogrip website [04:58] Not to sound very aggressive here. But mariogrip's ubports community has some serious psychos out there. I'll try though [05:01] just a question is ubuntu's source compatible with cm-12.1 abi? (Lollipop)?? [05:01] falcon_: dont know that one mate [05:02] but latest OTA should be more android friendly so i read [05:03] But I'll say porting wiki is really inadequate. [05:05] falcon_: unfortunately porting isnt very easy, we need some breakthrough worldwide still in my opinion [05:05] falcon_: im waiting for ubuntu-touch could be installed on ANY device, would rock my world totaly [05:05] even me. [05:06] I have tried almost all other open oses (ffos,sfos,all android variants, maemo/meego,iOS) etc., Only ubuntu is pending. [05:07] falcon_: perhaps your the one that will lead us further :p [05:07] I ported only one of em.... But then who knows. :P [08:43] Trying to install on a OnePlus X...got to the point to install and select a channel but I get "Device MSM8974 not found on server". Any help? [08:56] Trying to install on a OnePlus X...got to the point to install and select a channel but I get "Device MSM8974 not found on server". Any help? === JamesTait is now known as Guest95749 === Guest95749 is now known as JamesTait === JanC is now known as Guest86538 === JanC_ is now known as JanC === tosky_ is now known as tosky [11:25] hi there [13:30] Hey LoquiIm on the store :) [13:48] mterry, is there anyway i can get apps launching in the unity8-session with strict confinement? [13:48] kenvandine: yeah... should be working? I had it working when I was testing the unity8 interface, maybe you need that snapd branch to land first... But you tried it with the mir and unity7 interfaces and it didn't work? [13:49] right [13:49] mterry, it wasn't working for me last week and tedg suggested you might have something working [13:49] kenvandine: ok I guess you have to wait for a unity8 PR to land [13:49] Which is stuck in review issues right now [13:49] or i can merge that into my branch :) [13:50] kenvandine: oh it's not a unity8 PR but a unity8-interface PR for snapd -- which is... here: https://github.com/snapcore/snapd/pull/2787 [13:50] yeah, i have a snapd branch for the content-transfer interface [13:50] which is what i'm trying to test [13:50] kenvandine: if it doens't work after that, let me know [13:50] mterry, thx [13:57] whoot [14:14] tedg: is there a way for UAL to be able to tell an app its own AppID? [14:15] I think it sets APP_ID in Touch? But I don't think that's true in snappy [14:15] Because it doesn't really control that launch [14:15] Content Hub is relying on APP_ID right now [14:15] But maybe if there were an api it could call to get its appid from UAL? [14:20] tedg: I guess an app could do it now by iterating the running apps and checking if its own pid matches any of them [14:27] I got this error trying to cross-compile wpa for armhf on a x86_64 host. [14:27] "/usr/include/qt4/QtCore/qatomic_armv5.h:131: Error: no such instruction: `swpb %al,%bpl,[%rbx]'" [14:27] mterry: why would the app even need to know it's own full app id? [14:27] Reading online it seems to be due to an incorrect setup of qmake. In particular it seems to not find the arm toolchain. [14:27] dobey: content hub uses it to talk to peers over dbus [14:27] I'm totally ignorant in QT developing. The only file that I think could be a config for qmake is the wpa_gui.pro that qmake should use to generate its makefile. [14:28] https://www.irccloud.com/pastebin/ni0ymJpB/ [14:31] mterry: ah so you mean the content-hub api that the app is using, needs to know the app id? [14:31] dobey: yeah, libcontenthub or whatever [14:34] mterry: i think kenvandine added some API in the last UAL landing specifically for that [14:35] or at least, to find the application by pid, and focus it [14:35] I see Application::findInstance(pid_t) [14:35] Which yeah I can call for each running application [14:36] yeah, and then Application::appId() gives you that [14:37] javier4: not sure what you're trying to do exactly there, but it looks like that is using qt4, and we don't use qt4 on the phone [14:38] mterry: for snaps they get everything but the app name as variables from snapd [14:38] mterry: apps don't generally have permission to use UAL, requires a bunch of access to systemd. [14:39] tedg: ah including the ability to list running apps? [14:39] makes sense if confined [14:40] mterry: I think we could still set the envvar, but would love to avoid it. [14:40] dobey: I'm trying to build a customized version of wpa package. Even the standard one includes a qt gui. I don't care if it doesn't get used. [14:40] tedg: well I would propose that (A) we get snappy to expose the current command in env and (B) add an api to UAL to get the current appid (and then it composes those pieces together, so that apps don't need to know format of appid parts) [14:41] mterry: running app list is an information leak... could find out you have the Fox News app running and tell all your friends 😉 [14:41] javier4: disable building the qt gui then? [14:41] Yeah makes sense [14:45] dobey, commenting out this target from main wpa_supplicant Makefile should be enough, right? [14:45] wpa_gui-qt4: wpa_gui-qt4/Makefile wpa_gui-qt4/lang/wpa_gui_de.qm [14:45] $(MAKE) -C wpa_gui-qt4 [14:45] tedg, lol... i swear i don't have a fox news app :) [14:46] mterry, yeah, the content-hub service gets the pid of the connecting app from dbus and calls findInstance(pid_t) [14:46] at least for where we need it in the service now [14:47] javier4: i guess so, yes [14:47] dobey: I'll try. Thanks. [14:47] kenvandine: yeah I'm thinking app-side though, where it exposes its own appid path on dbus [14:48] mterry, yeah, i think I might need that too [14:49] hrmm [14:49] for libcontent-hub used on the app side [14:49] i think right now it checks APP_ID in the env [14:49] probably some issues there with having multiple versions of an app, too [14:49] kenvandine: right that's exactly where I'm looking actually :P (working on a patch to contenthub to use UAL for parsing appids instead of embedding format knowledge there) [14:49] mterry, excellent... that will be a welcome patch :) [14:50] mterry, i'm probably close to running into that issue :) [14:51] mterry: well you can just assemble the appid using ual API, if you have the three individual pieces [14:51] mterry: and it sounds like snapd already sets env vars that provide two of the pieces? [14:52] yeah you can call discover() and give the three pieces -- but you would have to know you're on snappy and what the env vars are [14:52] and do something else if you're not on snappy [14:53] well, on deb there is only one piece [14:54] Point is, it's a complicated landscape that apps shouldn't have to care about. UAL knows about whether an app is in libertine or whatever. apps shouldn't have to piece that together themsevles [14:57] sure, so i think you need to call findInstance() and work back from that then, and we need to solve the confinement problems there [19:44] Did not realise but with the updated linux support i can make videocalls on skype now with the Skype (unofficial) app http://www.omgubuntu.co.uk/2017/03/skype-linux-beta-video-calling === iahmad_ is now known as iahmad === Elleo_ is now known as Elleo === Jucato_ is now known as Jucato