**** BEGIN LOGGING AT Thu Nov 19 02:59:58 2015 Nov 19 04:05:06 Okay, I’m back home - looks like the Guest network was blocking freenode Nov 19 04:06:11 The build has been chugging along since I restarted it. Nov 19 04:10:10 …and now I’m ripping a DVD. Let’s see if I can melt my Macbook. Nov 19 04:26:39 The %CPU is only 500, so it looks like both jobs are IO-limited. Nov 19 08:07:58 Moin Nov 19 08:09:01 morning Nov 19 08:10:50 Herrie|Veer: in the end, did you figure out how to add qtpositionnnig to the qtwebengine recipe? Nov 19 08:11:02 looks like PACKAGECONFIG might just do the trick Nov 19 08:11:49 Tofe: No that doesn't, tried adding a depends but that makes the build fail completely. I guess you just need to fix something in qtwebengine so we can bump SRCREV :P Nov 19 08:18:07 Herrie|Veer: in a bbappend, you shouldn't use "=", but "+=", in case the value is already defined Nov 19 08:18:37 (a PR would have let me point this out ;) ) Nov 19 08:18:42 and indeed, qtlocation is already in DEPENDS in the main recipe Nov 19 08:19:17 probably same issue for PACKAGECONFIG, when I look at the main recipe Nov 19 08:20:40 Tofe: The idea of PACKAGECONFIG in bbappend is to overwrite the one in the main recipe at least that's how I understood it. Nov 19 08:23:08 but the default value in main recipe is quite different from what has been uncommented out Nov 19 08:23:22 PACKAGECONFIG ??= "libwebp flac libevent libxslt speex" Nov 19 08:23:52 w.r.t. PACKAGECONFIG = "gstreamer qtlocation qtsensors" Nov 19 08:24:05 I guess some input from JaMa would be helpful :P$ Nov 19 08:44:45 just add it to DEPENDS Nov 19 08:44:53 there isn't any PACKAGECONFIG for qtlocation Nov 19 08:44:55 see https://github.com/meta-qt5/meta-qt5/commit/c2a13c3ae3e2e8a0fe0f4a2ac1ea1c6e58d7f73c Nov 19 08:45:59 JaMa: but qtlocation is already in DEPENDS in the main recipe Nov 19 08:46:58 and qtpositionnnig still isn't enabled in log.do_configure? Nov 19 08:47:30 and is qtlocation in DEPENDS in the version you're using? Nov 19 08:48:24 IIRC you're still using meta-qt5 with 5.5.1, not 5.6 so this meta-qt5 commit isn't there Nov 19 08:49:10 neither is any PACKAGECONFIG options Nov 19 08:49:29 so from last 3 meta-webos-ports commits, only the middle one is useful Nov 19 09:24:24 oh, I didn't event think about the fact that I was looking at a too-recent version of meta-qt5 Nov 19 09:58:18 JaMa: When I add the DEPEND on qtlocation to qtwebengine bbappend the build fails Nov 19 10:04:59 do you have a log? Nov 19 10:07:06 JaMa: On my Veer so cannot paste the whole long URL easily but it's last failed Mako for luneos-testing. Nov 19 10:07:26 Unknown module(s) in QT: webchannel seems to be the error Nov 19 10:13:38 strange qtwebchannel should be in qtwebengine DEPENDS already Nov 19 10:13:41 I'll check it Nov 19 10:14:22 hmm of course, because you've overwritten the DEPENDS in .bbappend Nov 19 10:14:29 instead of adding qtlocation to it Nov 19 10:15:14 if you use DEPENDS += "qtlocation" then it will work fine Nov 19 10:19:17 JaMa: OK :) Thnx Nov 19 18:40:47 Any idea how I could trace a document.dispatchEvent call ? Nov 19 18:49:55 nizovn/Tofe/JaMa/DougReeder: The QtLocation stuff for HTML5 Geolocation now works : Nov 19 18:49:56 :D Nov 19 18:50:03 yepee! Nov 19 18:50:51 Yay! So we can run Testr on the current nightly build, and see it work? Nov 19 18:51:04 DougReeder: It does Nov 19 18:51:24 Just accuracy with High doesn't give the same accurate result as the PalmBus call Nov 19 18:52:07 I probably won't have the time to check other apps until Tuesday. Nov 19 18:52:55 DougReeder: Browser also works Nov 19 18:53:03 If you have something for me to test, I can have a look Nov 19 18:55:12 You could try Serene Notes - the latest is in the Hominid-Software feed. Nov 19 18:57:02 How should I understand this : document.addEventListener("menubutton",t.bind(t.Signals,"send","onmenubutton") ? Does it mean that when we receive the "menubutton" event, we'll send the Enyo event "onmenubutton" somewhere ? Nov 19 19:02:36 Tofe, if I'm reading that right, wwhen menubutton is pressed, a broadcast event is sent Nov 19 19:03:31 ok; then the appmenu not working is somehow because that broadcast message is never received by the enyo.AppMenu kind Nov 19 19:04:20 any instance of Signals with a onmenubutton pproperty will pass the event to its parent Nov 19 19:05:24 there is an ApplicationEvents kind, instance of Signals Nov 19 19:06:06 DougReeder: I when I press the Pin icon in the note, I get an address in my note :) Nov 19 19:06:12 It's not accurate but at least in my city ;) Nov 19 19:07:00 Are you sure the menubutton event i being raised on document? That's not a standard DOM event Nov 19 19:08:01 Herrie, that sounds correct for a low-accuracy location fix. Nov 19 19:08:02 yes, I've replaced the t.bind(...) function with my own function, which simply does a console.log, and it was called Nov 19 19:10:35 Tofe, I thnk you'll need to check the code that's supposed to raise the "menubutton" event on document. Nov 19 19:12:32 DougReeder: ok Nov 19 19:17:40 Tofe, sorry, our messages crossed. If you replaced t.bind with your function, and it was called, then the system stuff is fine, and it's an Enyo issue. Nov 19 19:17:52 DougReeder: if in WebInspector I do 'document.addEventListener("menubutton", function(e) {console.log("eveeent")})' then if I try to open the menu on the device I get my eveeent log. Doesn't that confirm that it is sent correctly? Nov 19 19:18:08 ah ok we agree Nov 19 19:19:05 Now I'll have to digg into enyo :) easy! Nov 19 19:20:07 When you create another instance of Signals, and set the onmenubutton property to the name of a function on the parent of the Signals, what happens? Nov 19 19:20:24 I didn't try that yet Nov 19 19:21:14 I'm still learning Enyo ;) Nov 19 19:25:02 what does your instance of enyo.AppMenu look like? Nov 19 19:48:36 DougReeder: http://pastebin.com/k3mapCJs Nov 19 19:49:16 to me, it looks correct Nov 19 19:49:46 there is a Signals element, related to onmenubutton and to a function of the parent Nov 19 19:50:48 but I never get to see my console.log I inserted in toggle() Nov 19 19:51:46 * DougReeder reads Nov 19 19:52:19 (It's Testr code anyway ;) ) Nov 19 19:53:05 It looks correct :-S Nov 19 19:53:52 must be some weird thing, maybe related to webengine Nov 19 19:54:31 try putting quotes around enyo.Signals Nov 19 19:57:25 nope Nov 19 19:57:47 Bummer. Nov 19 20:02:43 I'll have to leave, so I'll try to have another look tomorrow Nov 19 20:05:58 Tofe, you're trying to get the app menu working in Testr? Nov 19 21:00:22 DougReeder: yes Nov 19 22:12:16 nizovn: Is this what we'd need for proper GPS to work? https://github.com/mlehtima/geoclue-provider-hybris-community/tree/master/geoclue-provider-hybris-community **** ENDING LOGGING AT Fri Nov 20 02:59:58 2015