buildroot.busybox.net archive mirror
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/qt5/qt5opcua: new package
@ 2021-08-04 14:02 Andreas Naumann
  2021-08-29 16:52 ` Arnout Vandecappelle
  0 siblings, 1 reply; 3+ messages in thread
From: Andreas Naumann @ 2021-08-04 14:02 UTC (permalink / raw)
  To: buildroot; +Cc: Andreas Naumann

The Qt OPC UA module implements a Qt API to interact with OPC UA on
top of a 3rd party OPC UA stack.
The default is open62541, which is bundled by qt5opcua in version 1.0,
so we dont need to provide/depend on br's own open62541 package.

Another dependency is mbedtls, but it's optional.

Signed-off-by: Andreas Naumann <anaumann@ultratronik.de>
---
 DEVELOPERS                         |  1 +
 package/qt5/Config.in              |  1 +
 package/qt5/qt5opcua/Config.in     |  9 +++++++++
 package/qt5/qt5opcua/qt5opcua.hash | 10 ++++++++++
 package/qt5/qt5opcua/qt5opcua.mk   | 19 +++++++++++++++++++
 5 files changed, 40 insertions(+)
 create mode 100644 package/qt5/qt5opcua/Config.in
 create mode 100644 package/qt5/qt5opcua/qt5opcua.hash
 create mode 100644 package/qt5/qt5opcua/qt5opcua.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index 1547ff123b..7427f3cc82 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1985,6 +1985,7 @@ N:	Naumann Andreas <ANaumann@ultratronik.de>
 F:	package/evemu/
 F:	package/libevdev/
 F:	package/pkg-qmake.mk
+F:	package/qt5/qt5opcua/
 
 N:	Nicola Di Lieto <nicola.dilieto@gmail.com>
 F:	package/uacme/
diff --git a/package/qt5/Config.in b/package/qt5/Config.in
index 6714c6271d..6f2428d800 100644
--- a/package/qt5/Config.in
+++ b/package/qt5/Config.in
@@ -51,6 +51,7 @@ source "package/qt5/qt5location/Config.in"
 source "package/qt5/qt5lottie/Config.in"
 source "package/qt5/qt5mqtt/Config.in"
 source "package/qt5/qt5multimedia/Config.in"
+source "package/qt5/qt5opcua/Config.in"
 source "package/qt5/qt5quickcontrols/Config.in"
 source "package/qt5/qt5quickcontrols2/Config.in"
 source "package/qt5/qt5quicktimeline/Config.in"
diff --git a/package/qt5/qt5opcua/Config.in b/package/qt5/qt5opcua/Config.in
new file mode 100644
index 0000000000..2b0ba37af3
--- /dev/null
+++ b/package/qt5/qt5opcua/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_QT5OPCUA
+	bool "qt5opcua"
+	depends on BR2_PACKAGE_QT5
+	help
+	  Qt is a cross-platform application and UI framework for
+	  developers using C++.
+
+	  The Qt OPC UA module implements a Qt API to interact with
+	  OPC UA on top of a 3rd party OPC UA stack.
diff --git a/package/qt5/qt5opcua/qt5opcua.hash b/package/qt5/qt5opcua/qt5opcua.hash
new file mode 100644
index 0000000000..e55fb17743
--- /dev/null
+++ b/package/qt5/qt5opcua/qt5opcua.hash
@@ -0,0 +1,10 @@
+# Hash locally calculated
+sha256  562171c6dfd6f4f072316ddb6d7c5bcc8907a68ba31005cb8c20ed75beff34fb  qt5opcua-5.15.2-br1.tar.gz
+
+# Hashes for license files:
+sha256  d93cc415382f0013088fa276d9cf82373badf244c78220a926f15ee46f0fe3c4  LICENSE-CC0
+sha256  f827ad079686ba92cc94811e35492d0e8966f704008b6da9eeda0b659fb58a8d  LICENSE.FDL
+sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSE.GPL3
+sha256  0dbe024961f6ab5c52689cbd036c977975d0d0f6a67ff97762d96cb819dd5652  LICENSE.GPL3-EXCEPT
+sha256  6c3f3c31b93985f1b93bfbb35fb609d37281697d0efc220c9f91cf4b59eaabde  LICENSE.GPLv2
+sha256  75d800e60c8d58c2e7f0338e8552ea6123a9ce7e5dd8e1cdf2095e013b737488  LICENSE.LGPLv3
diff --git a/package/qt5/qt5opcua/qt5opcua.mk b/package/qt5/qt5opcua/qt5opcua.mk
new file mode 100644
index 0000000000..a58c4c5e14
--- /dev/null
+++ b/package/qt5/qt5opcua/qt5opcua.mk
@@ -0,0 +1,19 @@
+################################################################################
+#
+# qt5opcua
+#
+################################################################################
+
+QT5OPCUA_VERSION = $(QT5_VERSION)
+QT5OPCUA_SITE = https://code.qt.io/qt/qtopcua.git
+QT5OPCUA_SITE_METHOD = git
+QT5OPCUA_INSTALL_STAGING = YES
+QT5OPCUA_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs) CC0-1.0
+QT5OPCUA_LICENSE_FILES = LICENSE.GPLv2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPLv3 LICENSE.FDL LICENSE-CC0
+QT5OPCUA_SYNC_QT_HEADERS = YES
+
+ifeq ($(BR2_PACKAGE_MBEDTLS),y)
+QT5OPCUA_DEPENDENCIES += mbedtls
+endif
+
+$(eval $(qmake-package))
-- 
2.32.0

_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/qt5/qt5opcua: new package
  2021-08-04 14:02 [Buildroot] [PATCH 1/1] package/qt5/qt5opcua: new package Andreas Naumann
@ 2021-08-29 16:52 ` Arnout Vandecappelle
  2021-08-29 17:06   ` Yann E. MORIN
  0 siblings, 1 reply; 3+ messages in thread
From: Arnout Vandecappelle @ 2021-08-29 16:52 UTC (permalink / raw)
  To: Andreas Naumann, buildroot



On 04/08/2021 16:02, Andreas Naumann wrote:
> The Qt OPC UA module implements a Qt API to interact with OPC UA on
> top of a 3rd party OPC UA stack.
> The default is open62541, which is bundled by qt5opcua in version 1.0,
> so we dont need to provide/depend on br's own open62541 package.
> 
> Another dependency is mbedtls, but it's optional.
> 
> Signed-off-by: Andreas Naumann <anaumann@ultratronik.de>

 Applied to master, thanks.

 Regards,
 Arnout

> ---
>  DEVELOPERS                         |  1 +
>  package/qt5/Config.in              |  1 +
>  package/qt5/qt5opcua/Config.in     |  9 +++++++++
>  package/qt5/qt5opcua/qt5opcua.hash | 10 ++++++++++
>  package/qt5/qt5opcua/qt5opcua.mk   | 19 +++++++++++++++++++
>  5 files changed, 40 insertions(+)
>  create mode 100644 package/qt5/qt5opcua/Config.in
>  create mode 100644 package/qt5/qt5opcua/qt5opcua.hash
>  create mode 100644 package/qt5/qt5opcua/qt5opcua.mk
> 
> diff --git a/DEVELOPERS b/DEVELOPERS
> index 1547ff123b..7427f3cc82 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -1985,6 +1985,7 @@ N:	Naumann Andreas <ANaumann@ultratronik.de>
>  F:	package/evemu/
>  F:	package/libevdev/
>  F:	package/pkg-qmake.mk
> +F:	package/qt5/qt5opcua/
>  
>  N:	Nicola Di Lieto <nicola.dilieto@gmail.com>
>  F:	package/uacme/
> diff --git a/package/qt5/Config.in b/package/qt5/Config.in
> index 6714c6271d..6f2428d800 100644
> --- a/package/qt5/Config.in
> +++ b/package/qt5/Config.in
> @@ -51,6 +51,7 @@ source "package/qt5/qt5location/Config.in"
>  source "package/qt5/qt5lottie/Config.in"
>  source "package/qt5/qt5mqtt/Config.in"
>  source "package/qt5/qt5multimedia/Config.in"
> +source "package/qt5/qt5opcua/Config.in"
>  source "package/qt5/qt5quickcontrols/Config.in"
>  source "package/qt5/qt5quickcontrols2/Config.in"
>  source "package/qt5/qt5quicktimeline/Config.in"
> diff --git a/package/qt5/qt5opcua/Config.in b/package/qt5/qt5opcua/Config.in
> new file mode 100644
> index 0000000000..2b0ba37af3
> --- /dev/null
> +++ b/package/qt5/qt5opcua/Config.in
> @@ -0,0 +1,9 @@
> +config BR2_PACKAGE_QT5OPCUA
> +	bool "qt5opcua"
> +	depends on BR2_PACKAGE_QT5
> +	help
> +	  Qt is a cross-platform application and UI framework for
> +	  developers using C++.
> +
> +	  The Qt OPC UA module implements a Qt API to interact with
> +	  OPC UA on top of a 3rd party OPC UA stack.
> diff --git a/package/qt5/qt5opcua/qt5opcua.hash b/package/qt5/qt5opcua/qt5opcua.hash
> new file mode 100644
> index 0000000000..e55fb17743
> --- /dev/null
> +++ b/package/qt5/qt5opcua/qt5opcua.hash
> @@ -0,0 +1,10 @@
> +# Hash locally calculated
> +sha256  562171c6dfd6f4f072316ddb6d7c5bcc8907a68ba31005cb8c20ed75beff34fb  qt5opcua-5.15.2-br1.tar.gz
> +
> +# Hashes for license files:
> +sha256  d93cc415382f0013088fa276d9cf82373badf244c78220a926f15ee46f0fe3c4  LICENSE-CC0
> +sha256  f827ad079686ba92cc94811e35492d0e8966f704008b6da9eeda0b659fb58a8d  LICENSE.FDL
> +sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  LICENSE.GPL3
> +sha256  0dbe024961f6ab5c52689cbd036c977975d0d0f6a67ff97762d96cb819dd5652  LICENSE.GPL3-EXCEPT
> +sha256  6c3f3c31b93985f1b93bfbb35fb609d37281697d0efc220c9f91cf4b59eaabde  LICENSE.GPLv2
> +sha256  75d800e60c8d58c2e7f0338e8552ea6123a9ce7e5dd8e1cdf2095e013b737488  LICENSE.LGPLv3
> diff --git a/package/qt5/qt5opcua/qt5opcua.mk b/package/qt5/qt5opcua/qt5opcua.mk
> new file mode 100644
> index 0000000000..a58c4c5e14
> --- /dev/null
> +++ b/package/qt5/qt5opcua/qt5opcua.mk
> @@ -0,0 +1,19 @@
> +################################################################################
> +#
> +# qt5opcua
> +#
> +################################################################################
> +
> +QT5OPCUA_VERSION = $(QT5_VERSION)
> +QT5OPCUA_SITE = https://code.qt.io/qt/qtopcua.git
> +QT5OPCUA_SITE_METHOD = git
> +QT5OPCUA_INSTALL_STAGING = YES
> +QT5OPCUA_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs) CC0-1.0
> +QT5OPCUA_LICENSE_FILES = LICENSE.GPLv2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPLv3 LICENSE.FDL LICENSE-CC0
> +QT5OPCUA_SYNC_QT_HEADERS = YES
> +
> +ifeq ($(BR2_PACKAGE_MBEDTLS),y)
> +QT5OPCUA_DEPENDENCIES += mbedtls
> +endif
> +
> +$(eval $(qmake-package))
> 
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/qt5/qt5opcua: new package
  2021-08-29 16:52 ` Arnout Vandecappelle
@ 2021-08-29 17:06   ` Yann E. MORIN
  0 siblings, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2021-08-29 17:06 UTC (permalink / raw)
  To: Arnout Vandecappelle; +Cc: Andreas Naumann, buildroot

Arnout, All,

On 2021-08-29 18:52 +0200, Arnout Vandecappelle spake thusly:
> On 04/08/2021 16:02, Andreas Naumann wrote:
> > The Qt OPC UA module implements a Qt API to interact with OPC UA on
> > top of a 3rd party OPC UA stack.
> > The default is open62541, which is bundled by qt5opcua in version 1.0,
> > so we dont need to provide/depend on br's own open62541 package.
> > 
> > Another dependency is mbedtls, but it's optional.
> > 
> > Signed-off-by: Andreas Naumann <anaumann@ultratronik.de>
>  Applied to master, thanks.

s/master/next/ ;-)

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-08-29 17:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-04 14:02 [Buildroot] [PATCH 1/1] package/qt5/qt5opcua: new package Andreas Naumann
2021-08-29 16:52 ` Arnout Vandecappelle
2021-08-29 17:06   ` Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).