Re: [Development] CI has infra problems

2017-08-01 Thread Thiago Macieira
No, another problem has now appeared:

 Module "qt/qtbase" (34adca0607ff9231b4c79949353827c1c8319c52) Failed 
repeatedly to launch build/test agent:
 Failed 7 times to acquire the hardware
 buildKey: qt/qtbase/eab0f32365c02540893fd3d1d75c2af2b4e6f6e8/
LinuxUbuntu_16_04x86_64LinuxUbuntu_16_04x86_64GCCqtci-linux-Ubuntu-16.04-
x86_64-1-bd2be3TestOnly_LicenseCheck/7ca30f915833d953146007e71743147e3e719500/
Test
 agentLaunchRequest: AgentLaunchRequest(machineType=0, 
testConfiguration=TestConfiguration(testHack=None, features=[8, 7], 
vmTemplate='qtci-linux-Ubuntu-16.04-x86_64-1-bd2be3', configureArgs=None, 
toolsets=[Toolset(targetSourceDirectory='qt/qtqa-latest', branch='master', 
excludeSubModules=None, 
repositoryState=RepositoryState(sha1='f2fea571b9e17dc31eff349f6b744603c670dcd6',
 
project='qt/qtqa', contentSha1='2e26fde8a7db0bb8e81edb44509ea8a64d257e1a', 
dependencies=[], gerritInstance='qt-project'), sourceOnly=True)], 
target=Machine(os=1, arch='x86_64', os_version=304, compiler=0), 
host=Machine(os=1, arch='x86_64', os_version=304, compiler=0), type=0), 
productVersion='5.9', buildKey='qt/qtbase/
eab0f32365c02540893fd3d1d75c2af2b4e6f6e8/
LinuxUbuntu_16_04x86_64LinuxUbuntu_16_04x86_64GCCqtci-linux-Ubuntu-16.04-
x86_64-1-bd2be3TestOnly_LicenseCheck/7ca30f915833d953146007e71743147e3e719500/
Test', vmTemplate='qtci-linux-Ubuntu-16.04-x86_64-1-bd2be3', type=1)
 reasons:



On terça-feira, 1 de agosto de 2017 01:30:41 PDT Tony Sarajärvi wrote:
> Fixed! Thanks for your patience 
> 
> -T
> 
> From: Tony Sarajärvi
> Sent: tiistai 1. elokuuta 2017 10.49
> To: development@qt-project.org
> Cc: Qt Development 
> Subject: CI has infra problems
> 
> Hi
> 
> Windows provisionings are failing currently. Most likely culprit is some
> DHCP or router misconfiguration. We’ll begin investigating immediately.
 
> -T


-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Qt3D without Qml/QtQuick?

2017-08-01 Thread Harald Vistnes
Done.

2017-08-01 22:31 GMT+02:00 Thiago Macieira :

> On terça-feira, 1 de agosto de 2017 13:21:45 PDT Harald Vistnes wrote:
> > Thanks Thiago,
> >
> > that was it! I changed it .gitmodules to
> >
> > [submodule "qt3d"]
> > depends = qtbase
> > recommends = qtdeclarative qtimageformats qtgamepad
> > path = qt3d
> > url = ../qt3d.git
> > branch = 5.9
> > status = addon
> >
> > Now Qt3D builds even with -skip qtdeclarative.
> >
> > Harald
>
> Now submit it.
>
> --
> Thiago Macieira - thiago.macieira (AT) intel.com
>   Software Architect - Intel Open Source Technology Center
>
> ___
> Development mailing list
> Development@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development
>
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Qt3D without Qml/QtQuick?

2017-08-01 Thread Thiago Macieira
On terça-feira, 1 de agosto de 2017 13:21:45 PDT Harald Vistnes wrote:
> Thanks Thiago,
> 
> that was it! I changed it .gitmodules to
> 
> [submodule "qt3d"]
> depends = qtbase
> recommends = qtdeclarative qtimageformats qtgamepad
> path = qt3d
> url = ../qt3d.git
> branch = 5.9
> status = addon
> 
> Now Qt3D builds even with -skip qtdeclarative.
> 
> Harald

Now submit it.

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Qt3D without Qml/QtQuick?

2017-08-01 Thread Harald Vistnes
Thanks Thiago,

that was it! I changed it .gitmodules to

[submodule "qt3d"]
depends = qtbase
recommends = qtdeclarative qtimageformats qtgamepad
path = qt3d
url = ../qt3d.git
branch = 5.9
status = addon

Now Qt3D builds even with -skip qtdeclarative.

Harald


2017-08-01 21:25 GMT+02:00 Thiago Macieira :

> On terça-feira, 1 de agosto de 2017 12:14:18 PDT Harald Vistnes wrote:
> > I had a look in qt3d/src/src.pro, but there already was a
> > qtHaveModule(quick) {} around the quick3d libs and I don't know where the
> > dependency on qtdeclarative is set. I'd be happy to provide a patch, but
> it
> > seems I don't know enough about the internal Qt dependency settings...
>
> It's set in qt5.git's file .gitmodules.
>
> [submodule "qt3d"]
> depends = qtdeclarative
> recommends = qtimageformats qtgamepad
> path = qt3d
> url = ../qt3d.git
> branch = 5.9
> status = addon
>
> You want to make qtbase a strict dependency and move qtdeclarative to
> "recommends".
>
> --
> Thiago Macieira - thiago.macieira (AT) intel.com
>   Software Architect - Intel Open Source Technology Center
>
> ___
> Development mailing list
> Development@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development
>
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Qt3D without Qml/QtQuick?

2017-08-01 Thread Thiago Macieira
On terça-feira, 1 de agosto de 2017 12:14:18 PDT Harald Vistnes wrote:
> I had a look in qt3d/src/src.pro, but there already was a
> qtHaveModule(quick) {} around the quick3d libs and I don't know where the
> dependency on qtdeclarative is set. I'd be happy to provide a patch, but it
> seems I don't know enough about the internal Qt dependency settings...

It's set in qt5.git's file .gitmodules.

[submodule "qt3d"]
depends = qtdeclarative
recommends = qtimageformats qtgamepad
path = qt3d
url = ../qt3d.git
branch = 5.9
status = addon

You want to make qtbase a strict dependency and move qtdeclarative to 
"recommends".

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Qt3D without Qml/QtQuick?

2017-08-01 Thread Harald Vistnes
Thanks Sean,

I had a look in qt3d/src/src.pro, but there already was a
qtHaveModule(quick) {} around the quick3d libs and I don't know where the
dependency on qtdeclarative is set. I'd be happy to provide a patch, but it
seems I don't know enough about the internal Qt dependency settings...

Harald


2017-08-01 20:26 GMT+02:00 Sean Harmer :

> Hi,
>
> On 01/08/2017 19:04, Harald Vistnes wrote:
>
>> Hi,
>>
>> is it possible to build the pure C++ subset of Qt3D (Qt3DCore,
>> Qt3DRender, Qt3DExtras, Qt3DInput, Qt3DLogic) without Qml and QtQuick? I
>> tried to configure and build Qt with -skip qtdeclarative, but then Qt3D
>> was skipped completely.
>>
>
> Yeah, at the moment Qt 3D is marked as requiring QtDeclarative but indeed
> there is no reason why that can't be made an optional dependency to allow
> what you need. It should be pretty easy to fix up qt3d/src/src.pro.
> Patches welcome :)
>
> Cheers,
>
> Sean
>
>
>> After building Qt I tried building Qt3D manually by running
>> qmake qt3d.pro  and jom but with the following error
>> message:
>>
>> D:\qt5\qt3d>..\qtbase\bin\qmake.exe qt3d.pro 
>> Info: creating cache file D:\qt5\qt3d\.qmake.cache
>>
>> D:\qt5\qt3d>jom
>>
>> jom 1.1.2 - empower your cores
>>
>> cd src\ && ( if not exist Makefile D:\qt5\qtbase\bin\qmake.exe
>> -o Makefile D:\qt5\qt3d\src\src.pro  ) && c:\jom\jom.exe
>> -f Makefile
>> cd core\ && ( if not exist Makefile D:\qt5\qtbase\bin\qmake.exe
>> -o Makefile D:\qt5\qt3d\src\core\core.pro  ) &&
>> c:\jom\jom.exe -f Makefile
>> Cannot read D:/qt5/qt3d/src/core/qt3dcore-config.pri: No such file or
>> directory
>> Project ERROR: Could not find feature qt3d-profile-jobs.
>> jom: D:\qt5\qt3d\src\Makefile [sub-core-make_first] Error 3
>> cd doc\ && ( if not exist Makefile D:\qt5\qtbase\bin\qmake.exe
>> -o Makefile D:\qt5\qt3d\src\doc\doc.pro  ) &&
>> c:\jom\jom.exe -f Makefile
>> c:\jom\jom.exe -f Makefile.Release
>> jom: D:\qt5\qt3d\Makefile [sub-src-make_first] Error 2
>>
>>
>> I'm on Windows 10, VS2015, latest sources from git, 5.9 branch.
>>
>> Thanks,
>> Harald
>>
>>
>>
>>
>> ___
>> Development mailing list
>> Development@qt-project.org
>> http://lists.qt-project.org/mailman/listinfo/development
>>
>> ___
> Development mailing list
> Development@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development
>
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Qt3D without Qml/QtQuick?

