From patchwork Fri Jul 3 07:20:54 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julien Corjon X-Patchwork-Id: 490930 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 5AC6B1402AA for ; Fri, 3 Jul 2015 17:21:23 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 93A2A31DAA; Fri, 3 Jul 2015 07:21:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id mMhAndcl-AGi; Fri, 3 Jul 2015 07:21:12 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id C3D4031DBF; Fri, 3 Jul 2015 07:21:06 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id E97DC1BFF41 for ; Fri, 3 Jul 2015 07:21:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id E6B528AF22 for ; Fri, 3 Jul 2015 07:21:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qSl9k+WytBJx for ; Fri, 3 Jul 2015 07:21:01 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from smtp-out-3.pacwan.net (smtp-out-3.pacwan.net [195.200.166.133]) by hemlock.osuosl.org (Postfix) with ESMTP id 6DEE18AF21 for ; Fri, 3 Jul 2015 07:21:01 +0000 (UTC) Received: from mail.sinters.fr (unknown [195.200.174.161]) by smtp-out-3.pacwan.net (Postfix) with ESMTP id B8CB22B7C59 for ; Fri, 3 Jul 2015 09:20:59 +0200 (CEST) Received: from MAIL-SINTERS-01.sinters-int.fr ([fe80::7dc5:feb4:84da:82b]) by MAIL-SINTERS-01.sinters-int.fr ([fe80::7dc5:feb4:84da:82b%10]) with mapi id 14.03.0210.002; Fri, 3 Jul 2015 09:20:55 +0200 From: Julien CORJON To: "buildroot@buildroot.org" Thread-Topic: [PATCH 3/3] qt5quick1, qt5script, qt5webkit: tag as deprecated Thread-Index: AQHQtWDM3EOrgQ5LbkOZw0pST1YKBw== Date: Fri, 3 Jul 2015 07:20:54 +0000 Message-ID: <4fef60e5-fbfb-4595-8c48-646c3d00a3d0@MAIL-SINTERS-01.sinters-int.fr> References: <1435908049-11930-1-git-send-email-corjon.j@ecagroup.com> In-Reply-To: <1435908049-11930-1-git-send-email-corjon.j@ecagroup.com> Accept-Language: fr-FR, en-US Content-Language: fr-FR X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [192.168.31.250] MIME-Version: 1.0 Cc: software Subject: [Buildroot] [PATCH 3/3] qt5quick1, qt5script, qt5webkit: tag as deprecated X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Julien Corjon --- package/qt5/Config.in | 9 +++++---- package/qt5/qt5quick1/Config.in | 6 +++++- package/qt5/qt5script/Config.in | 6 +++++- package/qt5/qt5webkit-examples/Config.in | 6 +++++- package/qt5/qt5webkit/Config.in | 6 +++++- 5 files changed, 25 insertions(+), 8 deletions(-) diff --git a/package/qt5/Config.in b/package/qt5/Config.in index e8ec7d9..49e3450 100644 --- a/package/qt5/Config.in +++ b/package/qt5/Config.in @@ -36,15 +36,16 @@ source "package/qt5/qt5enginio/Config.in" source "package/qt5/qt5graphicaleffects/Config.in" source "package/qt5/qt5imageformats/Config.in" source "package/qt5/qt5multimedia/Config.in" -source "package/qt5/qt5quick1/Config.in" source "package/qt5/qt5quickcontrols/Config.in" -source "package/qt5/qt5script/Config.in" source "package/qt5/qt5sensors/Config.in" source "package/qt5/qt5serialport/Config.in" source "package/qt5/qt5svg/Config.in" -source "package/qt5/qt5webkit/Config.in" -source "package/qt5/qt5webkit-examples/Config.in" source "package/qt5/qt5websockets/Config.in" source "package/qt5/qt5x11extras/Config.in" source "package/qt5/qt5xmlpatterns/Config.in" +comment "Depracated Qt modules" +source "package/qt5/qt5quick1/Config.in" +source "package/qt5/qt5script/Config.in" +source "package/qt5/qt5webkit/Config.in" +source "package/qt5/qt5webkit-examples/Config.in" endif diff --git a/package/qt5/qt5quick1/Config.in b/package/qt5/qt5quick1/Config.in index 16076eb..8cde603 100644 --- a/package/qt5/qt5quick1/Config.in +++ b/package/qt5/qt5quick1/Config.in @@ -1,5 +1,5 @@ config BR2_PACKAGE_QT5QUICK1 - bool "qt5quick1" + bool "qt5quick1 (deprecated)" select BR2_PACKAGE_QT5BASE select BR2_PACKAGE_QT5BASE_GUI select BR2_PACKAGE_QT5BASE_NETWORK @@ -15,6 +15,10 @@ config BR2_PACKAGE_QT5QUICK1 This package corresponds to the qt5quick1 module. + This package has been tagged as deprecated since version + 5.5.0 and should be replaced by Qt Quick module in new + design. + http://qt.io comment "qt5quick1 needs a toolchain w/ dynamic library" diff --git a/package/qt5/qt5script/Config.in b/package/qt5/qt5script/Config.in index 5313e90..447ac86 100644 --- a/package/qt5/qt5script/Config.in +++ b/package/qt5/qt5script/Config.in @@ -1,5 +1,5 @@ config BR2_PACKAGE_QT5SCRIPT - bool "qt5script" + bool "qt5script (deprecated)" select BR2_PACKAGE_QT5BASE depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE help @@ -8,4 +8,8 @@ config BR2_PACKAGE_QT5SCRIPT This package corresponds to the qt5script module. + This package has been tagged as deprecated since version + 5.5.0 and should be replaced by Qt QML module in new + design. + http://qt.io diff --git a/package/qt5/qt5webkit-examples/Config.in b/package/qt5/qt5webkit-examples/Config.in index e7610c2..5267f9d 100644 --- a/package/qt5/qt5webkit-examples/Config.in +++ b/package/qt5/qt5webkit-examples/Config.in @@ -1,5 +1,5 @@ config BR2_PACKAGE_QT5WEBKIT_EXAMPLES - bool "qt5webkit examples" + bool "qt5webkit examples (deprecated)" depends on BR2_PACKAGE_QT5WEBKIT help Qt is a cross-platform application and UI framework for @@ -7,4 +7,8 @@ config BR2_PACKAGE_QT5WEBKIT_EXAMPLES This package contains examples for the qt5webkit module. + This package has been tagged as deprecated since version + 5.5.0 and should be replaced by Qt WebEngine module in + new design. + http://qt.io diff --git a/package/qt5/qt5webkit/Config.in b/package/qt5/qt5webkit/Config.in index 3507a9d..df69c5f 100644 --- a/package/qt5/qt5webkit/Config.in +++ b/package/qt5/qt5webkit/Config.in @@ -1,5 +1,5 @@ config BR2_PACKAGE_QT5WEBKIT - bool "qt5webkit" + bool "qt5webkit (depracated)" select BR2_PACKAGE_QT5BASE select BR2_PACKAGE_QT5BASE_ICU select BR2_PACKAGE_QT5BASE_GUI @@ -17,4 +17,8 @@ config BR2_PACKAGE_QT5WEBKIT This package corresponds to the qt5webkit module. + This package has been tagged as deprecated since version + 5.5.0 and should be replaced by Qt WebEngine module in + new design. + http://qt.io