From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 542B51396D0 for ; Mon, 11 Sep 2017 13:11:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 729FCE0C3F; Mon, 11 Sep 2017 13:11:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 41B84E0C3F for ; Mon, 11 Sep 2017 13:11:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C137F3417D0 for ; Mon, 11 Sep 2017 13:11:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 290F7906C for ; Mon, 11 Sep 2017 13:11:18 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1505135464.4512a456df71b4e9efb59b9952cc74ea565d9a03.kensington@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-qt/qtdeclarative/ X-VCS-Repository: proj/qt X-VCS-Files: dev-qt/qtdeclarative/qtdeclarative-5.9.1.ebuild dev-qt/qtdeclarative/qtdeclarative-5.9.9999.ebuild dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild X-VCS-Directories: dev-qt/qtdeclarative/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 4512a456df71b4e9efb59b9952cc74ea565d9a03 X-VCS-Branch: master Date: Mon, 11 Sep 2017 13:11:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ab2424a8-7cfd-4840-98bd-1ecaa94a199c X-Archives-Hash: 2fdc86f6bc8a802d1624654ead5f4803 commit: 4512a456df71b4e9efb59b9952cc74ea565d9a03 Author: Michael Palimaka gentoo org> AuthorDate: Mon Sep 11 13:10:37 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon Sep 11 13:11:04 2017 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=4512a456 dev-qt/qtdeclarative: avoid runtime crashes when built with GCC 6 Gentoo-bug: 626070 Package-Manager: Portage-2.3.6, Repoman-2.3.3 dev-qt/qtdeclarative/qtdeclarative-5.9.1.ebuild | 8 +++++++- dev-qt/qtdeclarative/qtdeclarative-5.9.9999.ebuild | 8 +++++++- dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild | 8 +++++++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.9.1.ebuild b/dev-qt/qtdeclarative/qtdeclarative-5.9.1.ebuild index 23c47148..c6957999 100644 --- a/dev-qt/qtdeclarative/qtdeclarative-5.9.1.ebuild +++ b/dev-qt/qtdeclarative/qtdeclarative-5.9.1.ebuild @@ -3,7 +3,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 python3_{4,5} ) -inherit python-any-r1 qt5-build +inherit flag-o-matic python-any-r1 qt5-build DESCRIPTION="The QML and Quick modules for the Qt5 framework" @@ -34,6 +34,12 @@ RDEPEND="${COMMON_DEPEND} " src_prepare() { + # this is supposed to be handled by the build system (src/qml/qml.pro), + # fails because we override QMAKE_CXXFLAGS. bug 626070 + if tc-is-gcc && [[ $(gcc-major-version) -ge 6 ]]; then + append-cxxflags -fno-delete-null-pointer-checks -fno-lifetime-dse + fi + use jit || PATCHES+=("${FILESDIR}/${PN}-5.4.2-disable-jit.patch") qt_use_disable_mod localstorage sql \ diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.9.9999.ebuild b/dev-qt/qtdeclarative/qtdeclarative-5.9.9999.ebuild index 23c47148..c6957999 100644 --- a/dev-qt/qtdeclarative/qtdeclarative-5.9.9999.ebuild +++ b/dev-qt/qtdeclarative/qtdeclarative-5.9.9999.ebuild @@ -3,7 +3,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 python3_{4,5} ) -inherit python-any-r1 qt5-build +inherit flag-o-matic python-any-r1 qt5-build DESCRIPTION="The QML and Quick modules for the Qt5 framework" @@ -34,6 +34,12 @@ RDEPEND="${COMMON_DEPEND} " src_prepare() { + # this is supposed to be handled by the build system (src/qml/qml.pro), + # fails because we override QMAKE_CXXFLAGS. bug 626070 + if tc-is-gcc && [[ $(gcc-major-version) -ge 6 ]]; then + append-cxxflags -fno-delete-null-pointer-checks -fno-lifetime-dse + fi + use jit || PATCHES+=("${FILESDIR}/${PN}-5.4.2-disable-jit.patch") qt_use_disable_mod localstorage sql \ diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild b/dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild index 23c47148..c6957999 100644 --- a/dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild +++ b/dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild @@ -3,7 +3,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 python3_{4,5} ) -inherit python-any-r1 qt5-build +inherit flag-o-matic python-any-r1 qt5-build DESCRIPTION="The QML and Quick modules for the Qt5 framework" @@ -34,6 +34,12 @@ RDEPEND="${COMMON_DEPEND} " src_prepare() { + # this is supposed to be handled by the build system (src/qml/qml.pro), + # fails because we override QMAKE_CXXFLAGS. bug 626070 + if tc-is-gcc && [[ $(gcc-major-version) -ge 6 ]]; then + append-cxxflags -fno-delete-null-pointer-checks -fno-lifetime-dse + fi + use jit || PATCHES+=("${FILESDIR}/${PN}-5.4.2-disable-jit.patch") qt_use_disable_mod localstorage sql \