Re: [Development] Stepping down as maintainer of project management in Qt Creator

2018-12-20 Thread Helio Chissini de Castro
+1

Thanks for all the amazing work..

[]'s

On Thu, 20 Dec 2018 at 12:42, Joerg Bornemann  wrote:

> On 12/19/18 4:43 PM, Tobias Hunger wrote:
>
> > I want to propose Christian Kandeler to take over. He is a capable
> > developer with a deep understanding of the code involved and I am sure
> > he will do a terrific job going forward.
>
> +1
>
> Disclaimer: He knows where I park my bicycle.
>
>
> BR,
>
> Joerg
> ___
> Development mailing list
> Development@qt-project.org
> https://lists.qt-project.org/listinfo/development
>
___
Development mailing list
Development@qt-project.org
https://lists.qt-project.org/listinfo/development


Re: [Development] Qt 5.7.1 packages available

2016-11-16 Thread Helio Chissini de Castro
Hi

Png configure detection is adding 3rd party directory to compile even if
told -system-png.

Attached a patch to fix it.
Should i submit to 5.7 branch on gerrit ?


On Wed, Nov 16, 2016 at 9:58 AM, Erik Verbruggen 
wrote:

> For my "use case" (the qml profiler in creator) it's done. But I don't
> know if more patches have to go in. Maybe Morton can enlighten us?
>
> -- Erik
> --
> *From:* Development  org> on behalf of Dmitry Volosnykh 
> *Sent:* 16 November 2016 07:29:25
> *To:* Jani Heikkinen; development@qt-project.org
> *Subject:* Re: [Development] Qt 5.7.1 packages available
>
> Should QTBUG-37095 be removed from Known Issues since it is closed as Done?
>
> On Wed, Nov 16, 2016 at 8:08 AM Jani Heikkinen 
> wrote:
>
>> Hi all,
>>
>> We have finally Qt 5.7.1 packages:
>>
>> Linux: http://download.qt.io/snapshots/qt/5.7/5.7.1/570/
>> Windows: http://download.qt.io/snapshots/qt/5.7/5.7.1/650/
>> Mac: http://download.qt.io/snapshots/qt/5.7/5.7.1/598/
>> Src:http://download.qt.io/snapshots/qt/5.7/5.7.1/latest_src/
>>
>> According to RTA smoke testing packages seems to be OK so please test the
>> packages as soon as possible. All known blockers should be fixed, please
>> verify fixes for open ones ( https://bugreports.qt.io/
>> issues/?filter=17833 ). We will release these packages as Qt 5.7.1 later
>> (maybe already this Thu) if nothing really serious found during testing.
>>
>> Please update the known issues page when needed:
>> https://wiki.qt.io/Qt_5.7.1_Known_Issues
>>
>> Known issues in the packages: https://bugreports.qt.io/
>> issues/?filter=18129
>>
>> br,
>> Jani
>>
>>
>>
>>
>>
>> ___
>> 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
>
>
--- qtbase-opensource-src-5.7.1/src/src.pro.orig	2016-10-05 19:33:26.0 +0200
+++ qtbase-opensource-src-5.7.1/src/src.pro	2016-11-09 12:31:35.781935319 +0100
@@ -135,8 +135,10 @@
 contains(QT_CONFIG, zlib)|cross_compile {
 SUBDIRS += src_qtzlib
 contains(QT_CONFIG, zlib) {
-src_3rdparty_libpng.depends += src_corelib
-src_3rdparty_freetype.depends += src_corelib
+!contains(QT_CONFIG, system-png) {
+src_3rdparty_libpng.depends += src_corelib
+src_3rdparty_freetype.depends += src_corelib
+}
 }
 }
 SUBDIRS += src_tools_bootstrap src_tools_moc src_tools_rcc
@@ -167,10 +169,13 @@
 SUBDIRS += src_angle
 src_gui.depends += src_angle
 }
-contains(QT_CONFIG, png) {
-SUBDIRS += src_3rdparty_libpng
-src_3rdparty_freetype.depends += src_3rdparty_libpng
-src_gui.depends += src_3rdparty_libpng
+
+!contains(QT_CONFIG, system-png) {
+contains(QT_CONFIG, png) {
+SUBDIRS += src_3rdparty_libpng
+src_3rdparty_freetype.depends += src_3rdparty_libpng
+src_gui.depends += src_3rdparty_libpng
+}
 }
 contains(QT_CONFIG, freetype) {
 SUBDIRS += src_3rdparty_freetype
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] Strange behavior on 5.12 branch and moc genrated file ( KDE application )

2018-09-05 Thread Helio Chissini de Castro
Morning guys

After compile 5.12 branch from yesterday morning, i got one KDE application
failing due a compiler error on a generated moc file.
Is there any moc relevant change ? I didn't change my compiler environment
from previous 5.11 and always compile all in a clean chroot, with no
previous versions installed.
Qt itself was build with clang 6.0.1

Here's the logs

With gcc 8.1.1 x86_64:

In file included from
/code/kde/src/frameworks/kcoreaddons/autotests/jsonplugin2.cpp:23:
/code/kde/src/frameworks/kcoreaddons/src/lib/plugin/kpluginfactory.h: In
member function ‘void KPluginFactory::registerPlugin(const QString&,
KPluginFactory::CreateInstanceFunction) [with T = JsonPlugin2;
KPluginFactory::CreateInstanceFunction = QObject* (*)(QWidget*, QObject*,
const QList&); QVariantList = QList]’:
/code/kde/src/frameworks/kcoreaddons/src/lib/plugin/kpluginfactory.h:487:74:
warning: zero as null pointer constant [-Wzero-as-null-pointer-constant]
 =
InheritanceChecker().createInstanceFunction(reinterpret_cast(0)))

^~~~
In file included from
/code/kde/src/frameworks/kcoreaddons/autotests/jsonplugin2.cpp:34:
/code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:
At global scope:
/code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:153:1:
error: narrowing conversion of ‘'\303'’ from ‘char’ to ‘unsigned
char’ inside { } [-Wnarrowing]
 };
 ^
/code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:153:1:
error: narrowing conversion of ‘'\3777651'’ from ‘char’ to ‘unsigned
char’ inside { } [-Wnarrowing]



With clang 6.0.1 x86_64

