initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
From ca81a62bb3f8ce67d564631bb8d4e11619acf430 Mon Sep 17 00:00:00 2001
|
||||
From: Peter Seiderer <ps.report@gmx.net>
|
||||
Date: Fri, 3 Apr 2020 19:59:47 +0200
|
||||
Subject: [PATCH] Do not use deprecated QLinkedList
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Do not use (internally already by QT_NO_LINKED_LIST) deprecated QLinkeList,
|
||||
use QList instead.
|
||||
|
||||
Fixes:
|
||||
|
||||
../../include/Enginio/1.6.3/Enginio/private/../../../../../src/enginio_client/enginioclient_p.h:293:5: error: ‘QLinkedList’ does not name a type
|
||||
|
||||
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
|
||||
---
|
||||
src/enginio_client/enginioclient_p.h | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/src/enginio_client/enginioclient_p.h b/src/enginio_client/enginioclient_p.h
|
||||
index 6b5dc53..f3fe68e 100644
|
||||
--- a/src/enginio_client/enginioclient_p.h
|
||||
+++ b/src/enginio_client/enginioclient_p.h
|
||||
@@ -290,7 +290,11 @@ public:
|
||||
QByteArray _backendId;
|
||||
EnginioIdentity *_identity;
|
||||
|
||||
+#if defined(QT_NO_LINKED_LIST)
|
||||
+ QList<QMetaObject::Connection> _connections;
|
||||
+#else
|
||||
QLinkedList<QMetaObject::Connection> _connections;
|
||||
+#endif
|
||||
QVarLengthArray<QMetaObject::Connection, 4> _identityConnections;
|
||||
QUrl _serviceUrl;
|
||||
QSharedPointer<QNetworkAccessManager> _networkManager;
|
||||
--
|
||||
2.26.0
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
config BR2_PACKAGE_QT5ENGINIO
|
||||
bool "qt5enginio"
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
select BR2_PACKAGE_QT5BASE_GUI
|
||||
select BR2_PACKAGE_QT5BASE_NETWORK
|
||||
help
|
||||
Qt is a cross-platform application and UI framework for
|
||||
developers using C++.
|
||||
|
||||
Enginio is a Backend-as-a-Service solution for simplifying
|
||||
backend development of connected and data-driven applications.
|
||||
|
||||
This package has been tagged as deprecated since version
|
||||
5.6 and not recommended for new design.
|
||||
|
||||
http://doc.qt.io/archives/qt-5.5/enginio-index.html
|
||||
@@ -0,0 +1,9 @@
|
||||
# Hash from: https://download.qt.io/official_releases/qt/5.6/5.6.3/submodules/qtenginio-opensource-src-1.6.3.tar.xz.mirrorlist
|
||||
sha256 d907060b355512ceb7a8c3f6980e3979c20d54320b6804303b6c5e8ed42d3912 qtenginio-opensource-src-1.6.3.tar.xz
|
||||
|
||||
# Hashes for license files:
|
||||
sha256 245248009fd0af1725d183248380e476c1283383909358a13686606352bf2a17 LICENSE.GPLv3
|
||||
sha256 1996a36160b2158c2be264d2ddfa6148ebe0f1ececff55aca8d754a1ddcc7bb8 LICENSE.LGPLv21
|
||||
sha256 438c1f9a2b256e47dac33249f2ad6d4a9df643f1ec5312216d528a2f7ad82084 LGPL_EXCEPTION.txt
|
||||
sha256 5ceb37d1c7c1d92878b82af3c0fd5558087f3d5a08a3a4d43850bad4ad265a52 LICENSE.LGPLv3
|
||||
sha256 f827ad079686ba92cc94811e35492d0e8966f704008b6da9eeda0b659fb58a8d LICENSE.FDL
|
||||
@@ -0,0 +1,25 @@
|
||||
################################################################################
|
||||
#
|
||||
# qt5enginio
|
||||
#
|
||||
################################################################################
|
||||
|
||||
# Qt5Enginio does not follow Qt versionning
|
||||
# see https://bugreports.qt.io/browse/QTBUG-50111
|
||||
QT5ENGINIO_VERSION = 1.6.3
|
||||
QT5ENGINIO_SITE = https://download.qt.io/official_releases/qt/5.6/5.6.3/submodules
|
||||
QT5ENGINIO_SOURCE = qtenginio-opensource-src-$(QT5ENGINIO_VERSION).tar.xz
|
||||
QT5ENGINIO_DEPENDENCIES = openssl
|
||||
QT5ENGINIO_INSTALL_STAGING = YES
|
||||
|
||||
QT5ENGINIO_LICENSE = GPL-3.0 or LGPL-2.1 with exception or LGPL-3.0, GFDL-1.3 (docs)
|
||||
QT5ENGINIO_LICENSE_FILES = LICENSE.GPLv3 LICENSE.LGPLv21 LGPL_EXCEPTION.txt LICENSE.LGPLv3 LICENSE.FDL
|
||||
ifeq ($(BR2_PACKAGE_QT5BASE_EXAMPLES),y)
|
||||
QT5ENGINIO_LICENSE += , BSD-3-Clause (examples)
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
|
||||
QT5ENGINIO_DEPENDENCIES += qt5declarative
|
||||
endif
|
||||
|
||||
$(eval $(qmake-package))
|
||||
Reference in New Issue
Block a user