2017-08-01 Thread Sean Harmer

Hi,

On 01/08/2017 19:04, Harald Vistnes wrote:

Hi,

is it possible to build the pure C++ subset of Qt3D (Qt3DCore,
Qt3DRender, Qt3DExtras, Qt3DInput, Qt3DLogic) without Qml and QtQuick? I
tried to configure and build Qt with -skip qtdeclarative, but then Qt3D
was skipped completely.


Yeah, at the moment Qt 3D is marked as requiring QtDeclarative but 
indeed there is no reason why that can't be made an optional dependency 
to allow what you need. It should be pretty easy to fix up 
qt3d/src/src.pro. Patches welcome :)


Cheers,

Sean



After building Qt I tried building Qt3D manually by running
qmake qt3d.pro  and jom but with the following error
message:

D:\qt5\qt3d>..\qtbase\bin\qmake.exe qt3d.pro 
Info: creating cache file D:\qt5\qt3d\.qmake.cache

D:\qt5\qt3d>jom

jom 1.1.2 - empower your cores

cd src\ && ( if not exist Makefile D:\qt5\qtbase\bin\qmake.exe
-o Makefile D:\qt5\qt3d\src\src.pro  ) && c:\jom\jom.exe
-f Makefile
cd core\ && ( if not exist Makefile D:\qt5\qtbase\bin\qmake.exe
-o Makefile D:\qt5\qt3d\src\core\core.pro  ) &&
c:\jom\jom.exe -f Makefile
Cannot read D:/qt5/qt3d/src/core/qt3dcore-config.pri: No such file or
directory
Project ERROR: Could not find feature qt3d-profile-jobs.
jom: D:\qt5\qt3d\src\Makefile [sub-core-make_first] Error 3
cd doc\ && ( if not exist Makefile D:\qt5\qtbase\bin\qmake.exe
-o Makefile D:\qt5\qt3d\src\doc\doc.pro  ) &&
c:\jom\jom.exe -f Makefile
c:\jom\jom.exe -f Makefile.Release
jom: D:\qt5\qt3d\Makefile [sub-src-make_first] Error 2


I'm on Windows 10, VS2015, latest sources from git, 5.9 branch.

Thanks,
Harald




___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] Qt3D without Qml/QtQuick?

2017-08-01 Thread Harald Vistnes
Hi,

is it possible to build the pure C++ subset of Qt3D (Qt3DCore, Qt3DRender,
Qt3DExtras, Qt3DInput, Qt3DLogic) without Qml and QtQuick? I tried to
configure and build Qt with -skip qtdeclarative, but then Qt3D was skipped
completely.

After building Qt I tried building Qt3D manually by running
qmake qt3d.pro and jom but with the following error message:

D:\qt5\qt3d>..\qtbase\bin\qmake.exe qt3d.pro
Info: creating cache file D:\qt5\qt3d\.qmake.cache

D:\qt5\qt3d>jom

jom 1.1.2 - empower your cores

cd src\ && ( if not exist Makefile D:\qt5\qtbase\bin\qmake.exe -o
Makefile D:\qt5\qt3d\src\src.pro ) && c:\jom\jom.exe -f Makefile
cd core\ && ( if not exist Makefile D:\qt5\qtbase\bin\qmake.exe -o
Makefile D:\qt5\qt3d\src\core\core.pro ) && c:\jom\jom.exe -f Makefile
Cannot read D:/qt5/qt3d/src/core/qt3dcore-config.pri: No such file or
directory
Project ERROR: Could not find feature qt3d-profile-jobs.
jom: D:\qt5\qt3d\src\Makefile [sub-core-make_first] Error 3
cd doc\ && ( if not exist Makefile D:\qt5\qtbase\bin\qmake.exe -o
Makefile D:\qt5\qt3d\src\doc\doc.pro ) && c:\jom\jom.exe -f Makefile
c:\jom\jom.exe -f Makefile.Release
jom: D:\qt5\qt3d\Makefile [sub-src-make_first] Error 2


I'm on Windows 10, VS2015, latest sources from git, 5.9 branch.

Thanks,
Harald
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Coin infrastructure changes

2017-08-01 Thread Frederik Gladhorn
On mandag 31. juli 2017 15.24.57 CEST Laszlo Agocs wrote:
> Hi,
> 
> Are we sure that the week before the 5.10 feature freeze date is really the
> best time to do this?

Yes and no. There clearly is no good time. The longer we wait, the more 
trouble we'll have. The change is needed to take fresh new hardware into use 
and move forward. Right now things are still comparatively calm as many people 
were on vacation and are only now comming back. We'd have liked to be faster, 
but only now feel that it would be responsible to switch.

The current issues (that are seemingly still ongoing) are by the way the old 
system falling apart, seems like it wants to support us moving on. We haven't 
changed anything yet (and it will probably be Friday before we feel that we're 
finally ready).

Cheers,
Frederik


> 
> Cheers,
> Laszlo
> 
> -Original Message-
> From: Development
> [mailto:development-bounces+laszlo.agocs=qt...@qt-project.org] On Behalf Of
> Frederik Gladhorn Sent: mandag 31. juli 2017 15.19
> To: development@qt-project.org
> Subject: [Development] Coin infrastructure changes
> 
> Hi all,
> 
> this is mostly for your information. On Wednesday this week (most likely)
> we're making changes to Coin, potentially leading to some interruptions in
> integrations.
> 
> The longer version:
> 
> We've been working towards replacing the underlying virtualization layer in
> our Continuous Integration infrastructure and have now reached a point
> where we're ready (as ready as we'll get at least) to switch over from
> VSphere to OpenNebula. There are a bunch of advantages (not least that we
> can actually debug issues in OpenNebula/KVM, it'll make the scheduling code
> in Coin easier, ...).
> 
> This will also be the point at which we start to use some of the new
> hardware that The Qt Company has been purchasing and getting ready, so
> things will initially be at the same speed and eventually much faster.
> 
> We have Qt 5.6 and 5.9 running smoothly, the dev branch currently needs some
> merges, hopefully we'll get it working really soon now.
> 
> Hopefully the process is: stop the system; change branch; restart and things
> will work. I would expect some hickups when we scale up and run in
> production mode, so bear with us and report issues, we'll eventually be
> better off, once things are in shape.
> 
> Cheers,
> Frederik
> 
> ___
> Development mailing list
> Development@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development


___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] Give reviewers ample time to respond

2017-08-01 Thread Kai Koehne
Hi,

I'd like to remind everyone about our commit policy: 
https://wiki.qt.io/Review_Policy . In particular, it says 'Give reviewers ample 
time to respond', which is assumed to be a full working day minimum (preferably 
two days). 

That is, even if you have a +2 by an approver, you should _not_ stage 
immediately if there are other reviewers who haven't given feedback yet.

Regards

Kai

--
Kai Koehne, Senior Manager R | The Qt Company

The Qt Company GmbH, Rudower Chaussee 13, D-12489 Berlin
Geschäftsführer: Mika Pälsi, Juha Varelius, Mika Harjuaho. Sitz der
Gesellschaft: Berlin, Registergericht: Amtsgericht Charlottenburg, 
HRB 144331 B

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Nominating Denis Shienkov for Approver status

2017-08-01 Thread André Hartmann

Hi Denis,

> WOW, I'm surprised.. Thanks. Need to drink.. :)

But don't drink too much ... you may have to review something later today :)

Honestly, this is also a "thank you" for your long-term Qt contribution. 
Keep it up!


Best regards,
André

Am 01.08.2017 um 12:18 schrieb Denis Shienkov:

WOW, I'm surprised.. Thanks. Need to drink.. :)

2017-08-01 10:20 GMT+03:00 Thiago Macieira >:


On segunda-feira, 31 de julho de 2017 23:54:02 PDT Denis Shienkov wrote:
> WOW, thanks... :)
>
> Q: Approver of what?

In the Qt Project. You get the rights throughout, but you're
expected to only
give +2 when you know what you're doing.

--
Thiago Macieira - thiago.macieira (AT) intel.com 
   Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org 
http://lists.qt-project.org/mailman/listinfo/development





___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development



___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Nominating Denis Shienkov for Approver status

2017-08-01 Thread Denis Shienkov
WOW, I'm surprised.. Thanks. Need to drink.. :)

2017-08-01 10:20 GMT+03:00 Thiago Macieira :

> On segunda-feira, 31 de julho de 2017 23:54:02 PDT Denis Shienkov wrote:
> > WOW, thanks... :)
> >
> > Q: Approver of what?
>
> In the Qt Project. You get the rights throughout, but you're expected to
> only
> give +2 when you know what you're doing.
>
> --
> Thiago Macieira - thiago.macieira (AT) intel.com
>   Software Architect - Intel Open Source Technology Center
>
> ___
> Development mailing list
> Development@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development
>
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] CI has infra problems

2017-08-01 Thread Tony Sarajärvi
Fixed! Thanks for your patience 

-T

From: Tony Sarajärvi
Sent: tiistai 1. elokuuta 2017 10.49
To: development@qt-project.org
Cc: Qt Development 
Subject: CI has infra problems

Hi

Windows provisionings are failing currently. Most likely culprit is some DHCP 
or router misconfiguration. We’ll begin investigating immediately.

-T
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] CI has infra problems

2017-08-01 Thread Tony Sarajärvi
Hi

Windows provisionings are failing currently. Most likely culprit is some DHCP 
or router misconfiguration. We'll begin investigating immediately.

-T
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Qt 5.10 schedule etc

2017-08-01 Thread Mitch Curtis
> -Original Message-
> From: Development [mailto:development-bounces+mitch.curtis=qt.io@qt-
> project.org] On Behalf Of Thiago Macieira
> Sent: Tuesday, 1 August 2017 9:40 AM
> To: development@qt-project.org
> Subject: Re: [Development] Qt 5.10 schedule etc
> 
> On terça-feira, 1 de agosto de 2017 00:18:18 PDT Thiago Macieira wrote:
> > 1. Integrate all of Ossi's configure changes to 5.9 (re-staged now)
> > https://codereview.qt-project.org/201118
> > https://codereview.qt-project.org/201119
> > https://codereview.qt-project.org/201120
> > https://codereview.qt-project.org/201121
> > https://codereview.qt-project.org/201201
> > https://codereview.qt-project.org/201122
> > https://codereview.qt-project.org/201120
> > https://codereview.qt-project.org/201202
> > https://codereview.qt-project.org/201203
> > https://codereview.qt-project.org/201204
> > https://codereview.qt-project.org/201205
> > https://codereview.qt-project.org/199408
> > https://codereview.qt-project.org/201206
> 
> Failed integration with:
> 
>  Module "" () Failed to provision template 'qtci-windows-8-x86_64-
> 2-
> da597b':
>  Could not clone template: qtci-windows-8-x86_64-2-da597b - Template VM
> was not found.
> 
> This same error has been happening for a fix in qtwebkit.

I've seen the same error and was told that there are network problems that are 
being looked into.

> > 2. Merge those up to dev.
> >
> > 3. Apply all my changes
> > set 1:
> > https://codereview.qt-project.org/167049
> > https://codereview.qt-project.org/200061
> > https://codereview.qt-project.org/165952
> > https://codereview.qt-project.org/199037
> > https://codereview.qt-project.org/200062
> > https://codereview.qt-project.org/200073
> 
> Set 1 is now staged.
> 
> Going to bed now.
> 
> --
> Thiago Macieira - thiago.macieira (AT) intel.com
>   Software Architect - Intel Open Source Technology Center
> 
> ___
> Development mailing list
> Development@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Qt 5.10 schedule etc

2017-08-01 Thread Thiago Macieira
On terça-feira, 1 de agosto de 2017 00:18:18 PDT Thiago Macieira wrote:
> 1. Integrate all of Ossi's configure changes to 5.9 (re-staged now)
> https://codereview.qt-project.org/201118
> https://codereview.qt-project.org/201119
> https://codereview.qt-project.org/201120
> https://codereview.qt-project.org/201121
> https://codereview.qt-project.org/201201
> https://codereview.qt-project.org/201122
> https://codereview.qt-project.org/201120
> https://codereview.qt-project.org/201202
> https://codereview.qt-project.org/201203
> https://codereview.qt-project.org/201204
> https://codereview.qt-project.org/201205
> https://codereview.qt-project.org/199408
> https://codereview.qt-project.org/201206

Failed integration with:

 Module "" () Failed to provision template 'qtci-windows-8-x86_64-2-
da597b':
 Could not clone template: qtci-windows-8-x86_64-2-da597b - Template VM was 
not found.

This same error has been happening for a fix in qtwebkit.

> 2. Merge those up to dev.
> 
> 3. Apply all my changes
> set 1:
> https://codereview.qt-project.org/167049
> https://codereview.qt-project.org/200061
> https://codereview.qt-project.org/165952
> https://codereview.qt-project.org/199037
> https://codereview.qt-project.org/200062
> https://codereview.qt-project.org/200073

Set 1 is now staged.

Going to bed now.

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Qt 5.10 schedule etc

