Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Seiderer <ps.report@gmx.net>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/5] package/qt5quick1: remove obsolete package
Date: Fri, 18 Mar 2016 10:49:54 +0100	[thread overview]
Message-ID: <20160318104954.72ff531d@gmx.net> (raw)
In-Reply-To: <1458207749-19507-2-git-send-email-corjon.j@ecagroup.com>

Hello Julien,

quick reaction on the Qt release ;-), the only missing part is
the Config.in.legacy entry, e.g.:

--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -143,6 +143,14 @@ comment "----------------------------------------------------"
 endif
 
 ###############################################################################
+comment "Legacy options removed in 2016.05"
+
+config BR2_PACKAGE_QT5QUICK1
+       bool qt5quick1 support option has been removed
+       select BR2_LEGACY
+       help
+         Qt qtquick1 submodule removed since Qt 5.6.
+

With this your can add my 

Reviewed-by: Peter Seiderer <ps.report@gmx.net>

Regards,
Peter

On Thu, 17 Mar 2016 10:42:25 +0100, Julien Corjon <corjon.j@ecagroup.com> wrote:

> Signed-off-by: Julien Corjon <corjon.j@ecagroup.com>
> ---
>  package/qt5/Config.in                |  1 -
>  package/qt5/qt5quick1/Config.in      | 26 -----------------------
>  package/qt5/qt5quick1/qt5quick1.hash |  2 --
>  package/qt5/qt5quick1/qt5quick1.mk   | 41 ------------------------------------
>  4 files changed, 70 deletions(-)
>  delete mode 100644 package/qt5/qt5quick1/Config.in
>  delete mode 100644 package/qt5/qt5quick1/qt5quick1.hash
>  delete mode 100644 package/qt5/qt5quick1/qt5quick1.mk
> 
> diff --git a/package/qt5/Config.in b/package/qt5/Config.in
> index 1c42102..32de7a0 100644
> --- a/package/qt5/Config.in
> +++ b/package/qt5/Config.in
> @@ -48,7 +48,6 @@ source "package/qt5/qt5websockets/Config.in"
>  source "package/qt5/qt5x11extras/Config.in"
>  source "package/qt5/qt5xmlpatterns/Config.in"
>  comment "legacy compatibility"
> -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"
> diff --git a/package/qt5/qt5quick1/Config.in b/package/qt5/qt5quick1/Config.in
> deleted file mode 100644
> index 345ffae..0000000
> --- a/package/qt5/qt5quick1/Config.in
> +++ /dev/null
> @@ -1,26 +0,0 @@
> -config BR2_PACKAGE_QT5QUICK1
> -	bool "qt5quick1"
> -	select BR2_PACKAGE_QT5BASE
> -	select BR2_PACKAGE_QT5BASE_GUI
> -	select BR2_PACKAGE_QT5BASE_NETWORK
> -	select BR2_PACKAGE_QT5BASE_WIDGETS
> -	select BR2_PACKAGE_QT5SCRIPT
> -	select BR2_PACKAGE_QT5XMLPATTERNS
> -	# This module does not support static linking
> -	depends on !BR2_STATIC_LIBS
> -	depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE
> -	help
> -	  Qt is a cross-platform application and UI framework for
> -	  developers using C++.
> -
> -	  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"
> -	depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE
> -	depends on BR2_STATIC_LIBS
> diff --git a/package/qt5/qt5quick1/qt5quick1.hash b/package/qt5/qt5quick1/qt5quick1.hash
> deleted file mode 100644
> index 845742c..0000000
> --- a/package/qt5/qt5quick1/qt5quick1.hash
> +++ /dev/null
> @@ -1,2 +0,0 @@
> -# Hash from: http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtquick1-opensource-src-5.5.1.tar.xz.mirrorlist
> -sha256 c812a7e59a8b9f0a87693181059933e15fef04bc875b6486cd653be1b9b51f2c qtquick1-opensource-src-5.5.1.tar.xz
> diff --git a/package/qt5/qt5quick1/qt5quick1.mk b/package/qt5/qt5quick1/qt5quick1.mk
> deleted file mode 100644
> index 7ccf644..0000000
> --- a/package/qt5/qt5quick1/qt5quick1.mk
> +++ /dev/null
> @@ -1,41 +0,0 @@
> -################################################################################
> -#
> -# qt5quick1
> -#
> -################################################################################
> -
> -QT5QUICK1_VERSION = $(QT5_VERSION)
> -QT5QUICK1_SITE = $(QT5_SITE)
> -QT5QUICK1_SOURCE = qtquick1-opensource-src-$(QT5QUICK1_VERSION).tar.xz
> -QT5QUICK1_DEPENDENCIES = qt5base qt5xmlpatterns qt5script \
> -	$(if $(BR2_PACKAGE_QT5WEBKIT),qt5webkit)
> -QT5QUICK1_INSTALL_STAGING = YES
> -
> -ifeq ($(BR2_PACKAGE_QT5BASE_LICENSE_APPROVED),y)
> -QT5QUICK1_LICENSE = LGPLv2.1 with exception or LGPLv3 or GPLv2
> -QT5QUICK1_LICENSE_FILES = LICENSE.LGPLv21 LGPL_EXCEPTION.txt LICENSE.LGPLv3 LICENSE.GPLv2
> -else
> -QT5QUICK1_LICENSE = Commercial license
> -QT5QUICK1_REDISTRIBUTE = NO
> -endif
> -
> -define QT5QUICK1_CONFIGURE_CMDS
> -	(cd $(@D); $(TARGET_MAKE_ENV) $(HOST_DIR)/usr/bin/qmake)
> -endef
> -
> -define QT5QUICK1_BUILD_CMDS
> -	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
> -endef
> -
> -define QT5QUICK1_INSTALL_STAGING_CMDS
> -	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install
> -	$(QT5_LA_PRL_FILES_FIXUP)
> -endef
> -
> -define QT5QUICK1_INSTALL_TARGET_CMDS
> -	cp -dpf $(STAGING_DIR)/usr/lib/libQt5Declarative.so.* $(TARGET_DIR)/usr/lib
> -	cp -dpfr $(STAGING_DIR)/usr/lib/qt/plugins/qml1tooling $(TARGET_DIR)/usr/lib/qt/plugins/
> -	cp -dpfr $(STAGING_DIR)/usr/imports $(TARGET_DIR)/usr
> -endef
> -
> -$(eval $(generic-package))

  reply	other threads:[~2016-03-18  9:49 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-17  9:42 [Buildroot] [PATCH 0/5] Qt5 bump to 5.6.0 version Julien Corjon
2016-03-17  9:42 ` [Buildroot] [PATCH 1/5] package/qt5quick1: remove obsolete package Julien Corjon
2016-03-18  9:49   ` Peter Seiderer [this message]
2016-03-20 22:32   ` Thomas Petazzoni
2016-03-17  9:42 ` [Buildroot] [PATCH 2/5] package/qt5webkit: " Julien Corjon
2016-03-21 15:56   ` Gary Bisson
2016-03-22  9:52     ` Julien CORJON
2016-03-17  9:42 ` [Buildroot] [PATCH 3/5] package/qt5webkit-examples: " Julien Corjon
2016-03-17  9:42 ` [Buildroot] [PATCH 4/5] qt5: bump version to 5.6.0 Julien Corjon
2016-03-20 22:32   ` Thomas Petazzoni
2016-03-17  9:42 ` [Buildroot] [PATCH 5/5] qt5: add GPLv3 and GFDLv1.3 licensing informations Julien Corjon
2016-03-20 22:35   ` Thomas Petazzoni
2016-03-21 10:45 ` [Buildroot] [PATCH 0/5] Qt5 bump to 5.6.0 version Gary Bisson
2016-03-21 11:05   ` Julien CORJON
2016-03-21 11:00 ` [Buildroot] [PATCH v2] qt5: add GPLv3 and GFDLv1.3 licensing informations Julien Corjon
2016-03-26 17:55   ` Thomas Petazzoni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160318104954.72ff531d@gmx.net \
    --to=ps.report@gmx.net \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox