Re: [Interest] Slackware binary package of Qt5

2014-11-15 Thread Genghis Khan
On Fri, 14 Nov 2014 13:55:08 -0800
Thiago Macieira thiago.macie...@intel.com wrote:

 On Friday 14 November 2014 22:23:52 Genghis Khan wrote:
  Hello,
  
  I was wondering if anyone on this list knows of a trusted source
  where one can achieve Slackware binary package of Qt5.
  
  Alternatively, provide me with a solution for overcoming the
  following error during compilation (see file attached).
  
  sed: can't
  read /tmp/SBo/package-qt5/usr/lib/pkgconfig/Qt5WebKit.pc: No such
  file or directory
 
 That line appears after the last make output line. It doesn't come
 from Qt.
 
 Please check the scripts that you used to build Qt with.

This is the script that I use under Salix 14.1.

http://slackbuilds.org/repository/14.1/libraries/qt5/
http://slackbuilds.org/slackbuilds/14.1/libraries/qt5/qt5.SlackBuild
http://slackbuilds.org/slackbuilds/14.1/libraries/qt5.tar.gz (attached)


qt5.tar.gz
Description: GNU Zip compressed data
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] Qt Quick Compiler (Interest Digest, Vol 38, Issue 51)

2014-11-15 Thread m...@rpzdesign.com
Tuukka:

Your quote:

However the most relevant question is how much is the improvement in
Your use case. Best way to check that is to try.

Best way is to try? How do I do that?

Seems like the only way to try it is to activate an enterprise
/professional subscription.

Your thoughts?

Cheers,

md

On 11/15/2014 1:54 AM, Turunen Tuukka wrote:
 
 Hi Harri,
 
 Our measurements with Qt Quick Compiler 1.0 with different kind of projects 
 indicate that a typical mid-sized Qt Quick application startup is 30-40% 
 faster with compiled Qt Quick. This is an excellent improvement and we 
 believe we can improve this even more in the future. The highest startup time 
 improvements we’ve gotten are as high as 90% in the case where the 
 application is very JavaScript intense and contains no other items, like 
 graphics, to load at startup.
 
 I do agree that we should provide more metrics and also provide to others 
 validate these. However the most relevant question is how much is the 
 improvement in Your use case. Best way to check that is to try. There are, of 
 course, many other things to optimize startup time. After these are all done, 
 QQC still shaves some time away from the startup.
 
 Yours,
 
 --
 Tuukka
 
 Harri Pasanen ha...@mpaja.com kirjoitti 14.11.2014 kello 17.09:

 Actually I was less interested in the compilation time than what it is 
 the return for the investment.

 Reading the compiler docs, they recommend disabling the compilation for 
 debug builds, as it can interfere with debugging. So through configure 
 the build/deploy cycle should stay the same for debug builds.  Of course 
 in reality you will need to do a couple of rounds of testing with 
 release builds as well.

 But nobody has mentioned any figures on the speed gains resulting from 
 using the compiler.

 A related question, has anyone tried to coax QML, or rather the 
 javascript components through the Closure Compiler?
 https://developers.google.com/speed/articles/compressing-javascript

 It might help a little, especially with javascript heavy QML, as it 
 would reduce the working set size / cache misses, etc.

 Idle thoughts,

 Harri


 On 14/11/2014 13:24, rpzrpz...@gmail.com wrote:
 Then that would make the benchmarks that Harri requested a mute point.

 Unless you make clean, the incremental build would not care about
 10,000 lines of QML code. It would only slow down on the changed QML.

 Is there an option to turn off the Quick Compiler for beta builds and
 only kick it on during release?

 md


 On 11/14/2014 3:01 AM, Portale Alessandro wrote:
 According to a quick test I did just now, with Qt 5.4-beta (Qt Quick 
 Compiler 2.0) on msvc2013, it only re-compiles the changed qml files.

 Best regards,
 Alessandro Portale
 
 Betreff: Re: [Interest] Qt Quick Compiler

 Does the quick compiler only re-compile those QML files that were
 changed or does it re-compile ALL QML every time regardless of changes
 to the QML files or not?

 On 11/13/2014 8:10 PM, Yang Fan wrote:
 I have not test the running improvement. But I can tell you that it slow
 down the build process significantly if you have many QML files. Every
 QML file will be converted to a cpp file which will be compiled, you
 know the C++ compiler is very slow.

 On Thu, Nov 13, 2014 at 11:42 PM, Harri Pasanen ha...@mpaja.com
 mailto:ha...@mpaja.com wrote:

 Hi,

 Are there benchmarks on how  much start-up time is improved with the 
 Qt
 Quick compiler?
 Say I have 1 lines of QML on Android, any idea how many percent 
 gets
 shaved off the start-up time?

 Is the improvement identical across platforms, iOS, Android, desktop
 ...?
 Is the compiler itself fast, will it slow down the build/deploy cycle
 significantly?



 Curious,

 Harri



 ___
 Interest mailing list
 Interest@qt-project.org mailto:Interest@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/interest




 --
 Regards,
 Fan Yang


 ___
 Interest mailing list
 Interest@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/interest
 ___
 Interest mailing list
 Interest@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/interest
 ___
 Interest mailing list
 Interest@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/interest

 ___
 Interest mailing list
 Interest@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/interest
 ___
 Interest mailing list
 Interest@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/interest
 
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] Qt Quick Compiler