[ 63%] Building CXX object
autotests/CMakeFiles/jsonplugin2.dir/jsonplugin2.cpp.o
In file included from
/code/kde/src/frameworks/kcoreaddons/autotests/jsonplugin2.cpp:34:
/code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:123:48:
error: constant expression evaluates to -61
  which cannot be narrowed to type 'unsigned char' [-Wc++11-narrowing]
']',  0x76,  'E',  's',  't',  'e',  ' ',  '\xc3',
   ^~
/code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:123:48:
note: insert an explicit cast to silence
  this issue
']',  0x76,  'E',  's',  't',  'e',  ' ',  '\xc3',
   ^~
   static_cast( )
/code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:124:5:
error: constant expression evaluates to -87
  which cannot be narrowed to type 'unsigned char' [-Wc++11-narrowing]
'\xa9', ' ',  'o',  'u',  't',  'r',  'o',  ' ',
^~

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


Re: [Development] Strange behavior on 5.12 branch and moc genrated file ( KDE application )

2018-09-05 Thread Helio Chissini de Castro
Unfortunately not.

Just compiled again reverting this commit and the issue still there.

No ideas for now :-/


On Wed, 5 Sep 2018 at 10:17, Liang Qi  wrote:

> Perhaps it's related with https://codereview.qt-project.org/#/c/235352/ .
>
> --Liang
>
> On Wed, 5 Sep 2018 at 09:20, Helio Chissini de Castro 
> wrote:
>
>> Morning guys
>>
>> After compile 5.12 branch from yesterday morning, i got one KDE
>> application failing due a compiler error on a generated moc file.
>> Is there any moc relevant change ? I didn't change my compiler
>> environment from previous 5.11 and always compile all in a clean chroot,
>> with no previous versions installed.
>> Qt itself was build with clang 6.0.1
>>
>> Here's the logs
>>
>> With gcc 8.1.1 x86_64:
>>
>> In file included from
>> /code/kde/src/frameworks/kcoreaddons/autotests/jsonplugin2.cpp:23:
>> /code/kde/src/frameworks/kcoreaddons/src/lib/plugin/kpluginfactory.h: In
>> member function ‘void KPluginFactory::registerPlugin(const QString&,
>> KPluginFactory::CreateInstanceFunction) [with T = JsonPlugin2;
>> KPluginFactory::CreateInstanceFunction = QObject* (*)(QWidget*, QObject*,
>> const QList&); QVariantList = QList]’:
>> /code/kde/src/frameworks/kcoreaddons/src/lib/plugin/kpluginfactory.h:487:74:
>> warning: zero as null pointer constant [-Wzero-as-null-pointer-constant]
>>  =
>> InheritanceChecker().createInstanceFunction(reinterpret_cast(0)))
>>
>> ^~~~
>> In file included from
>> /code/kde/src/frameworks/kcoreaddons/autotests/jsonplugin2.cpp:34:
>> /code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:
>> At global scope:
>> /code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:153:1:
>> error: narrowing conversion of ‘'\303'’ from ‘char’ to ‘unsigned
>> char’ inside { } [-Wnarrowing]
>>  };
>>  ^
>> /code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:153:1:
>> error: narrowing conversion of ‘'\3777651'’ from ‘char’ to ‘unsigned
>> char’ inside { } [-Wnarrowing]
>> 
>>
>>
>> With clang 6.0.1 x86_64
>>
>> [ 63%] Building CXX object
>> autotests/CMakeFiles/jsonplugin2.dir/jsonplugin2.cpp.o
>> In file included from
>> /code/kde/src/frameworks/kcoreaddons/autotests/jsonplugin2.cpp:34:
>> /code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:123:48:
>> error: constant expression evaluates to -61
>>   which cannot be narrowed to type 'unsigned char' [-Wc++11-narrowing]
>> ']',  0x76,  'E',  's',  't',  'e',  ' ',  '\xc3',
>>^~
>> /code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:123:48:
>> note: insert an explicit cast to silence
>>   this issue
>> ']',  0x76,  'E',  's',  't',  'e',  ' ',  '\xc3',
>>^~
>>static_cast> char>( )
>> /code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc:124:5:
>> error: constant expression evaluates to -87
>>   which cannot be narrowed to type 'unsigned char' [-Wc++11-narrowing]
>> '\xa9', ' ',  'o',  'u',  't',  'r',  'o',  ' ',
>> ^~
>>
>> Any idea ?
>>
>>
>> ___
>> 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] Strange behavior on 5.12 branch and moc genrated file ( KDE application )

2018-09-06 Thread Helio Chissini de Castro
Hi

No, still getting same error.
The .moc generated file is the same, so or this not solve the issue, or
something is fishy on my environment.

I'm doing a full clean build by hand with your patch to dobcle check right
now, but as concerned on my current status, still a nope.

Here's the moc compile line that resulting the attached file:

kcoreaddons  1  /opt/qt5/bin/moc
-I/code/kde/build-kde/frameworks/kcoreaddons/autotests
-I/code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include
-I/code/kde/build-kde/frameworks/kcoreaddons/src/lib/../..
-I/code/kde/build-kde/frameworks/kcoreaddons/src/lib/io
-I/code/kde/build-kde/frameworks/kcoreaddons/src/lib
-I/code/kde/src/frameworks/kcoreaddons/autotests
-I/code/kde/src/frameworks/kcoreaddons/src/lib/caching
-I/code/kde/src/frameworks/kcoreaddons/src/lib/io
-I/code/kde/src/frameworks/kcoreaddons/src/lib/jobs
-I/code/kde/src/frameworks/kcoreaddons/src/lib/plugin
-I/code/kde/src/frameworks/kcoreaddons/src/lib/randomness
-I/code/kde/src/frameworks/kcoreaddons/src/lib/text
-I/code/kde/src/frameworks/kcoreaddons/src/lib/util
-I/code/kde/src/frameworks/kcoreaddons/src/lib -I/opt/qt5/include
-I/opt/qt5/include/QtCore -I/opt/qt5/./mkspecs/linux-clang
"-DKDELIBS4CONFIGMIGRATOR_DATA_DIR=\"/code/kde/src/frameworks/kcoreaddons/autotests/data\""
-DQT_CORE_LIB -DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_FROM_BYTEARRAY
-DQT_NO_CAST_TO_ASCII -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT
-DQT_NO_SIGNALS_SLOTS_KEYWORDS -DQT_NO_URL_CAST_FROM_STRING
-DQT_USE_QSTRINGBUILDER -D_GNU_SOURCE -D_LARGEFILE64_SOURCE --include
/code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/moc_predefs.h
-o
/code/kde/build-kde/frameworks/kcoreaddons/autotests/jsonplugin2_autogen/include/jsonplugin2.moc
/code/kde/src/frameworks/kcoreaddons/autotests/jsonplugin2.cpp


[]'s


On Wed, 5 Sep 2018 at 19:05, Thiago Macieira 
wrote:

> On Wednesday, 5 September 2018 09:57:30 PDT Thiago Macieira wrote:
> > On Wednesday, 5 September 2018 00:20:22 PDT Helio Chissini de Castro
> wrote:
> > > jsonplugin2.moc:153:1: error: narrowing conversion of ‘'\303'’
> > > from ‘char’ to ‘unsigned char’ inside { } [-Wnarrowing]
> > >  };
> >
> > [cut]
> >
> > > lude/jsonplugin2.moc:123:48: error: constant expression evaluates to
> -61
> > >   which cannot be narrowed to type 'unsigned char'
> [-Wc++11-narrowing]
> > > ']',  0x76,  'E',  's',  't',  'e',  ' ',  '\xc3',
> > >^~
> >
> > I guess I didn't test non-ASCII content.
> >
> > moc was changed recently to save data in CBOR format instead of our
> binary
> > JSON.
>
> Please test this fix:
> https://codereview.qt-project.org/238950
>
> --
> 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
>
/
** Meta object code from reading C++ file 'jsonplugin2.cpp'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.12.0)
**
** WARNING! All changes made in this file will be lost!
*/

#include 
#include 
#include 
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'jsonplugin2.cpp' doesn't include ."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.12.0. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif

QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_jsonplugin2_t {
QByteArrayData data[1];
char stringdata0[12];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_jsonplugin2_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_jsonplugin2_t qt_meta_stringdata_jsonplugin2 = {
{
QT_MOC_LITERAL(0, 0, 11) // "jsonplugin2"

},
"jsonplugin2"
};
#undef QT_MOC_LITERAL

static const uint qt_meta_data_jsonplugin2[] = {

 // content:
   8,   // revision
   0,   // classname
   0,0, // classinfo
   0,0, // methods
   0,0, // properties
   0,0, // enums/sets
   0,0, // constructors
   0,   // flags
   0,   //

Re: [Development] Updating of 3rdparty stuff

2015-04-07 Thread Helio Chissini de Castro
Raising my hand to help.

[]'s Helio

On Tue, Apr 7, 2015 at 1:56 AM, Thiago Macieira 
wrote:

> Any volunteers?
> --
> 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] Updating of 3rdparty stuff

2015-04-07 Thread Helio Chissini de Castro
What we need look for to proceed ?

Or just look  on modules, update, test on the platforms and do a proper
pull request ?

On Tue, Apr 7, 2015 at 11:22 AM, Thiago Macieira 
wrote:

> On Tuesday 07 April 2015 12:24:57 Nicola De Filippo wrote:
> > Hi,
> > all 3rdparty or only in qtbase?
> >N.
>
> No, unfortunately.
>
> There's a 3rdparty in qtcanvas3d, qtdeclarative, qtimageformats,
> qtlocation,
> qtmultimedia, qtscript, qttools and qtwayland.
>
> I know qtscript won't get an update. The others I don't know what requires
> updating or not.
> --
> 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] Updating of 3rdparty stuff

2015-04-08 Thread Helio Chissini de Castro
Hi

I just started a simple spreadsheet on the status of 3rdparty code.
I enabled the doc to comments.

Here:
https://docs.google.com/spreadsheets/d/1xOAI87zKy6w7VSvSzQrIA_zeZBLuTgoSmNU-vAXrIhY/edit?usp=sharing

Now need discover the feasibility to do some of them.

[]'s Helio


On Wed, Apr 8, 2015 at 8:31 AM, Konstantin Ritt  wrote:

> 2015-04-08 15:28 GMT+04:00 Eirik Aavitsland <
> eirik.aavitsl...@theqtcompany.com>:
>
>>
>> Good stuff, and libpng gets updated to 1.6.17 here
>> https://codereview.qt-project.org/109973
>>
>> - Eirik Aa.
>>
>
> Someone have to upstream the WinCE and WinRT specific patches to libpng.
>
> Konstantin
>
>
>
>>
>> On 04/08/2015 10:15 AM, Liang Qi wrote:
>> > qtimageformats: libwebp 0.4.3 update
>> >
>> > https://codereview.qt-project.org/109955
>> > https://codereview.qt-project.org/109956
>> >
>> > And checked other 3rdparty: jasper, libmng, libtiff, there is no update
>> > from upstream.
>> >
>> > After Beta released, I will help to update qt doc and
>> > https://wiki.qt.io/Third_Party_In_Qt
>> >
>> > Regards,
>> > Liang
>> >
>> >
>> > On 7 April 2015 at 06:56, Thiago Macieira > > > wrote:
>> >
>> > Any volunteers?
>> > --
>> > 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
>> >
>> >
>> >
>> >
>> > --
>> > http://www.qiliang.net
>> >
>> >
>> > ___
>> > 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
>
>
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Updating of 3rdparty stuff

2015-04-10 Thread Helio Chissini de Castro
So, no more coments.

It's ok to go ahead and update + push to review the ones not already there ?

[]'s

On Wed, Apr 8, 2015 at 2:20 PM, Konstantin Ritt  wrote:

