<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-qt5.git, branch upstream/dylan</title>
<subtitle>Mirror of https://code.qt.io/cgit/yocto/meta-qt5.git</subtitle>
<id>https://git.enea.com/cgit/linux/meta-qt5.git/atom?h=upstream%2Fdylan</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-qt5.git/atom?h=upstream%2Fdylan'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/'/>
<updated>2014-03-15T17:50:19+00:00</updated>
<entry>
<title>licenses: rename NOKIA-TPLA-2.4 to DIGIA-TPLA-2.4</title>
<updated>2014-03-15T17:50:19+00:00</updated>
<author>
<name>Jonathan Liu</name>
<email>net147@gmail.com</email>
</author>
<published>2014-03-15T14:54:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=84f6aee08c8be59afa062a07fdf450acd70984c5'/>
<id>urn:sha1:84f6aee08c8be59afa062a07fdf450acd70984c5</id>
<content type='text'>
The license agreement doesn't mention Nokia anymore after Qt was
acquired by Digia.

Signed-off-by: Jonathan Liu &lt;net147@gmail.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>licenses: Fix WARNING: qt3d: No generic license file exists for: PREVIEW.COMMERCIAL in any provider</title>
<updated>2014-03-15T13:49:00+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2014-03-14T14:47:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=6b27ae20be254ba88a7bf4812d5e70bb23888559'/>
<id>urn:sha1:6b27ae20be254ba88a7bf4812d5e70bb23888559</id>
<content type='text'>
* Provide the license text

Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>qtbase-5.0.2: Fix build without -fpermissive</title>
<updated>2014-03-15T13:49:00+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2014-03-14T18:53:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=1d14002dd8948c0f3a9c3bbf00b9d29ec2bbb4a9'/>
<id>urn:sha1:1d14002dd8948c0f3a9c3bbf00b9d29ec2bbb4a9</id>
<content type='text'>
* commit in newer qt is using GLint and casting to GLuint
  later so it doesn't have this issue:
  commit 1d8ec5fae2fa4bf694b93bb6bf14a7c42c84a9b6
  Author: Valery Volgutov &lt;valery.volgutov@lge.com&gt;
  Date:   Tue May 21 14:18:17 2013 -0700

    Fix FBO restoring in QOpenGLTextureGlyphCache

* but backport to 5.0.2 is using GLuint:
  and causes build failure without -fpermissive:
  | qtbase/5.0.2-r3/qtbase-opensource-src-5.0.2/src/gui/opengl/qopengltextureglyphcache.cpp:151:51: error: invalid conversion from 'GLuint* {aka unsigned int*}' to 'GLint* {aka int*}' [-fpermissive]
  |      glGetIntegerv(GL_FRAMEBUFFER_BINDING, &amp;saveFbo);
  |                                                    ^
  | /usr/include/GLES2/gl2.h:536:37: error:   initializing argument 2 of 'void glGetIntegerv(GLenum, GLint*)' [-fpermissive]
  |  GL_APICALL void         GL_APIENTRY glGetIntegerv (GLenum pname, GLint* params);
  |                                      ^

* resync with version from 5.1.1 to fix this

Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>devshell: include PATH for qt5 native applications</title>
<updated>2013-10-05T12:44:24+00:00</updated>
<author>
<name>Trevor Woerner</name>
<email>trevor.woerner@linaro.org</email>
</author>
<published>2013-09-20T03:16:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=5e9a9d935ac17d352cda0c8ba07b679f7a789e7a'/>
<id>urn:sha1:5e9a9d935ac17d352cda0c8ba07b679f7a789e7a</id>
<content type='text'>
If you perform a "bitbake -c devshell &lt;some qt5 recipe&gt;" and then try "which
qmake" in the devshell, you'll find your host's qmake is found (which is most
likely to be based on qt4) rather than the one that is built as part of
meta-qt5. The reason for this is that the qt5 items are installed to
${STAGING_DIR_NATIVE}/usr/bin/qt5 and not ${STAGING_DIR_NATIVE}/usr/bin. The
reason for the extra "qt5" directory at the end is so that qt4-based items
that are built in OE can live side-by-side with things from meta-qt5 without
interfering with each other.

This patch prepends ${STAGING_DIR_NATIVE}/usr/bin/qt5 to the devshell's PATH
so that the qt5-based native tools which are built as part of meta-qt5 will be
found before the host's.

Signed-off-by: Trevor Woerner &lt;trevor.woerner@linaro.org&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>qtwebkit: Export RUBYLIB to fix wrong paths hardcoded in native ruby</title>
<updated>2013-10-05T12:44:15+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2013-10-04T14:52:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=fad74f159d8a1182b89d6aeb15b1704c8886928f'/>
<id>urn:sha1:fad74f159d8a1182b89d6aeb15b1704c8886928f</id>
<content type='text'>
* when ruby-native is reused from sstate it can contain paths pointing
  to wrong sysroot

Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>qtwebkit: fix QA issue (bad RPATH)</title>
<updated>2013-10-03T16:02:47+00:00</updated>
<author>
<name>Trevor Woerner</name>
<email>trevor.woerner@linaro.org</email>
</author>
<published>2013-09-24T02:35:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=3a84535bcba5f54264964b65a09d04022f939230'/>
<id>urn:sha1:3a84535bcba5f54264964b65a09d04022f939230</id>
<content type='text'>
Building qtwebkit causes a QA issue such that QtWebPluginProcess and
QtWebProcess contain bad RPATHs which point into the build location. This fix
adds a patch to not include the rpath.prf which causes this problem.

Signed-off-by: Trevor Woerner &lt;trevor.woerner@linaro.org&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>Fix download url for qt5-5.0.2.</title>
<updated>2013-08-15T20:03:47+00:00</updated>
<author>
<name>Marek Belisko</name>
<email>marek.belisko@open-nandra.com</email>
</author>
<published>2013-08-15T19:18:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=047908c2c5bc62283d12f137b3df7a569fb84c68'/>
<id>urn:sha1:047908c2c5bc62283d12f137b3df7a569fb84c68</id>
<content type='text'>
Signed-off-by: Marek Belisko &lt;marek.belisko@open-nandra.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>Merge pull request #22 from abhijitpotnis/dylan</title>
<updated>2013-08-13T16:13:20+00:00</updated>
<author>
<name>Otavio Salvador</name>
<email>otavio@ossystems.com.br</email>
</author>
<published>2013-08-13T16:13:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=198b132f9482c993ff98ba73d32f4f25e78aef50'/>
<id>urn:sha1:198b132f9482c993ff98ba73d32f4f25e78aef50</id>
<content type='text'>
Update SRC_URI to point to archived 5.0.2</content>
</entry>
<entry>
<title>Update SRC_URI to point to archived 5.0.2</title>
<updated>2013-08-13T16:07:46+00:00</updated>
<author>
<name>Abhijit Potnis</name>
<email>abhijit_potnis@mentor.com</email>
</author>
<published>2013-08-13T16:07:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=c10f12acb2a243ed9d1691733c9f2e9fe81aa57b'/>
<id>urn:sha1:c10f12acb2a243ed9d1691733c9f2e9fe81aa57b</id>
<content type='text'>
5.0.2 sources have now been moved to archive directory
on http://releases.qt-project.org/archive/qt/5.0/5.0.2/.
</content>
</entry>
<entry>
<title>qtbase.inc: Fix qtbase-tools runtime depencency on perl</title>
<updated>2013-07-25T10:19:30+00:00</updated>
<author>
<name>Christian Gagneraud</name>
<email>chgans@gna.org</email>
</author>
<published>2013-07-24T21:31:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-qt5.git/commit/?id=b8325b39eba043c3d431f269c3a626dff71a5b49'/>
<id>urn:sha1:b8325b39eba043c3d431f269c3a626dff71a5b49</id>
<content type='text'>
* While building a custom rootfs using poky, meta-oe, meta-ti
  and meta-qt5 (all on Dylan branch), I got the following error:
  [...]
  Computing transaction...error: Can't install
    qtbase-tools-5.0.2-r2.0@armv7a_vfp_neon: no package provides /usr/bin/perl
  [...]
* syncqt is perl script with /usr/bin/perl shebang, that's why rpm
  was complaining (other package managers in OE doesn't check that)

Signed-off-by: Christian Gagneraud &lt;chgans@gna.org&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
</feed>