2017-08-01 Thread Thiago Macieira
On segunda-feira, 31 de julho de 2017 23:55:28 PDT Jani Heikkinen wrote:
> And we should start soft branching today. But as Frederik informed yesterday
> we are planning to do some changes to coin infrastructure during this week
> (see
> http://lists.qt-project.org/pipermail/development/2017-July/030596.html).
> So let's postpone the start of soft branching a bit and do it after coin
> infra changes are in & working. Doing one more branch just now makes these
> coin changes more difficult & most probably causes more delays in the
> future.
> 
> So the plan with 5.10 is following:
> 1. Let's keep the agreed ff as it is (8.8.2017)

Please note that this means that in the next 7 days we need to:

1. Integrate all of Ossi's configure changes to 5.9 (re-staged now)
https://codereview.qt-project.org/201118
https://codereview.qt-project.org/201119
https://codereview.qt-project.org/201120
https://codereview.qt-project.org/201121
https://codereview.qt-project.org/201201
https://codereview.qt-project.org/201122
https://codereview.qt-project.org/201120
https://codereview.qt-project.org/201202
https://codereview.qt-project.org/201203
https://codereview.qt-project.org/201204
https://codereview.qt-project.org/201205
https://codereview.qt-project.org/199408
https://codereview.qt-project.org/201206

2. Merge those up to dev.

3. Apply all my changes
set 1:
https://codereview.qt-project.org/167049
https://codereview.qt-project.org/200061
https://codereview.qt-project.org/165952
https://codereview.qt-project.org/199037
https://codereview.qt-project.org/200062
https://codereview.qt-project.org/200073

set 2:
https://codereview.qt-project.org/199004
https://codereview.qt-project.org/199005
https://codereview.qt-project.org/200063
https://codereview.qt-project.org/200064
https://codereview.qt-project.org/200065
https://codereview.qt-project.org/200453
https://codereview.qt-project.org/199007
https://codereview.qt-project.org/200068
https://codereview.qt-project.org/200069
https://codereview.qt-project.org/200070
https://codereview.qt-project.org/200071
https://codereview.qt-project.org/200072
https://codereview.qt-project.org/200074
https://codereview.qt-project.org/199000
https://codereview.qt-project.org/200066
https://codereview.qt-project.org/200180
https://codereview.qt-project.org/200924
https://codereview.qt-project.org/200832
https://codereview.qt-project.org/200258
https://codereview.qt-project.org/200836
https://codereview.qt-project.org/200926

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Nominating Jesus Fernandez for Approver status

2017-08-01 Thread Alex Blasche
Congratulations to Jesus. Approver rights have been set.

--
Alex

> -Original Message-
> From: Development [mailto:development-
> bounces+alexander.blasche=qt...@qt-project.org] On Behalf Of Timur
> Pocheptsov
> Sent: Tuesday, 11 July 2017 14:07
> To: Qt development mailing list 
> Subject: [Development] Nominating Jesus Fernandez for Approver status
> 
> I'd like to nominate Jesus Fernandez for Approver status. Among other things
> Jesus is the author and the maintainer
> 
> of qtnetworkauth module, he is actively contributing to qtcore, qtnetwork,
> qtwebsockets, qsql, etc. He is also
> 
> participating in the development of the WebGL QPA plugin.
> 
> 
> 
> 
> This is his Gerrit dashboard:
> 
> 
> 
> 
> https://codereview.qt-
> project.org/#/q/owner:%22Jesus+Fernandez%22+status:merged,n,z
> 
> 
> 
> 
> Best regards,
> 
> Timur.
> 
> 
> 
> 

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Nominating Viktor Engelmann for Approver Status

2017-08-01 Thread Alex Blasche
Congratulations to Viktor. Approver rights have been granted.

--
Alex

> -Original Message-
> From: Development [mailto:development-
> bounces+alexander.blasche=qt...@qt-project.org] On Behalf Of Simon
> Hausmann
> Sent: Tuesday, 11 July 2017 13:25
> To: development@qt-project.org
> Subject: [Development] Nominating Viktor Engelmann for Approver Status
> 
> Hi,
> 
> 
> 
> 
> I'd like to propose Viktor for approver status. Since August last year he's 
> been
> contributing to QtWebEngine full-time. Based on my experience talking to him
> and working with him, I trust him to review changes thoroughly and approve or
> reject changes responsively.
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> Simon

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Nominating Denis Shienkov for Approver status

2017-08-01 Thread Alex Blasche
Congratulations to Denis. Approver rights have been granted.

--
Alex


> -Original Message-
> From: Development [mailto:development-
> bounces+alexander.blasche=qt...@qt-project.org] On Behalf Of André
> Hartmann
> Sent: Thursday, 6 July 2017 08:36
> To: development@qt-project.org; qt-crea...@qt-project.org
> Subject: [Development] Nominating Denis Shienkov for Approver status
> 
> I'd like to propose the nomination of Denis Shienkov for Approver status.
> 
> Denis has been the maintainer of QtSerialPort for a long time now.
> He also formed the architecture of QtSerialBus and provided several CAN 
> plugins
> there. He further contributes to other parts of Qt and QtCreator and is 
> actively
> reviewing other changes (for example he has constructively improved a lot of
> my changes to QtSerialBus).
> 
> This is his own Gerrit dashboard:
> 
> https://codereview.qt-
> project.org/#/q/owner:%22Denis+Shienkov+%253Cdenis.shienkov%2540gmail.c
> om%253E%22,n,z
> 
> And these are his reviews:
> 
> https://codereview.qt-
> project.org/#/q/reviewer:%22Denis+Shienkov+%253Cdenis.shienkov%2540gmai
> l.com%253E%22,n,z
> 
> Best regards,
> André
> ___
> Development mailing list
> Development@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development