2014-11-15 Thread Yang Fan
I just want to know where can I get Qt Quick Compiler 2.0 with Qt 5.4-beta?


Regards,
Fan Yang





 On 2014年11月14日, at 下午4:01, Portale Alessandro 
 alessandro.port...@theqtcompany.com wrote:
 
 According to a quick test I did just now, with Qt 5.4-beta (Qt Quick Compiler 
 2.0) on msvc2013, it only re-compiles the changed qml files.
 
 Best regards,
 Alessandro Portale
 
 Betreff: Re: [Interest] Qt Quick Compiler
 
 Does the quick compiler only re-compile those QML files that were
 changed or does it re-compile ALL QML every time regardless of changes
 to the QML files or not?
 
 On 11/13/2014 8:10 PM, Yang Fan wrote:
 I have not test the running improvement. But I can tell you that it slow
 down the build process significantly if you have many QML files. Every
 QML file will be converted to a cpp file which will be compiled, you
 know the C++ compiler is very slow.
 
 On Thu, Nov 13, 2014 at 11:42 PM, Harri Pasanen ha...@mpaja.com
 mailto:ha...@mpaja.com wrote:
 
Hi,
 
Are there benchmarks on how  much start-up time is improved with the Qt
Quick compiler?
Say I have 1 lines of QML on Android, any idea how many percent gets
shaved off the start-up time?
 
Is the improvement identical across platforms, iOS, Android, desktop
...?
Is the compiler itself fast, will it slow down the build/deploy cycle
significantly?
 
 
 
Curious,
 
Harri
 
 
 
___
Interest mailing list
Interest@qt-project.org mailto:Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest
 
 
 
 
 --
 Regards,
 Fan Yang
 
 
 ___
 Interest mailing list
 Interest@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/interest
 
 ___
 Interest mailing list
 Interest@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/interest
 ___
 Interest mailing list
 Interest@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/interest

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


[Interest] Who and why changed WIKI Gerrit-Introduction

2014-11-15 Thread Denis Shienkov
Hi all.

Please revert back changes from 
http://qt-project.org/wiki/Gerrit-Introduction  page. This changes 
made from 11:43, 5 Nov 2014 by  alkino.  Earlier I used this page 
for direct copying of Git links examples for a contribution to the project.

But now mention of port 29418 and others things are deleted there. Thus 
now WIKI contains invalid examples and new users will be confused. I do 
not understand, why this deletion was made.

BR,
Denis
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] Who and why changed WIKI Gerrit-Introduction

2014-11-15 Thread Giuseppe D'Angelo

Il 15/11/2014 17:39, Denis Shienkov ha scritto:

Please revert back changes from
http://qt-project.org/wiki/Gerrit-Introduction;  page. This changes
made from 11:43, 5 Nov 2014 by  alkino.  Earlier I used this page
for direct copying of Git links examples for a contribution to the project.

But now mention of port 29418 and others things are deleted there. Thus
now WIKI contains invalid examples and new users will be confused. I do
not understand, why this deletion was made.


The change message explains why: you can store the username and the port 
into your .ssh/config file, in order not to repeat them everywhere. But 
I kind of agree that for newcomers having one less configuration step 
and links that you can cp can be easier.


More in general, the problem is that we host (semi-)official 
documentation on a wiki which has no ACLs matching the roles in the Qt 
project. Anyone can go there and disrupt those pages.


--
Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer
KDAB (UK) Ltd., a KDAB Group company
Tel. UK +44-1738-450410, Sweden (HQ) +46-563-540090
KDAB - Qt Experts - Platform-independent software solutions



smime.p7s
Description: Firma crittografica S/MIME
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] Who and why changed WIKI Gerrit-Introduction

2014-11-15 Thread Marian Beermann
Did you see the last paragraph in the Creating a new contribution section?

 See the step-by-step introductions below on how to complete a commit
 upload. Note that Gerrit SSH service is running in port 29418. There
 is no need to write this port number every time, just add the
 following lines to ~/.ssh/config file:

 Host codereview.qt-project.org
   User username
   Port 29418

On 11/15/2014 05:39 PM, Denis Shienkov wrote:
 Hi all.
 
 Please revert back changes from 
 http://qt-project.org/wiki/Gerrit-Introduction  page. This changes 
 made from 11:43, 5 Nov 2014 by  alkino.  Earlier I used this page 
 for direct copying of Git links examples for a contribution to the project.
 
 But now mention of port 29418 and others things are deleted there. Thus 
 now WIKI contains invalid examples and new users will be confused. I do 
 not understand, why this deletion was made.
 
 BR,
 Denis
 ___
 Interest mailing list
 Interest@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/interest
 

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] Qt Quick Compiler

2014-11-15 Thread Thiago Macieira
On Saturday 15 November 2014 23:05:22 Yang Fan wrote:
 I just want to know where can I get Qt Quick Compiler 2.0 with Qt 5.4-beta?

It's part of your Enterprise license packages.
-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


[Interest] about WId s

2014-11-15 Thread René J . V . Bertin
Hi,

Out of curiosity: are WIds globally unique on OS X, or can a same WId occur in 
several applications at the same time (like I think pointers can)?

Thanks,
René
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest