Re: [Development] Nominating Ville Voutilainen as approver

2018-02-27 Thread Lars Knoll
Another +1 :) Cheers, Lars > On 27 Feb 2018, at 11:26, Samuel Gaist wrote: > > +1 > > Best regards > > Samuel > >> On 27 Feb 2018, at 10:36, Simon Hausmann wrote: >> >> Hi, >> >> I would like to nominate Ville as approver. Due to his work

Re: [Development] Fwd: qrandom.cpp build problem: please advise

2018-02-27 Thread Thiago Macieira
On terça-feira, 27 de fevereiro de 2018 01:11:36 PST Edward Welbourne wrote: > Apparently it comes from - at least, that's > what the test seems to expect and its man-page claims. > > The author of this code may suggest some better solution, once > his USAish time-zone reaches its daytime,

Re: [Development] Coin maintenance notification

2018-02-27 Thread Konstantin Tokarev
27.02.2018, 16:42, "Aapo Keskimölö" : > Coin production was restarted today because it was failing connections to > Opennebula after it was restarted. > > Changelog: > > https://codereview.qt-project.org/#/c/221521/ This is not a public page which everyone here can open,

[Development] QHash, QSharedPointer, QScopedPointer, etc absence

2018-02-27 Thread Alexei Fedotov
Hello guys, There is a number of C++-style headers which AFAIU just include the C-style header. I wonder why they do not appear in my workspace. Is there some magic invocation of the build script which creates them automatically? -- Carry a towel http://dataved.ru/ +7 916 562 8095 [1] Join

Re: [Development] Coin maintenance notification

2018-02-27 Thread Aapo Keskimölö
Coin production was restarted today because it was failing connections to Opennebula after it was restarted. Changelog: https://codereview.qt-project.org/#/c/221521/ Ystävällisin terveisin / Kind regards, Aapo Keskimölö | Software Engineer aapo.keskim...@qt.io |

Re: [Development] Fwd: qrandom.cpp build problem: please advise

2018-02-27 Thread Alexei Fedotov
Hi Edward, thanks for a quick solution! The patch worked for me (with -recheck-all). I defensively used long include instead of a short "random.h". -- Carry a towel http://dataved.ru/ +7 916 562 8095 [1] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/ [2] Join Alexei Fedotov

Re: [Development] [Qt-creator] Requesting repository for telemetry plugin in Qt Creator

2018-02-27 Thread Marco Bubke
I was ask to provide more info about the crash dump server. It is called Socorro: https://github.com/mozilla-services/socorro Like you can see it was developed originally for Firefox:

Re: [Development] Nominating Ville Voutilainen as approver

2018-02-27 Thread Samuel Gaist
+1 Best regards Samuel > On 27 Feb 2018, at 10:36, Simon Hausmann wrote: > > Hi, > > I would like to nominate Ville as approver. Due to his work in the GCC > project he is certainly experienced with strict code reviews. Based on my > interaction with him I'm convinced

Re: [Development] Nominating Ville Voutilainen as approver

2018-02-27 Thread Sean Harmer
+1 Cheers, Sean On 27/02/2018 09:36, Simon Hausmann wrote: Hi, I would like to nominate Ville as approver. Due to his work in the GCC project he is certainly experienced with strict code reviews. Based on my interaction with him I'm convinced that he has successfully demonstrated the

Re: [Development] Nominating Ville Voutilainen as approver

2018-02-27 Thread Martins , Sérgio
+1 On 2018-02-27 09:36, Simon Hausmann wrote: Hi, I would like to nominate Ville as approver. Due to his work in the GCC project he is certainly experienced with strict code reviews. Based on my interaction with him I'm convinced that he has successfully demonstrated the same skill set during

Re: [Development] Nominating Ville Voutilainen as approver

2018-02-27 Thread Shawn Rutledge
+1 > On 27 Feb 2018, at 10:36, Simon Hausmann wrote: > > Hi, > > I would like to nominate Ville as approver. Due to his work in the GCC > project he is certainly experienced with strict code reviews. Based on my > interaction with him I'm convinced that he has

Re: [Development] Nominating Ville Voutilainen as approver

2018-02-27 Thread Frederik Gladhorn
+1 he's also getting his hands dirty with flaky tests and making things work in general :-) Cheers, Frederik From: Simon Hausmann Sent: Tuesday, February 27, 10:36 Subject: [Development] Nominating Ville Voutilainen as approver To: development@qt-project.org Hi, I would like to nominate

Re: [Development] Nominating Ville Voutilainen as approver

2018-02-27 Thread Edward Welbourne
Simon Hausmann (27 February 2018 10:36) > I would like to nominate Ville as approver. +1 (full disclosure: the three of us all work for TQtC) Eddy. ___ Development mailing list Development@qt-project.org

[Development] Nominating Ville Voutilainen as approver

2018-02-27 Thread Simon Hausmann
Hi, I would like to nominate Ville as approver. Due to his work in the GCC project he is certainly experienced with strict code reviews. Based on my interaction with him I'm convinced that he has successfully demonstrated the same skill set during code reviews in Qt. Simon

Re: [Development] Fwd: qrandom.cpp build problem: please advise

2018-02-27 Thread Edward Welbourne
Alexei Fedotov (27 February 2018 09:45) > ./configure sets getentropy in qtbase/src/corelib/qtcore-config_p.h to 1, So the config.tests/unix/getentropy/ test passed. > but I have no sys/random.h which that test neglects to #include, so this lack doesn't keep it from failing. See if

[Development] Fwd: qrandom.cpp build problem: please advise

2018-02-27 Thread Alexei Fedotov
Hi folks, qtbase/src/corelib/global/qrandom.cpp has the following code #if QT_CONFIG(getentropy) # include #elif !defined(Q_OS_BSD4) && !defined(Q_OS_WIN) # include "qdeadlinetimer.h" # include "qhashfunctions.h" # if QT_CONFIG(getauxval) #include # endif #endif //