> Added some comments to your spreadsheet
>
> Regards,
> Konstantin
>
> 2015-04-08 19:42 GMT+04:00 Helio Chissini de Castro :
>
>> Hi
>>
>> I just started a simple spreadsheet on the status of 3rdparty code.
>> I enabled the doc to comments.
>>
>> Here:
>> https://docs.google.com/spreadsheets/d/1xOAI87zKy6w7VSvSzQrIA_zeZBLuTgoSmNU-vAXrIhY/edit?usp=sharing
>>
>> Now need discover the feasibility to do some of them.
>>
>> []'s Helio
>>
>>
>> On Wed, Apr 8, 2015 at 8:31 AM, Konstantin Ritt 
>> wrote:
>>
>>> 2015-04-08 15:28 GMT+04:00 Eirik Aavitsland <
>>> eirik.aavitsl...@theqtcompany.com>:
>>>
>>>>
>>>> Good stuff, and libpng gets updated to 1.6.17 here
>>>> https://codereview.qt-project.org/109973
>>>>
>>>> - Eirik Aa.
>>>>
>>>
>>> Someone have to upstream the WinCE and WinRT specific patches to libpng.
>>>
>>> Konstantin
>>>
>>>
>>>
>>>>
>>>> On 04/08/2015 10:15 AM, Liang Qi wrote:
>>>> > qtimageformats: libwebp 0.4.3 update
>>>> >
>>>> > https://codereview.qt-project.org/109955
>>>> > https://codereview.qt-project.org/109956
>>>> >
>>>> > And checked other 3rdparty: jasper, libmng, libtiff, there is no
>>>> update
>>>> > from upstream.
>>>> >
>>>> > After Beta released, I will help to update qt doc and
>>>> > https://wiki.qt.io/Third_Party_In_Qt
>>>> >
>>>> > Regards,
>>>> > Liang
>>>> >
>>>> >
>>>> > On 7 April 2015 at 06:56, Thiago Macieira >>> > <mailto:thiago.macie...@intel.com>> wrote:
>>>> >
>>>> > Any volunteers?
>>>> > --
>>>> > Thiago Macieira - thiago.macieira (AT) intel.com <
>>>> http://intel.com>
>>>> >Software Architect - Intel Open Source Technology Center
>>>> >
>>>> > ___
>>>> > Development mailing list
>>>> > Development@qt-project.org <mailto:Development@qt-project.org>
>>>> > http://lists.qt-project.org/mailman/listinfo/development
>>>> >
>>>> >
>>>> >
>>>> >
>>>> > --
>>>> > http://www.qiliang.net
>>>> >
>>>> >
>>>> > ___
>>>> > 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
>>>
>>>
>>
>> ___
>> 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] 5.5 third-party update

2015-06-03 Thread Helio Chissini de Castro
I asked for the update after the list was updated in
https://drive.google.com/open?id=1xOAI87zKy6w7VSvSzQrIA_zeZBLuTgoSmNU-vAXrIhY&authuser=0

AFAIK, this is the last status, and the only significant older library is
libjpeg but no one gave green light to do it.
And i not verified the status of ones already in review recently.

So, based on the list, do you think is possible to update the missing ones
it for 5.5.1 ( as 5.5.0 is unrealistic ) ?


On Wed, Jun 3, 2015 at 3:28 AM, Knoll Lars 
wrote:

> Well enough from what I’ve seen. A lot of the 3rd party modules have
> received updates over the last couple of months.
>
> Cheers,
> Lars
>
> On 02/06/15 23:02, "Thiago Macieira"  wrote:
>
> >Have we done 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] New Qt 5.5.0 snapshot available - aimed to be final packages

2015-06-29 Thread Helio Chissini de Castro
Hello

Can you please generate the splitted set of packages ?

[]'s

On Mon, Jun 29, 2015 at 4:13 AM, Salovaara Akseli <
akseli.salova...@theqtcompany.com> wrote:

>  Hi all,
>
>
>
> We have new Qt 5.5.0 packages available which are aimed to be final.
>
>
>
> Windows: http://download.qt.io/snapshots/qt/5.5/5.5.0/2015-06-26_109/
>
> Linux: http://download.qt.io/snapshots/qt/5.5/5.5.0/2015-06-26_136/
>
> Mac: http://download.qt.io/snapshots/qt/5.5/5.5.0/2015-06-26_111/
>
> Source: http://download.qt.io/snapshots/qt/5.5/5.5.0/latest_src/
>   (source package mirroring is in progress)
>
>
>
> Please check these packages now and inform me immediately if you find
> something broken & blocking the release.
>
> If nothing serious is found during testing we will release these packages
> Wednesday 01.07.2015.
>
>
>
> Br,
>
> Akseli
>
>
>
> --
>
> Akseli Salovaara
>
> Software Specialist
>
> The Qt Company
>
> ___
> 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] Request to delete libibusplatforminputcontextplugin.so from qtbase

2015-07-16 Thread Helio Chissini de Castro
Hello Takao

You're talking over Qt 4 only or Qt 5 is affected as well ?
This is a full replacement of the plugin ?

Regards, Helio

On Thu, Jul 16, 2015 at 4:29 AM, Takao Fujiwara  wrote:

> I maintain IBus project.
> https://github.com/ibus/ibus/wiki
>
> Now I wish to delete qtbase/src/plugins/platforminputcontexts/ibus and the
> I will import that module to ibus-qt package, which had been used in qt4.
> https://github.com/ibus/ibus-qt
>
> Thanks,
> Fujiwara
> ___
> 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] New Qt 5.6.0 Beta snapshot available

2015-11-09 Thread Helio Chissini de Castro
Hello Jani

There's an issue on the src package, no doc subdir was provided under
qtbase, not enable us to build docs offline.

[]'s Helio

On Tue, Nov 3, 2015 at 10:06 AM, Heikkinen Jani <
jani.heikki...@theqtcompany.com> wrote:

> Hi all,
>
>
> We have new Qt 5.6.0 beta snapshot available,
>
>
> Windows: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/241/
>
> Linux: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/265/
>
> Mac: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/198/
>
> src: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/latest_src/
>
>
> Please test these packages carefully and inform me immediately all beta
> blockers which aren't already linked in
> https://bugreports.qt.io/browse/QTBUG-47958 .
>
>
> br,
>
> Jani
>
>
>
> ___
> 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] New Qt 5.6 Beta snapshot available

2015-11-11 Thread Helio Chissini de Castro
And for us, distributions, we need at least splitted source codes.

We just CAN'T test our packages the way is deployed now.

On Wed, Nov 11, 2015 at 11:22 AM, Massimo Callegari <
massimocalleg...@yahoo.it> wrote:

> Hi, I think there something wrong with the sources package Nov 10th (I
> downloaded the 7z one)
>
> 1- the folder name is 'releaseexporttools_src_work_win" instead of
> "qt-everywhere-opensource-5.6.0"
>
> 2- the configure script in the main folder gives an error on Linux. I
> believe it has something to do with dos2unix carriage return. I had to copy
> the one from 5.5.1 to build.
>
> 3- all the submodules are missing the examples folder
>
> I know it's still a snapshot, but I just wanted to report what I found.
>
> Thanks
> Massimo
>
> 
> Da: Heikkinen Jani 
> A: "development@qt-project.org" 
> Inviato: Mercoledì 11 Novembre 2015 8:39
> Oggetto: [Development] New Qt 5.6 Beta snapshot available
>
>
>
>
> Hi all,
>
> New Qt5.6 Beta snapshot available in
> http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/
>
> Windows: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/253/
>
> Linux: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/275/
> Mac: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/203/
>
> src: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/latest_src/
>
>
>
> Unfortunately these aren't yet final beta packages but should be pretty
> close so please test these packages and report all beta blockers
> immediately: We are targeting to put beta out as soon as possible,
> preferably already during next week.
>
> These packages contain now QtCreator 3.6.0-RC snapshot.
>
> RTA testing still ongoing but according to smoke test results packages
> seems to be ok for wider testing
>
>
> Known issues:
>
> - https://bugreports.qt.io/browse/QTBUG-47958 :Issues to be fixed before
> Qt 5.6.0 Beta
>
> - There might be some issues with kits in the creator: during the smoke
> testing some users have seen problems with compiler (auto)detection (and
> some users haven't)
> - New tech preview components not seen in installer UI
>
> br,
> Jani
>
> ___
> 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


[Development] New Qt5.6 Beta snapshot available

2015-12-04 Thread Helio Chissini de Castro
Well, i'm not relying anymore on the released sources, i'm generating our
test tarballs from git, in the specific case, the 5.6 branch.

We complained already, and I decided that not worth wait to have our tasks
done.

If is too difficult to generate the official splitted tarballs, i can offer
as a community member to generate it and provide for Linux distros in the
not official basis.

Regards, Helio

On Fri, Dec 4, 2015, 17:55 Thiago Macieira 
wrote:

On Friday 04 December 2015 10:42:39 Heikkinen Jani wrote:
> We have finally new qt5.6 beta snapshot available
>
>
> Windows: http:// 
download.qt.io /
snapshots

/qt/5.6/5.6.0-beta/278/

>
> Linux: http:// 
download.qt.io /
snapshots

/qt/5.6/5.6.0-beta/287/

>
> Mac: http:// 
download.qt.io /
snapshots

/qt/5.6/5.6.0-beta/221/

>
> Src: http://

download.qt.io
/
snapshots

/qt/5.6/5.6.0-beta/
latest
_
src
/


Hi Jani

Repeating the request from Linux packagers: they cannot create packages
unless
we provide the split sources. The split sources are our official release
channel, not the big tarball.

--
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.6.0 Beta candidate packages available

2015-12-10 Thread Helio Chissini de Castro
Ok, again

We're told that the splitted packages will be available with the beta
release ( not the snapshots ).
This still considered a snapshot or we packagers will be ignored until
someone say "released" ?

And how we suppose to test and inform you, if we don't have the proper set ?

Helio

On Thu, Dec 10, 2015 at 12:43 PM, Heikkinen Jani <
jani.heikki...@theqtcompany.com> wrote:

> Hi,
>
>
> We have finally Qt 5.6.0 beta candidate packages available:
>
>
> Mac: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/224/
>
> Linux: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/290/
>
> Windows: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/283/
>
> src: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/latest_src/
>
>
> All known blockers are fixed in these packages so if nothing serious found
> during testing we will release these package as Qt 5.6.0 beta on Monday so
> please inform me immediately if you find something badly broken.
>
>
> br,
>
> Jani
>
>
> ___
> 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.6.0 Beta candidate packages available

2015-12-10 Thread Helio Chissini de Castro
Hello

Thanks for that.

Best, Helio

On Thu, Dec 10, 2015 at 2:10 PM, Heikkinen Jani <
jani.heikki...@theqtcompany.com> wrote:

> Hi!
>
>
>
> Mirroring in ongoing. Splitted src packages will be in
> download.qt.io/snapshots/qt/5.6/5.6.0-beta/latest_src/submodules
>
>
>
> Br,
>
> Jani
>
>
>
> *From:* heliocas...@gmail.com [mailto:heliocas...@gmail.com] *On Behalf
> Of *Helio Chissini de Castro
> *Sent:* 10. joulukuuta 2015 13:57
> *To:* Heikkinen Jani 
> *Cc:* development@qt-project.org
> *Subject:* Re: [Development] Qt 5.6.0 Beta candidate packages available
>
>
>
> Ok, again
>
> We're told that the splitted packages will be available with the beta
> release ( not the snapshots ).
>
> This still considered a snapshot or we packagers will be ignored until
> someone say "released" ?
>
> And how we suppose to test and inform you, if we don't have the proper set
> ?
>
>
>
> Helio
>
>
>
> On Thu, Dec 10, 2015 at 12:43 PM, Heikkinen Jani <
> jani.heikki...@theqtcompany.com> wrote:
>
> Hi,
>
>
>
> We have finally Qt 5.6.0 beta candidate packages available:
>
>
>
> Mac: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/224/
>
> Linux: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/290/
>
> Windows: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/283/
>
> src: http://download.qt.io/snapshots/qt/5.6/5.6.0-beta/latest_src/
>
>
>
> All known blockers are fixed in these packages so if nothing serious found
> during testing we will release these package as Qt 5.6.0 beta on Monday so
> please inform me immediately if you find something badly broken.
>
>
>
> br,
>
> Jani
>
>
>
>
> ___
> 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] [Announce] Qt 5.6 Beta released

2015-12-18 Thread Helio Chissini de Castro
Thanks for the work Jani

Would be so much to ask to have a .xz version of submodules ?
We use to have on both
https://download.qt.io/development_releases/qt/5.6/5.6.0-alpha/submodules/
and
https://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/ and they
cause sometimes a huge size difference.

Regards, Helio


On Fri, Dec 18, 2015 at 10:18 AM, List for announcements regarding Qt
releases and development  wrote:

> Hi all,
>
>
> Qt 5.6.0 beta is finally out, see
> http://blog.qt.io/blog/2015/12/18/qt-5-6-beta-released/ .
>
>
> It was quite hard at this time ;) Big thanks to everyone involved!
>
>
> Best regards,
>
> Jani Heikkinen
>
> Release Manager | The Qt Company
>
>
>
> The Qt Company / Digia Finland Ltd, Elektroniikkatie 10, 90590 Oulu,
> Finland
>
> Email: jani.heikki...@theqtcompany.com
>
> www.qt.io |Qt Blog: http://blog.qt.digia.com/ | Twitter: @QtbyDigia,
> @Qtproject Facebook: www.facebook.com/qt
>
>
> ___
> Announce mailing list
> annou...@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/announce
>
>
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] [Announce] Qt 5.6 Beta released

2015-12-18 Thread Helio Chissini de Castro
Thanks for the work Jani

Would be so much to ask to have a .xz version of submodules ?
We use to have on both
https://download.qt.io/development_releases/qt/5.6/5.6.0-alpha/submodules/
and
https://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/ and they
cause sometimes a huge size difference.

Regards, Helio


On Fri, Dec 18, 2015 at 10:18 AM, List for announcements regarding Qt
releases and development  wrote:

> Hi all,
>
>
> Qt 5.6.0 beta is finally out, see
> http://blog.qt.io/blog/2015/12/18/qt-5-6-beta-released/ .
>
>
> It was quite hard at this time ;) Big thanks to everyone involved!
>
>
> Best regards,
>
> Jani Heikkinen
>
> Release Manager | The Qt Company
>
>
>
> The Qt Company / Digia Finland Ltd, Elektroniikkatie 10, 90590 Oulu,
> Finland
>
> Email: jani.heikki...@theqtcompany.com
>
> www.qt.io |Qt Blog: http://blog.qt.digia.com/ | Twitter: @QtbyDigia,
> @Qtproject Facebook: www.facebook.com/qt
>
>
> ___
> Announce mailing list
> annou...@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/announce
>
>
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Proposal to include qtscxml as Qt add-on module

2016-01-25 Thread Helio Chissini de Castro
Hello

I'm just curious, is Qt project aiming for be a umbrella of libraries tied
to Qt release or this libraries like QtGamePad on other thread
should be more suitable to something like inqlude.org ( or similar ).


Just to clarify, as a distro packager too.

[]'s



On Tue, Jan 26, 2016 at 8:47 AM, Knoll Lars 
wrote:

> +1 for making it a TP in 5.7 and another +1 for Erik becoming the
> maintainer.
>
> Cheers,
> Lars
>
>
>
> On 25/01/16 19:49, "Development on behalf of Turunen Tuukka" <
> development-boun...@qt-project.org on behalf of
> tuukka.turu...@theqtcompany.com> wrote:
>
> >
> >+1
> >
> >State machine framework has been part of Qt for many years and there was
> also some work earlier for scxml compatibility, which was never completed.
> SCXML is an industry standard format, which can be exported from multiple
> different tools.
> >
> >Yours,
> >
> >Tuukka
> >
> >> Blasche Alexander  kirjoitti
> 25.1.2016 kello 16.55:
> >>
> >> Hi,
> >>
> >> As part of the renewed publishing process following the new KDE Free Qt
> foundation agreement,  we'd like to publish the source of the new Qt SCXML
> module.
> >>
> >> I'd like to propose the module to be accepted as part of the Qt add-on
> modules. The module itself is brand new as well (target is a 5.7 TP).
> Initially it would have been part of our Qt Automotive effort. It permits
> the definition of state machines using SCXML and generates relevant Qt C++
> state machines at compile time or runtime.
> >>
> >> As maintainer I'd like to propose Erik Verbruggen.
> >>
> >> --
> >> Alex
> >> ___
> >> 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
>
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] New Qt 5.6.0 RC snapshot available, please test

2016-02-17 Thread Helio Chissini de Castro
Hello all

We are testing packages generated from git branch 5.6.0 from now in Fedora,
since
fails again to comply on the agreed rules of release splitted tarballs.

And sorry, the "is just a snapshot" is no longer a valid excuse.

Helio


On Fri, Feb 12, 2016 at 1:49 PM, Heikkinen Jani <
jani.heikki...@theqtcompany.com> wrote:

> Hi all,
>
>
> We have finally packages for testing,
>
>
> Windows: http://download.qt.io/snapshots/qt/5.6/5.6.0-rc/335/
>
> Linux: http://download.qt.io/snapshots/qt/5.6/5.6.0-rc/331/
>
> Mac:http://download.qt.io/snapshots/qt/5.6/5.6.0-rc/271/
>
> src: 
> http://download.qt.io/snapshots/qt/5.6/5.6.0-rc/latest_src
>
>
> Unfortunately these packages are from a bit old qt5.git integration (
> https://codereview.qt-project.org/#/c/147715/) so latest changes from
> '5.6.0' (https://codereview.qt-project.org/#/c/148570/) are missing from
> the packages, sorry about that!
>
>
> We are trying to release RC as soon as possible so it is really important
> to test these packages now to see if there is still something to be fixed
> before we can release the RC. Current RC blockers are here:
> https://bugreports.qt.io/issues/?filter=17225 .Please make sure all
> blocker are visible here (but remember, just a real blockers anymore!).
>
>
> And please start creating changelogs for final release now if not already
> started.
>
> br,
> Jani
>
>
> ___
> 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] [Announce] Qt 5.6.0 RC released

2016-02-24 Thread Helio Chissini de Castro
Hello Jani

Thanks for the packages and submodules in .tar.xz

We can confirm from our side that at least in Fedora all modules compiled
fine and
are in testing repositories.

Regards


On Wed, Feb 24, 2016 at 6:41 AM, List for announcements regarding Qt
releases and development  wrote:

> Hi all,
>
>
>
> Qt 5.6.0 RC is now released, see
> http://blog.qt.io/blog/2016/02/23/qt-5-6-0-release-candidate-available/
>
>
>
> Big thanks to everyone involved!
>
>
> Best regards,
>
> Jani Heikkinen
>
> Release Manager | The Qt Company
>
>
>
> The Qt Company / Digia Finland Ltd, Elektroniikkatie 10, 90590 Oulu,
> Finland
>
> www.qt.io |Qt Blog: http://blog.qt.digia.com/ | Twitter: @QtbyDigia, @
> Qtproject Facebook: www.facebook.com/qt
>
>
> 
>
> ___
> Announce mailing list
> annou...@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/announce
>
>
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Qt 5.6.0-rc build issues on CentOS 6.7 x86_64 with g++

2016-03-03 Thread Helio Chissini de Castro
Hello all

Just a question, did you tried the copr Qt repository that Fedora KDE Sig
maintains ?

https://copr.fedorainfracloud.org/coprs/g/kdesig

We have everything compiled for Fedora 22, 23, rawhide, epel 7 and epel 6,
meaning Centos 6

We're unable to dependency reasons have qtserialport, qtwayland, qt3d and
Qt creator 5.6.o not ready yet, but for the rest is all ok

Even the compiler we used the original, and not the SCL collection.

Regards, Helio



On Fri, Mar 4, 2016, 05:50 Walter Stefan  wrote:

> Hi,
>
> I am using now the actual sources from git for 5.6.0 and get now the next
> compilation issue regarding libQt5DBus.so.
>
> This mentioned library get's built and is also available in
> .../qtbase/lib/libQt5DBus.so
>
> For some reason while building the service framework it can find that
> library. See the compilation output:
> make[4]: Entering directory
> `/home/walteste/qt-5.6/qt-5.6.0-git/qt-build/qtsystems/src/tools/servicefw'
> g++ -Wl,-O1 -Wl,--enable-new-dtags
> -Wl,-rpath,/home/walteste/qt-5.6/qt-5.6.0-git/qt-install/lib -o
> ../../../bin/servicefw .obj/servicefw.o .obj/servicemetadata.o
>  -L/home/walteste/qt-5.6/qt-5.6.0-git/qt-build/qtsystems/lib
> -lQt5ServiceFramework
> -L/home/walteste/qt-5.6/qt-5.6.0-git/qt-build/qtbase/lib -lQt5Core -lpthread
> /usr/bin/ld: warning: libQt5DBus.so.5, needed by
> /home/walteste/qt-5.6/qt-5.6.0-git/qt-build/qtsystems/lib/libQt5ServiceFramework.so,
> not found (try using -rpath or -rpath-link)
> /usr/bin/ld: warning: libQt5Network.so.5, needed by
> /home/walteste/qt-5.6/qt-5.6.0-git/qt-build/qtsystems/lib/libQt5ServiceFramework.so,
> not found (try using -rpath or -rpath-link)
> /usr/bin/ld: warning: libQt5Sql.so.5, needed by
> /home/walteste/qt-5.6/qt-5.6.0-git/qt-build/qtsystems/lib/libQt5ServiceFramework.so,
> not found (try using -rpath or -rpath-link)
> /home/walteste/qt-5.6/qt-5.6.0-git/qt-build/qtsystems/lib/libQt5ServiceFramework.so:
> undefined reference to `QDBusAbstractInterface::isValid() const@Qt_5'
> /home/walteste/qt-5.6/qt-5.6.0-git/qt-build/qtsystems/lib/libQt5ServiceFramework.so:
> undefined reference to `QDBusAbstractInterface::connection() const@Qt_5'
> /home/walteste/qt-5.6/qt-5.6.0-git/qt-build/qtsystems/lib/libQt5ServiceFramework.so:
> undefined reference to `QDBusMetaType::registerMarshallOperators(int, void
> (*)(QDBusArgument&, void const*), void (*)(QDBusArgument const&,
> void*))@Qt_5'
>
> Thanks and Regards,
> Stefan
>
> 
> Von: Development  lisec@qt-project.org> im Auftrag von Thiago Macieira <
> thiago.macie...@intel.com>
> Gesendet: Donnerstag, 03. März 2016 22:22
> An: development@qt-project.org
> Betreff: Re: [Development] Qt 5.6.0-rc build issues on CentOS 6.7 x86_64
>   with g++
>
> On quinta-feira, 3 de março de 2016 17:32:25 PST Walter Stefan wrote:
> > Hi Thiago,
> >
> > thanks, but unfortunately I am a subversion user and my git knowledge is
> > very little. Is there a guide or some quick steps of how to check out
> this
> > git 5.6.0 branch on my linux system?
>
> git clone -b 5.6.0 git://code.qt.io/qt/qt5.git
> less README.git
>
> The README tells you to run:
>  ./init-repository
>
> I've never run that script and I have no idea what it does. I'd do instead:
>  git submodule init
>  git submodule update
>
> --
> 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] Qt 5.6.0-rc build issues on CentOS 6.7 x86_64 with g++

2016-03-04 Thread Helio Chissini de Castro
Hello again

The packages built on copr repository IS 5.6.0rc and is the reference that
we use to upstream in Fedora when reach final.

This is the proper repository:
https://copr.fedorainfracloud.org/coprs/g/kdesig/Qt5/

This is the repository to add on Yum
https://copr.fedorainfracloud.org/coprs/g/kdesig/Qt5/repo/epel-6/heliocastro-Qt5-epel-6.repo

This are the effective packages:
https://copr.fedorainfracloud.org/coprs/g/kdesig/Qt5/packages/

[]'s Helio

On Fri, Mar 4, 2016 at 9:47 AM, Heikkinen Jani <
jani.heikki...@theqtcompany.com> wrote:

> >>Workaround: do not use the convenience qt-everywhere-* tarball. Build
> each
> >>module independently.
> >>
> >>Ossi: have there been changes to rpath or rpath-link handling recently?
> We
> >>need to bring it back.
>
> There is some fixes for src packages coming in after RC, see
>
> https://codereview.qt-project.org/#/c/150517/
> https://codereview.qt-project.org/#/c/150232/
> https://codereview.qt-project.org/#/c/151015/
>
> (+ c++98 related ones in https://codereview.qt-project.org/#/c/151328/ )
>
> Those all are now in qt5.git but we don't have re-created src packages for
> testing yet :(
>
> Br,
> Jani
>
>
> >>-Original Message-
> >>From: Development [mailto:development-
> >>bounces+jani.heikkinen=theqtcompany@qt-project.org] On Behalf Of
> >>Thiago Macieira
> >>Sent: 4. maaliskuuta 2016 9:28
> >>To: development@qt-project.org
> >>Subject: Re: [Development] Qt 5.6.0-rc build issues on CentOS 6.7 x86_64
> with
> >>g++
> >>
> >>On sexta-feira, 4 de março de 2016 07:07:00 PST Walter Stefan wrote:
> >>> I have done a clean build.
> >>>
> >>> Where can we address this issue?
> >>
> >>I've managed to reproduce this issue now. It only happens with the old
> bfd
> >>linker (ld.bfd). Gold appears unaffected.
> >>
> >>Workaround: do not use the convenience qt-everywhere-* tarball. Build
> each
> >>module independently.
> >>
> >>Ossi: have there been changes to rpath or rpath-link handling recently?
> We
> >>need to bring it back.
> >>
> >>The command-line for linking the example was:
> >>
> >>g++ -Wl,-O1 -fuse-ld=bfd -Wl,--enable-new-dtags -Wl,-z,origin
> -Wl,-rpath,\
> >>$ORIGIN/../../../lib -o annotatedurl .obj/main.o .obj/mainwindow.o .obj/
> >>annotatedurl.o .obj/moc_mainwindow.o .obj/moc_annotatedurl.o -L/tmp/qt-
> >>build/
> >>qtbase/lib -lQt5Widgets.t -lQt5Gui.t -L/tmp/qt-build/qtconnectivity/lib -
> >>lQt5Nfc.t -lQt5Core.t -lGL -lpthread
> >>
> >>Every Qt module path in an -L option needs to be repeated with
> -Wl,-rpath-
> >>link,
> >>
> >>--
> >>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] Fwd: [Interest] Qt 5.6.0 (final) packages available

2016-03-15 Thread Helio Chissini de Castro
I agreed partially with Lars

Is too late *now*, and we can wait for a quick 5.6.1, but is not entirely
correct in say that we're not raising this issue from some time.
For us in Fedora this issue been happening for a month, since rc releases
and the bug was opened 10 days ago so the fact that is passed unattended
or the fact that depends indirectly on one person only that understands
well the code is that worries more.

5.6.0 is more important than regular releases, as Qt project defined as the
LTS release, and this bug do Qt LTS been unusable for the largest showcase
of Qt which is really a not good presentation.

And can't take the blame away of us packagers and distros as well, that
treated the bug as something magic that Qt project would discover as
critical and go ahead to fix. Mea culpa too.

So, let's take this as a lesson, and maybe try to make a better 5.6.1
release.

Regards, Helio
KDE Developer
Fedora KDE packager

On Tue, Mar 15, 2016 at 9:42 AM, Heikkinen Jani <
jani.heikki...@theqtcompany.com> wrote:

> Hi!
>
> Release isn't done yet and so on there isn't tag either yet. It should be
> there when release is officially done
>
> Br,
> Jani
>
> >>-Original Message-
> >>From: Development [mailto:development-
> >>bounces+jani.heikkinen=theqtcompany@qt-project.org] On Behalf Of
> >>Konstantin Podsvirov
> >>Sent: 14. maaliskuuta 2016 20:12
> >>To: development@qt-project.org
> >>Subject: [Development] Fwd: [Interest] Qt 5.6.0 (final) packages
> available
> >>
> >>Hello everyone and thank you for the good work!
> >>
> >>I have a related question. According to this post and the comments:
> >>
> >>http://blog.qt.io/blog/2016/01/18/qt-charts-2-1-0-release
> >>
> >>It says that Qt 5.6 gives an open community QtCharts 2.1 and it is
> wonderful!
> >>But... looking at the git tags on code.qt.io I don't find the 2.1
> release (2.0.1
> >>only).
> >>If I'm wrong, correct me.
> >>Else tell me who can push the correct tag?
> >>
> >>14.03.2016, 19:59, "Jan Kundrát" :
> >>>  On Monday, 14 March 2016 14:22:42 CET, Heikkinen Jani wrote:
>   So please inform me
>   immediately if there is something new which is preventing us to
>   do the release.
> >>>
> >>>  Do you consider "Plasma5 deadlocks during startup" as a blocker? If
> so,
> >>>  https://bugreports.qt.io/browse/QTBUG-51676 . It's a regression in
> the 5.6
> >>>  branch ("5.5 works fine. oldish 5.6 works fine, too"), and Thiago is
> >>>  currently AFK when it comes to Gerrit reviews.
> >>>
> >>>  Cheers,
> >>>  Jan
> >>
> >>--
> >>Regards,
> >>Konstantin Podsvirov
> >>___
> >>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] 5.7.0-rc compile error

2016-06-16 Thread Helio Chissini de Castro
Are you trying out of the source builds ?

I opened a ticket yesterday for this, specifically Qt3D, but it can
compiles if you run from the root tree on the source.

Regards

On Thu, Jun 16, 2016 at 11:27 AM, Jani Heikkinen 
wrote:

> >>would be nice if this could be fixed before 5.7.0 comes out.
>
> Unfortunately impossible, Qt 5.7.0 is coming out today
>
>
> br,
>
> Jani
>
>
> --
> *From:* Development  qt...@qt-project.org> on behalf of Tim Blechmann 
> *Sent:* Thursday, June 16, 2016 12:05 PM
> *To:* development@qt-project.org
> *Subject:* [Development] 5.7.0-rc compile error
>
> hi all,
>
> compiling 5.7.0-rc (sometimes) fails with the following error when
> building qt as static library:
>
> > error 15-Jun-2016 20:04:06make[4]: *** No rule to make target
> `/Volumes/build/bamboo-build/THIRDP-QT9-BUILDMAC/build-Qt-5.7.0-rc-macx-clang-static/qt3d/lib/libQt53DQuick_debug.a',
> needed by `../../../../qml/Qt3D/Extras/libquick3dextrasplugin_debug.a'.
> Stop.
> > error 15-Jun-2016 20:04:06make[3]: *** [debug-all] Error 2
> > error 15-Jun-2016 20:04:06make[2]: ***
> [sub-quick3d-imports-extras-make_first] Error 2
>
> probably an missing dependency for parallel builds as it doesn't happen
> all the time ... would be nice if this could be fixed before 5.7.0 comes
> out.
>
> thanks a lot,
> tim
>
>
> ___
> Development mailing list
> Development@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development
> Development Info Page - Qt
> 
> lists.qt-project.org
> To see the collection of prior postings to the list, visit the Development
> Archives. Using Development: To post a message to all the list members ...
>
>
> ___
> 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