summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-networking/recipes-protocols/opcua/open62541/0001-fix-build-do-not-install-git-files.patch22
-rw-r--r--meta-networking/recipes-protocols/opcua/open62541_1.3.3.bb38
2 files changed, 60 insertions, 0 deletions
diff --git a/meta-networking/recipes-protocols/opcua/open62541/0001-fix-build-do-not-install-git-files.patch b/meta-networking/recipes-protocols/opcua/open62541/0001-fix-build-do-not-install-git-files.patch
new file mode 100644
index 0000000000..44ee7b92c5
--- /dev/null
+++ b/meta-networking/recipes-protocols/opcua/open62541/0001-fix-build-do-not-install-git-files.patch
@@ -0,0 +1,22 @@
1From a490e82dca5a669b0af27a13d74759d8f77e2333 Mon Sep 17 00:00:00 2001
2From: Vyacheslav Yurkov <v.yurkov@precitec.de>
3Date: Mon, 3 Oct 2022 18:25:15 +0200
4Subject: [PATCH] fix(build): do not install git files
5
6Signed-off-by: Vyacheslav Yurkov <v.yurkov@precitec.de>
7---
8 CMakeLists.txt | 1 +
9 1 file changed, 1 insertion(+)
10
11diff --git a/CMakeLists.txt b/CMakeLists.txt
12index 1934374e..bc5c8bad 100644
13--- a/CMakeLists.txt
14+++ b/CMakeLists.txt
15@@ -1703,6 +1703,7 @@ install(DIRECTORY ${UA_install_tools_dirs}
16 FILES_MATCHING
17 PATTERN "*"
18 PATTERN "*.pyc" EXCLUDE
19+ PATTERN ".git*" EXCLUDE
20 )
21
22 install(FILES ${UA_install_tools_files} DESTINATION ${open62541_install_tools_dir})
diff --git a/meta-networking/recipes-protocols/opcua/open62541_1.3.3.bb b/meta-networking/recipes-protocols/opcua/open62541_1.3.3.bb
new file mode 100644
index 0000000000..317697262c
--- /dev/null
+++ b/meta-networking/recipes-protocols/opcua/open62541_1.3.3.bb
@@ -0,0 +1,38 @@
1DESCRIPTION = "open62541 is an implementation of OPC UA (OPC Unified Architecture)"
2HOMEPAGE = "https://github.com/open62541/open62541.git"
3LICENSE = "MPL-2.0 & BSD-3-Clause & MIT"
4LIC_FILES_CHKSUM = "\
5 file://LICENSE;md5=815ca599c9df247a0c7f619bab123dad \
6 file://deps/mdnsd/LICENSE;md5=3bb4047dc4095cd7336de3e2a9be94f0 \
7 file://deps/mqtt-c/LICENSE;md5=9226377baf0b79174c89a1ab55592456 \
8"
9
10SRCREV_FORMAT = "opcua_mdnsd_ua-nodeset_mqtt-c"
11SRCREV_opcua = "ff73268829359639531ff02905c889f73a77b408"
12SRCREV_mdnsd = "3151afe5899dba5125dffa9f4cf3ae1fe2edc0f0"
13SRCREV_ua-nodeset = "f71b3f411d5cb16097c3ae0c744f67ad45535ffb"
14SRCREV_mqtt-c = "f69ce1e7fd54f3b1834c9c9137ce0ec5d703cb4d"
15
16SRC_URI = " \
17 git://github.com/open62541/open62541.git;name=opcua;branch=1.3;protocol=https \
18 git://github.com/Pro/mdnsd.git;name=mdnsd;protocol=https;branch=master;destsuffix=git/deps/mdnsd \
19 git://github.com/OPCFoundation/UA-Nodeset;name=ua-nodeset;protocol=https;branch=v1.04;destsuffix=git/deps/ua-nodeset \
20 git://github.com/LiamBindle/MQTT-C.git;name=mqtt-c;protocol=https;branch=master;destsuffix=git/deps/mqtt-c \
21 file://0001-fix-build-do-not-install-git-files.patch \
22"
23
24S = "${WORKDIR}/git"
25
26inherit cmake python3native
27
28EXTRA_OECMAKE += "\
29 -DBUILD_SHARED_LIBS=ON \
30 -DUA_NAMESPACE_ZERO=FULL \
31 -DUA_LOGLEVEL=600 \
32"
33
34PACKAGECONFIG ?= "encryption pubsub pubsub-eth"
35PACKAGECONFIG[amalgamation] = "-DUA_ENABLE_AMALGAMATION=ON, -DUA_ENABLE_AMALGAMATION=OFF"
36PACKAGECONFIG[encryption] = "-DUA_ENABLE_ENCRYPTION=ON, -DUA_ENABLE_ENCRYPTION=OFF, mbedtls"
37PACKAGECONFIG[pubsub] = "-DUA_ENABLE_PUBSUB=ON, -DUA_ENABLE_PUBSUB=OFF"
38PACKAGECONFIG[pubsub-eth] = "-DUA_ENABLE_PUBSUB_ETH_UADP=ON, -DUA_ENABLE_PUBSUB_ETH_UADP=OFF"