diff options
author | Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> | 2021-02-06 23:10:45 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-02-06 21:52:33 -0800 |
commit | 32385e6c2c572269e4898e01e930b4de21662e4f (patch) | |
tree | 2864eb656734c5f10e1558ae3b47edd16212f3d9 /meta-networking/recipes-extended/kronosnet/kronosnet_1.20.bb | |
parent | 5b86d3fa8c09715b5c80e4524f3b567221df8ca8 (diff) | |
download | meta-openembedded-32385e6c2c572269e4898e01e930b4de21662e4f.tar.gz |
kronosnet: update 1.20
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-extended/kronosnet/kronosnet_1.20.bb')
-rw-r--r-- | meta-networking/recipes-extended/kronosnet/kronosnet_1.20.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-networking/recipes-extended/kronosnet/kronosnet_1.20.bb b/meta-networking/recipes-extended/kronosnet/kronosnet_1.20.bb new file mode 100644 index 000000000..a468a9ab6 --- /dev/null +++ b/meta-networking/recipes-extended/kronosnet/kronosnet_1.20.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | # Copyright (C) 2020 Khem Raj <raj.khem@gmail.com> | ||
2 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
3 | |||
4 | SUMMARY = "Kronosnet, often referred to as knet, is a network abstraction layer \ | ||
5 | designed for High Availability use cases, where redundancy, security, \ | ||
6 | fault tolerance and fast fail-over are the core requirements of your application." | ||
7 | HOMEPAGE = "https://kronosnet.org/" | ||
8 | LICENSE = "GPL-2.0+ & LGPL-2.1" | ||
9 | LIC_FILES_CHKSUM = "file://COPYING.applications;md5=751419260aa954499f7abaabaa882bbe \ | ||
10 | file://COPYING.libraries;md5=2d5025d4aa3495befef8f17206a5b0a1" | ||
11 | SECTION = "libs" | ||
12 | DEPENDS = "doxygen-native libqb-native libxml2-native bzip2 libqb libxml2 libnl lksctp-tools lz4 lzo openssl nss xz zlib zstd" | ||
13 | |||
14 | SRCREV = "b8d18c8360fd39cb04748e8bc1ee26de4afa4cbd" | ||
15 | SRC_URI = "git://github.com/kronosnet/kronosnet;protocol=https;branch=stable1" | ||
16 | |||
17 | UPSTREAM_CHECK_URI = "https://github.com/kronosnet/kronosnet/releases" | ||
18 | |||
19 | inherit autotools | ||
20 | |||
21 | S = "${WORKDIR}/git" | ||
22 | |||
23 | # libknet/transport_udp.c:326:48: error: comparison of integers of different signs: 'unsigned long' and 'int' [-Werror,-Wsign-compare] | ||
24 | # for (cmsg = CMSG_FIRSTHDR(&msg);cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) { | ||
25 | # ^~~~~~~~~~~~~~~~~~~~~~~ | ||
26 | CFLAGS_append_toolchain-clang = " -Wno-sign-compare" | ||
27 | |||
28 | PACKAGECONFIG[man] = "enable_man="yes", --disable-man, " | ||
29 | |||
30 | PACKAGECONFIG_remove = "man" | ||